Interests: programming, video games, anime, music composition
I used to be on kbin as e0qdk@kbin.social before it broke down.
- 0 Posts
- 9 Comments
e0qdk@reddthat.comto Privacy@programming.dev•Stock Android users, are you considering switching your phone to another OS such as /e/os, GrapheneOS, LineageOS?5·3 days agoMy old phone is 5+ years old at this point and the battery’s going spicy pillow on me… Considering replacing it with one of Murena’s offerings (which ship with /e/OS) but I’m still on the fence.
e0qdk@reddthat.comto Games@lemmy.world•Hollow Knight: Silksong is out now on Steam - and it broke Steam servers for 30 minutes and counting nowEnglish8·10 days agoI just got it a half hour ago (2025-09-04 ~3PM UTC) on GOG and can confirm – no issues at that time!
Nginx is running in Docker
Are you launching the container with the correct ports exposed? You generally cannot make connections into a container from the outside unless you explicitly tell Docker that you want it to allow that to happen… i.e. assuming you want a simple one-to-one mapping for HTTP and HTTPS standard ports are you passing something like
-p 80:80 -p 443:443
todocker run
on the command line, adding the appropriate ports in your compose file, or doing something similar with another tool for bringing the container up?
I’ve put drives into standby mode with the gnome disks GUI tool on my regular desktop when they were being noisy and I wanted some peace for a while. If the drive was mounted before I put it to sleep, trying to access something on the disk will cause it to spin back up.
e0qdk@reddthat.comto Showerthoughts@lemmy.world•Can we all agree kids shouldn't be watching Porn?12·15 days agoFuck no, I don’t agree with that at all. People mature at different rates, and the main reason IMO not to show sexual content to very little kids is that they literally don’t have the capability to understand it having not yet hit puberty. If you’re old enough to be interested in sexuality, you’re old enough that you’re going to start trying to explore it… and it’s a hell of a lot safer to explore it through media than through doing things IRL. I don’t think there’s anything particularly harmful about a ~13+ year old searching for boobs or dicks if they’re interested and want to see them; I did it myself. I may have gotten a few weird ideas about sex from seeing porn online when I was a teenager – that took me a couple years to sort through while growing up – but I never got an STD or got anyone pregnant from looking at porn!
I reached the point of being interested in sexuality around 9th grade – and I seemed to be on the late side compared to my peers based on things I heard from them in 7th and 8th grade. As far as I can recall, the first time I encountered something explicitly sexual was in a novel I found at a library when I was in 6th grade; I was more traumatized by the taboo around sexuality than anything in the book itself (which was a fairly tame sexual fantasy that the main character had involving comparing a girl’s breasts to fruit of various sizes, IIRC). I was not ready for that content yet, and that led to me having a formative conversation with my dad about the subject – i.e. it was ultimately a positive experience for me growing up, even though I was briefly uncomfortable for a bit while I was going through it. When I was a teenager, I was ready to deal with it and sought it out on my own. Speaking as someone who grew up in the goatse/lemonparty/tubgirl era of the internet, if I ran into something that was too extreme, I backed off and said “yeah, that ain’t for me!” I don’t think I would’ve turned out better if I’d been locked out of it.
e0qdk@reddthat.comto Privacy@programming.dev•Javier Milei’s government will monitor social media with AI to ‘predict future crimes’44·23 days ago- Politician: We’re going to use AI to predict crimes.
- AI: That politician is currently committing a crime! Arrest him immediately!
- Politician: We are discontinuing the use of AI to predict crimes. The technology is clearly not ready yet…
e0qdk@reddthat.comto Ask Lemmy@lemmy.world•How to write a professional email in indian english?1·1 year agoThere’s some notable differences with numbering – e.g. lakh, crore, and where to put commas when writing large numbers.
There’s something else going on there besides base64 encoding of the URL – possibly they have some binary tracking data or other crap that only makes sense to the creator of the link.
It’s not hard to write a small Python script that gets what you want out of a URL like that though. Here’s one that works with your sample link:
Save that to a file like
decode.py
and then you can you run it on the command line likepython3 ./decode.py 'YOUR-LINK-HERE'
e.g.
This script works by spitting the URL at ‘/’ characters and then recombining the parts (right-to-left) and checking if that chunk of text can be base64 decoded successfully. If it does, it then takes any printable ASCII characters at the start of the string and outputs it (to clean up the garbage characters at the end). If there’s more than one possible valid interpretation as base64 it will print them all as it finds them.