HackerTrans
TopNewTrendsCommentsPastAskShowJobs

0fflineuser

no profile record

comments

0fflineuser
·vor 25 Tagen·discuss
So now if i ate a poisous berry in a car while on my phone I could die?
0fflineuser
·vor 30 Tagen·discuss
Host it in your home an use a vpn to connect to your home network when you are outside, that way it isn't exposed to the internet but you can still access it.
0fflineuser
·letzten Monat·discuss
Made me remember these neovim plugins :

https://github.com/rktjmp/playtime.nvim

https://github.com/rktjmp/shenzhen-solitaire.nvim

The author does some cool stuff.
0fflineuser
·letzten Monat·discuss
I am actually blown away by how good it is. Both the features, the UI, everything. wow.
0fflineuser
·vor 2 Monaten·discuss
Does anyone now what is the font used in the article? I like ut a lot.
0fflineuser
·vor 2 Monaten·discuss
The nixpkg from unstable seems to be infected as it s 2.6.2 https://search.nixos.org/packages?channel=unstable&include_h...
0fflineuser
·vor 4 Monaten·discuss
I was running it (as a proxy) in my homelab with docker compose using the litellm/litellm:latest image https://hub.docker.com/layers/litellm/litellm/latest/images/... , I don't think this was compromised as it is from 6 months ago and I checked it is the version 1.77.

I guess I am lucky as I have watchtower automatically update all my containers to the latest image every morning if there are new versions.

I also just added it to my homelab this sunday, I guess that's good timing haha.
0fflineuser
·vor 10 Monaten·discuss
I love it. It is so simple and flexible.

But a life saver is using it with <https://github.com/skeeto/passphrase2pgp>.

This means we don't need to move gpg/ssh keys we can just recreate them by remembering their passphrase (and other stuff like the date if we want).

  # gpg key for the encryption of the password-store
  passphrase2pgp --subkey --protect=2 --uid "helloworld" | gpg --import

  #for access to the git remote repo add to it this public key :
  passphrase2pgp -u emergency -f ssh -p > ~/.ssh/emergency.pub
  #only use it to install a non-emergency key as a new authorized key :
  passphrase2pgp -u emergency -f ssh | ssh-add -
I read a blog post for the above but can't remember what it was, but it's amazing now It's very easy to download and access the password-store from any devices, I use it in window, linux and termux.

Funnily enough I never used `pass generate` once, even tough I have more than 3700 passwords. I always used the `pwgen` command, I don't know if there really is a big difference between the 2 (except pass generate being already in pass).

As for how to structure, here are some example of how I do it :

  <service>/email
  <service>/otp
  work/<service>/password
  homelab/<service>/username
They are all only one line except some backup codes which use multiline.

Then it's very easy to get the password or the otp, just bind `passmenu`, `passmenu-otp` in your window manager or directly use the command line for multiline stuff.
0fflineuser
·vor 10 Monaten·discuss
Don't you just need to install git-lfs https://git-lfs.com/ and then run `git lfs pull` ?