Skip Navigation
InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)SP
Posts
2
Comments
168
Joined
2 yr. ago
  • As I mentioned it is to reduce dependency on CI tool. You may have to shift the tool in the future and if you use a lot of commands specific to the CI tool, that is going to be a nightmare.

    Ansible is agent less and only needs SSH access. You can SSH into your local system, from the same local system. Need to add few entries in your SSH config and known_hosts. Essentially everything in Ansible are shell commands. So you are not really that much locked into Ansible.

    On the question,

    Does that make running it locally easier?

    If you mean making it easier compared to remote, on the surface level, the answer is 'no'. But it makes CI pipeline easier to run independent of your environment. Ansible is here to reduce dependency on a specific tool.

    Bonus point is you can also create a working but basic CD system with Ansible.

  • Woodpecker with Ansible. Woodpecker will give container environment and using Ansible will reduce dependency on the CI tool.

    Woodpecker has a alpine linux based container for Ansible. It will take some time to setup, but will make the life much easier.

  • Finding a right therapist is actually very difficult. Were you able to do therapy regularly? Or it was more like you saw them only during crisis? If it was irregular due to bad experience with therapists, it should not discourage you to seek help again.

    I don't know anything about you other than what you said in the post. But my gut feeling is that you need some for of intervention, and good guidance on how to work out things. In another comment you mentioned about spirituality. There are counselling services associated with different religious institutions. That can also be an option. But again, as my psychiatrist ones said, it is difficult to find a good psychologist who won't influence you with their own personal biases.

    If you have good savings, and can afford to not work for a few months, then some form of retreat into a less chaotic place can also be a good idea.

  • Does this mean

    Rescue dog is hailed as unsung hero, for helping doctors and staff of emergency room, by taking away stress and sorrow

    Not native speaker. Having hard time wrapping my head around the title.

  • Haa understood. In that perspective yes it is not simple. I would also be happy if pacman had better support for AUR.

    But I have a different perspective on this. I always look for the right or the best tool available to do something. So I'm not that hesitant to use another tool for AUR. I guess it's a personal preference after all.

  • I know the developer of this website. It's hard paywall. You won't be able to bypass it by modifying the elements in any sense.

    As you mentioned in some other comments, only the currently archived ones will be available. If you are looking for just this specific article, let me know, I will archive and share the link here. If you are looking for a method to bypass it entirely, I don't think it's possible.

    Also I assume you are not in a position to afford the subscription. It's fairly decent considering the quality of articles. So whenever you can afford it, subscribe and support them. Nowadays good long form articles are non existent in Indian media.

  • Completely insensitive comic. Normalising sexual abuse towards a minor is one of the worst topic you can choose to create a comic on.

    I guess the author has no creativity left in them, so they have to rely on teenage 'edgy humour'. If that is the case just stop doing this altogether, instead of creating cringe content.

  • Hey thanks for the detailed explanations.

    Regarding SSO my concern is not the ChartDB team having my email, that I was planning to give anyway, but SSO provider knowing I'm using this tool. It's a personal paranoia than anything else. I know it's much safer and easier to have 3rd party SSO than managing your own authentication service. Done that, hated it. So not really that annoyed about it.

    The Mac only part really annoyed me to the core. Then I received an email telling about Buckle, which amplified it. I think the problem is you advertise it as 'ChartDB 2.0' and then suddenly it becomes 'Buckle'. I can understand the thought process behind such presentations, but really don't like it. TBH I would not be this mad if a similar tactic was used by a large corporation. But being an open source tool I have some ethical issues with these practices.

    Again, I know these are just some inconveniences, and not a scandal. So not really complaining, but just sharing how I felt. Apologies if that has been rude.

  • Programmer Humor @programming.dev
    sorter_plainview @lemmy.today

    Can somebody solve this puzzle?

    Edit: @[email protected] solved it. It says "one special character". Not "at least one".

    Tailscale @programming.dev
    sorter_plainview @lemmy.today

    Explanation on handling DNS

    I'm looking into ways to access my home network which is behind a CGNAT. Tailscale looks like the best solution so far. I would like to clarify a doubt on Tailscale

    I have a domain name registered with one of the popular services out there. I saw that Tailscale uses MagicDNS. But I wanted to use my personal domain. My doubt is if I want to use my custom domain with Tailscale, the following will be the procedure,

    1. Setup Tailscale account and add machines.
    2. My device inside the home network will get a Tailscale IP assigned. From 100.xx.xx.xx pool
    3. Use this IP to configure an A record in my Domain registrar.

    Now when I try to access this domain what will happen is,

    1. DNS server will resolve the Tailscale IP.
    2. The outside client will try to connect to my machine in the home network.
    3. Tailscale takes care of the CGNAT part and helps to establish a direct connection.
    4. Clients will use the public keys to establish trust and will communicate with each other.

    If there is anyt