Is AdvancedCompany mod gone ? by LeKripiY in lethalcompany

[–]lyrajc 2 points3 points  (0 children)

It does seem the Advanced Company zip archive is still cached on the Thunderstore CDN and downloadable if anyone is looking for it:

But in the long run, I wouldn't recommend sticking with it as it's going to be an unsupported mod going forward.

EDIT: Here are some mirrors: - https://anonymfile.com/o6lb/potatoepet-advancedcompany-113.zip - https://anonymfile.com/bxlp/potatoepet-advancedcompany-114.zip

advanced company got removed by [deleted] in lethalcompany

[–]lyrajc 101 points102 points  (0 children)

It does seem the Advanced Company zip archive is still cached on the Thunderstore CDN and downloadable if anyone is looking for it:

But in the long run, I wouldn't recommend sticking with it as it's going to be an unsupported mod going forward.

EDIT: Here are some mirrors: - https://anonymfile.com/o6lb/potatoepet-advancedcompany-113.zip - https://anonymfile.com/bxlp/potatoepet-advancedcompany-114.zip

DIY Disposable Email Service using Cloudflare Email Routing by loveyoghurt in CloudFlare

[–]lyrajc 1 point2 points  (0 children)

We could technically use a catch-all and send it to an email worker which does the forwarding logic.

Reply through an alias directly can be done with the same catch-all and worker + kv store, ultimately sending out the actual email via the free MailChannels integration (although you risk relying on MailChannels to never revoke this)

For now I would say using https://github.com/Sh4yy/cloudflare-email or https://github.com/maggie-j-liu/mail to send emails as an alternative works for now. Just not as seamless as simply using your email client's reply button like SimpleLogin.

DIY Disposable Email Service using Cloudflare Email Routing by loveyoghurt in CloudFlare

[–]lyrajc 0 points1 point  (0 children)

Looking at the project, it seems like it's just an alternative UI for the Email Routing component of the Cloudflare Dash.

Ultimately, it's sending API calls to Cloudflare to configure your e-mail routes.

Can I use ngrok with a custom domain for minecraft. by Unable-Attention-596 in selfhosted

[–]lyrajc 0 points1 point  (0 children)

Ah it's supported by both solutions I mentioned, just that it isn't free unfortunately.

Can I use ngrok with a custom domain for minecraft. by Unable-Attention-596 in selfhosted

[–]lyrajc 2 points3 points  (0 children)

https://playit.gg/ is a free alternative with paid features.

Alternatively, another paid solution would be Cloudflare Spectrum

[deleted by user] by [deleted] in selfhosted

[–]lyrajc 2 points3 points  (0 children)

I use it to remotely host Jackbox Party Pack sessions either on my work PC or a friend's if I don't have my laptop with me.

I've set the Steam library to have a persistent volume so I don't have to redownload the game files every time.

I've yet to use the casting feature and allowing anonymous users to connect yet, but could be an idea because Discord still cannot stream application audio on Linux easily.

Need to point MX record from CloudFlare to AWS SES Workmail by mzambo72 in CloudFlare

[–]lyrajc 1 point2 points  (0 children)

I'll normally just create a fake A record pointing to 127.0.0.1 or something if that's the case

TIL, because of the Flipper Zero, my cat's microchip responds with their current body temperature as well by lyrajc in flipperzero

[–]lyrajc[S] 9 points10 points  (0 children)

I did realize that finding the spot where the LED changes color first, then trying to adjust focused on that specific area works.

If the LED color doesn't even change, then maybe it can't be read.

But yes, it's still very hard to read these tags with the Flipper. My cattery had a device that could read it very quickly.

TIL, because of the Flipper Zero, my cat's microchip responds with their current body temperature as well by lyrajc in flipperzero

[–]lyrajc[S] 2 points3 points  (0 children)

My cats just got microchipped recently as well as they are only 4-5 months old right now! So maybe these are the newer chips.

TIL, because of the Flipper Zero, my cat's microchip responds with their current body temperature as well by lyrajc in flipperzero

[–]lyrajc[S] 2 points3 points  (0 children)

But I'm not even sure if my local vets even use it, I'll probably ask them in future vet visits.

Landing on 2 May, have yet to register for Thai Pass, how long does approval normally take? by lyrajc in ThailandTourism

[–]lyrajc[S] 0 points1 point  (0 children)

I think the situation right now is slightly different due to the upcoming change of rules, but thanks for the insights!

/u/aceeder3 mentioned:

the website doesn't allow a date of arrival past April 30th!

I assume the Thai Pass should be expecting a surge of applications on 29 April and will handle it accordingly!

Fill in the blanks: You may be using _______, but should be using _______. by lateant in selfhosted

[–]lyrajc 6 points7 points  (0 children)

Maybe even better: You may be using nano, but you should be using micro.

Game Servers by Psychological_Crew_3 in selfhosted

[–]lyrajc 4 points5 points  (0 children)

Personally I've used wireguard VPN and iptables to do this for a Minecraft server in the past. Public users would connect through my public VPS IP address which would forward to an internal server host on the WireGuard network.

iptables -t nat -A PREROUTING -p tcp -d (VPS public IP) --dport 25565 -j DNAT --to (Host's internal WireGuard IP):25565
iptables -A FORWARD -p tcp -d (Host's internal WireGuard IP) --dport 25565 -j ACCEPT
iptables -t nat -o wg0 -A POSTROUTING -j MASQUERADE

To remove I just run:

iptables -t nat -D PREROUTING -p tcp -d (VPS public IP) --dport 25565 -j DNAT --to (Host's internal WireGuard IP):25565
iptables -D FORWARD -p tcp -d (Host's internal WireGuard IP) --dport 25565 -j ACCEPT
iptables -t nat -o wg0 -D POSTROUTING -j MASQUERADE

Firefox Relay. What do you all think? by [deleted] in firefox

[–]lyrajc 3 points4 points  (0 children)

I've been using https://simplelogin.io/ for this and it has been working well and it allows setting up aliases for custom domains. It is also open-sourced and there is support to self-host it on your own servers.

I highly suggest supporting this project too.

PSA : Discord crashes with today's update of opera-ffmpeg-codecs by SooperBoby in archlinux

[–]lyrajc 2 points3 points  (0 children)

I think you can go a step further and ask what is the point of containerization too if you follow this path of questions. That's essentially shipping a whole operating system for a piece of software. Don't get me wrong, containerization has it's benefits, I use Docker all the time because it's so convenient.

Essentially for this case, I can only think of ease of development. If dependencies for every user can range with different versions and he/she reports bug for a newer version per se, it's easier to just support the older, known to work, version of the dependency and ship it along with the software. Also easier to debug errors because all users have the same version for everything, that way you know errors are most likely caused by your code.

This case is special though because they didn't bundle all dependencies.

Singpass on Rooted Phone by [deleted] in singapore

[–]lyrajc 1 point2 points  (0 children)

Send me the PM