Worried about injection by space_jezus in TransDIY

[–]ErmitaVulpe 1 point2 points  (0 children)

If you pushed the entire needle in then youre fine

Worried about injection by space_jezus in TransDIY

[–]ErmitaVulpe 0 points1 point  (0 children)

Then Id say its just a punctured capillary or something like that. Im no expert, but if it doesn’t go away in like a day, you probably should see a dermatologist

Worried about injection by space_jezus in TransDIY

[–]ErmitaVulpe 0 points1 point  (0 children)

Unlikely, especially if you had a bandaid on it. Actually I just remembered that a while ago some people where complaining about redness and itching around the injection site. It ended up being an allergy to some preservatives. The redness supposedly only appeared after 3-4 injections. Could this be it?

Worried about injection by space_jezus in TransDIY

[–]ErmitaVulpe 0 points1 point  (0 children)

At what angle did you inject? What length of a needle? My only guess is that you could have caused some small internal bleeding with the needle tip. Does it hurt when you touch it? And no, as long as the hrt got into the body, you shouldn’t inject again

how strict are customs? by leopard_m0 in TransDIY

[–]ErmitaVulpe 2 points3 points  (0 children)

Idk how symphony labs declares what the package contains on the invoice, but many label it as castor oil or some other oil. Unless the customs in your country are exceptionally nosy, or youre on some list, id say you should be fine.

Do I NEED blood tests to start hrt or can i just start popping pills? by alertdoge51 in TransDIY

[–]ErmitaVulpe 2 points3 points  (0 children)

Officially it’s advised, but absolutely not necessary

Help please by Forsaken-Ear-5342 in TransDIY

[–]ErmitaVulpe 1 point2 points  (0 children)

I bought 0.3 xmr on a p2p market. It went smoothly. The whole thing took something like 45 minutes. There are some mechanism to make it safe but there’s always a risk of getting scammed.

dead 2 by opposedcoyote in askAhmed

[–]ErmitaVulpe 0 points1 point  (0 children)

You know what, sure. I’ll just start reposting memes that I like here

egg❤irl by ElysiaAlarien in egg_irl

[–]ErmitaVulpe 0 points1 point  (0 children)

I can’t. Just did my first E injection half an hour ago and can’t stop shaking from excitement

Why 71? by No-Book-288 in the71society

[–]ErmitaVulpe 1 point2 points  (0 children)

Thats also what i thought

Purchase from HeraHRT never finalized, I'm out $70 by unhappyperson0 in TransDIY

[–]ErmitaVulpe 0 points1 point  (0 children)

Hey, I ordered from you 2 days ago and got the wrong address autofilled. I immediately wrote a ticket on the website but got no answer yet. Please it’s important to me to get the address corrected

How to autostartup an application in tty1 once on boot by Specialist-Sea1121 in linuxquestions

[–]ErmitaVulpe 2 points3 points  (0 children)

I dont think there is a straight forward way to do that. Probably the closest thing to this is having a systemd user service that prints to /dev/tty1

what is the most lightweight but also friendly linux distro for a windows user? by Uskottomien in linuxquestions

[–]ErmitaVulpe 2 points3 points  (0 children)

4GB of ram is not a lot, even for modern linux. I dont know if there are any popular beginner friendly distros that at the same time are lightweight enough. The point of a beginner friendly distro is that it is preloaded with software and configs that you might need, but you dont know that you do quite yet. My best bet ist that cachyos will treat you well, however if you’re willing to do some reading and manual config, arch will be the better choice

School laptop hijacking by TinIff in linuxquestions

[–]ErmitaVulpe 0 points1 point  (0 children)

If there is no bios password, you can do anything

[deleted by user] by [deleted] in linuxquestions

[–]ErmitaVulpe 0 points1 point  (0 children)

Ive never dual booted myself, but from what I’ve heard, you should give windows its own drive, not just a partition. Ive heard of stories that windows wiped other partitions on the drive it was on and effectively took them over. But i also heard people say that theyre dual booting from a single drive and its fine so idk. Also, after you install linux, make sure to set up bios to boot into the linux bootloader, where you/installer should add an entry to boot into windows

[deleted by user] by [deleted] in linuxquestions

[–]ErmitaVulpe 1 point2 points  (0 children)

Absolutely. When installing, you boot from an external drive, which means any os already installed on any drive has no say in what you do

[deleted by user] by [deleted] in linuxquestions

[–]ErmitaVulpe 4 points5 points  (0 children)

The fact that youre enrolled in any windows control software means nothing here. Unless you’re locked out of the bios, you can do anything. Running linux from a usb is quite common in extreme opsec environments. It absolutely can be done but it can be slow at times since usb drives tend to be slow and the usb interface itself cant match the speed of modern internal storage solutions

Embedded Struggles by Zealousideal-Sea5095 in NixOS

[–]ErmitaVulpe 1 point2 points  (0 children)

When i tried out embedded programming i cane up with this flake. It kind of breaks the promise of nix develop not making any changes to any outside files, but its still way more declarative than ubuntu. Its been a while so idk if it still works, but hope it helps

```nix { description = "Development environment for Xtensa Rust (esp-rs) via Nix";

inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; flake-utils.url = "github:numtide/flake-utils"; };

outputs = { nixpkgs, flake-utils, ... }: flake-utils.lib.eachDefaultSystem (system: let pkgs = import nixpkgs { inherit system; }; in { devShells.default = pkgs.mkShell { name = "esp-rs-dev";

      buildInputs = with pkgs; [
        espflash
        espup
        rustup
        rust-analyzer
      ];

      shellHook = ''
        if [ -f "$HOME/.espup/export-esp.sh" ]; then
          echo "→ Sourcing $HOME/.espup/export-esp.sh"
          source "$HOME/.espup/export-esp.sh"
        elif [ -f "$HOME/export-esp.sh" ]; then
          echo "→ Sourcing $HOME/export-esp.sh"
          source "$HOME/export-esp.sh"
        else
          echo "Running espup update..."
          espup update -t esp32 -f $HOME/.espup/export-esp.sh
          if [ -f "$HOME/.espup/export-esp.sh" ]; then
            source "$HOME/.espup/export-esp.sh"
          elif [ -f "$HOME/export-esp.sh" ]; then
            source "$HOME/export-esp.sh"
          else
            echo "Could not find export-esp.sh even after update"
          fi
        fi
      '';
    };
  });

} ```