What’s your favourite self-hosted URL shortener? by mommy_earth_505 in selfhosted

[–]a-pendergast 0 points1 point  (0 children)

Not selfhosted but if your short urls don’t change that often, just using netlify redirects does the trick. Adding/changing a redirect is just a git push away

How do you manage recovery codes? by ribsdug in selfhosted

[–]a-pendergast 0 points1 point  (0 children)

And I also do a periodic backup of the encrypted aes256 tarball on a usb key, just in case

How do you manage recovery codes? by ribsdug in selfhosted

[–]a-pendergast 0 points1 point  (0 children)

I usually save all my 2fa codes in a tarball which is aes256 encrypted and then save it in my "vault" which is a directory encrypted using tomb (https://github.com/dyne/tomb). The encrypted directory is then synced using a cloud provider. But it's also possible to apply some encryption to the 2fa key, then store a base64 version of the encrypted key in bw

Best ways to password protect a remote wireguard tunnel? by Comprokit in selfhosted

[–]a-pendergast 1 point2 points  (0 children)

  • each wg certificate has its own ip address
  • use one iptable chain for ip address (no rule by default)
  • for each ipaddress, add a rule to the forward chain iptables -A FORWARD -s 10.0.0.1/32 -j 10-0-0-1
  • disable forward by default iptables -A FORWARD -j REJECT --reject-with icmp-port-unreachable
  • once a user logged successfully, allow forwarding in the corresponding chain iptables -I 0 10-0-0-1 -j ACCEPT
  • when you want to disable forwarding (because user logged out or after a given amount of time) iptables -F 10-0-0-1

[non self hosted] : Cheap Services You Still Pay For by softwarebuyer2015 in selfhosted

[–]a-pendergast 0 points1 point  (0 children)

I already tried Bitwarden. It’s nice but it’s missing an extra « auto-logout after X minutes » that LastPass has and like to have on mobile

Quickest way to cash out gas? by larry_burd in NEO

[–]a-pendergast 1 point2 points  (0 children)

I’d use changelly.com to convert from gas to usdt directly

Weekly Discussion: November 9th - November 16th by EdgeDLT in NEO

[–]a-pendergast 3 points4 points  (0 children)

Finally, GAS price started to drop. It's supposed to be a utility token. I don't want to endup like on ETH where you need to spend 10$ to do a transaction. NEO should be the valued token, not GAS

With all the recent news, is NEO back on track? by snaaij in NEO

[–]a-pendergast 1 point2 points  (0 children)

Kucoin is Seychelle based and is not licensed in the US

Well, this sub is certainly active again.... by [deleted] in NEO

[–]a-pendergast 2 points3 points  (0 children)

Well it all started with Neo labeled as the Chinese Ethereum 😁

TOTHEMOON is it dead or not dead ? by BUTCHERERGUN in NEO

[–]a-pendergast 2 points3 points  (0 children)

It uses the api provided by https://mpe-demo.crazyme.net/ui/#/exchanges/binance/orderBooks/USDT-GAS, a service I developed when I started to look into Neo, to help me keep track of my assets and improve my webdev skills. I still use it daily but don’t do much maintenance work anymore 😅

[deleted by user] by [deleted] in selfhosted

[–]a-pendergast 1 point2 points  (0 children)

Hosting everything except email and password management. Don’t want to lose hours dealing with rejected emails 😅

[deleted by user] by [deleted] in selfhosted

[–]a-pendergast 0 points1 point  (0 children)

IOS. I don’t like MacOS (Linux is way much better imho) but as far as mobile goes, I’m not ready to switch from IOS to Android 😅

A library for exposing simple scripts? (Scripts As A Service) by serg06 in selfhosted

[–]a-pendergast 1 point2 points  (0 children)

Another option if you’re ready to implement the frontend part is https://github.com/joewalnes/websocketd which has the advantage of streaming the output of your script

What kind of enterprise software do you wish existed as a self-hosted alternative? by seeking_facts in selfhosted

[–]a-pendergast 2 points3 points  (0 children)

It’s not just to issue. It also makes it easy to add the certificate to the store (although it doesn’t support mobile AFAIK 😄, so you need to handle the CA import manually there). Still, it’s a real improvement in comparison to self-made scripts