eldersnake

we.loveprivacy.club

No description provided.

Recent twts from eldersnake

@prologic@twtxt.net what do we make of Laborā€™s proposed social media minimum age ban, I.e ID verification, and the likes of Yarn? I havenā€™t been able to find out exactly how far the legislation goes, but some have said itā€™s broad enough to include any site that even has a comment section šŸ¤” but that could be FUD.

ā¤‹ Read More
In-reply-to » If some of you budding fathers want to know how I created a computer nerd to one day work for Facebook in the big USA, well you purchase a $1000 Xmas present, an enormous thick book with C++ programming, and say, you can play as many games as you like kids, but James has to create them using computer software.

@movq@www.uninformativ.de If it still existed I bet the first thing heā€™d do is convert it to Golang šŸ‘ŒšŸ¤£

ā¤‹ Read More
In-reply-to » @eldersnake how big is that VPS, if you can tell? My 1 vCPU, 2GB, 50GB is maxed out. šŸ˜¬

@bender@twtxt.net Is it so maxed out you couldnā€™t fit a pretty small program like Headscale on it? Headscale by itself and only personal home type use as far as amount of peers go, it really isnā€™t noticeable I donā€™t think resource-wise. The Docker version I guess could be a different story.

ā¤‹ Read More
In-reply-to » I setup and switched to Headscale last night. It was relatively simple, I spent more time installing a web GUI to manage it to be honest, the actual server is simple enough. The native Tailscale Android app even works with it thankfully.

@bender@twtxt.net on my hosted VPS, as Iā€™m on Starlink which is CGNAT, I need some sort of external intermediary.

ā¤‹ Read More
In-reply-to » I must admit Tailscale is really cool and why I haven't used it before now is beyond me šŸ˜…

I setup and switched to Headscale last night. It was relatively simple, I spent more time installing a web GUI to manage it to be honest, the actual server is simple enough. The native Tailscale Android app even works with it thankfully.

ā¤‹ Read More
In-reply-to » The ā€œMatrix Experimentā€, i.e. running a Matrix server for our family, has failed completely and miserably. People donā€™t accept it. They attribute unrelated things to it, like ā€œI canā€™t send messages to you, I donā€™t reach you! It doesnā€™t work!ā€ Yes, you do, I get those messages, I just donā€™t reply quickly enough because Iā€™m at work or simply doing something else.

I admit Iā€™ve always compromised on this way too much myself, always to this day having Facebook Messenger just to communicate in my families group chats. Sure I run it in a Work profile on my GrapheneOS phone that I can switch off at any time, I can completely cut it off from network access any time as well, I can have a lot of rudimentary control over it, I use it as sparingly as possible, but it doesnā€™t change the fact everytime I use it weā€™re funneling private convos through bloody Metaā€™s servers and trackers etc.

ā¤‹ Read More

@prologic@twtxt.net hey mate, all working well here so far. The login issue isnā€™t really an issue as far as actually logging in goes, rather if I get my password wrong it gives the response error code in console, the response of which contains the HTML for the wrong password page if you inspect it, but on the frontend itself nothing actually happens which is the confusion. Just stays on the login page as if it was never submitted. Am I alone in having this issue as well?

ā¤‹ Read More

Unfortunately not on that front. Still the same 404 posting errors and oddly occasional login errors.

Thatā€™s why I was wondering if using Go 1.22.4 could be an issue. I donā€™t know how exactly. Only way to test is to rebuild it with an older version I guess, which is why I did the make clean in the first place. Old habits die hard lol.

ā¤‹ Read More

@prologic@twtxt.net Righteo, so rookie error - I obviously had some untracked, rather important files for starting my pod and I ran a make clean. Why I originally had them in the git directory is anyoneā€™s guess. Anyway it blew away those files including the database so thatā€™s that. So your good self and @bender@twtxt.net etc - apologies but your profiles got nuked as well (as did my own but easily recreated).

Another thing I noticed which was the reason I ran make clean in the first place. I noticed my pod was being built with Go 1.22.4. Could this be a problem @prologic? preflight.sh actually errors out about itā€¦

ā¤‹ Read More

@prologic@twtxt.net Sorry for the late reply. Does this help at all?

`XHRGET
https://we.loveprivacy.club/post
[HTTP/2 404 84ms]

GET

https://we.loveprivacy.club/post

Status
404
VersionHTTP/2
Transferred350 B (163 B size)
Referrer Policystrict-origin-when-cross-origin
DNS ResolutionSystem

Response Status Error Code 404 from https://we.loveprivacy.club/post yarn.min.js:2:1553

y https://we.loveprivacy.club/js/06b51b8d/yarn.min.js:2
n https://we.loveprivacy.club/js/06b51b8d/yarn.min.js:2
i https://we.loveprivacy.club/js/06b51b8d/yarn.min.js:2
Rn https://we.loveprivacy.club/js/06b51b8d/yarn.min.js:2
onload https://we.loveprivacy.club/js/06b51b8d/yarn.min.js:2
(Async: EventHandlerNonNull)
_ https://we.loveprivacy.club/js/06b51b8d/yarn.min.j`

ā¤‹ Read More

@prologic@twtxt.net and any other Golang aficionadoā€¦ interested in opinions on what is considered best practice here, as Iā€™m still quite green here. So if I have a server and client (both written in Go), data is passed as JSON and marshalled/unmarshalled in both cases to structs that are basically identical between the programs, and I want to have these structs ā€˜sharedā€™, should I put the structs maybe into a single file as itā€™s own package and just pull them into the server/client that way?

ā¤‹ Read More

@prologic@twtxt.net and any other Golang aficionadoā€¦ interested in opinions on what is considered best practice here, as Iā€™m still quite green here. So if I have a server and client (both written in Go), data is passed as JSON and marshalled/unmarshalled in both cases to structs that are basically identical between the programs, and I want to have these structs ā€˜sharedā€™, should I put the structs maybe into a single file as itā€™s own package and just pull them into the server/client that way?

ā¤‹ Read More

TIL: that the <button> element in HTML5 will cause a form to submit when clicked (instead of any other behaviour you expect) because <button> has a default value of, get thisā€¦ type="submit".

You would think <button> would have a default type of ā€œbuttonā€, but no. Bloody hell lol.

This Stackoverflow answer saved me from further headaches.

ā¤‹ Read More

TIL: that the <button> element in HTML5 will cause a form to submit when clicked (instead of any other behaviour you expect) because <button> has a default value of, get thisā€¦ type="submit".

You would think <button> would have a default type of ā€œbuttonā€, but no. Bloody hell lol.

This Stackoverflow answer saved me from further headaches.

ā¤‹ Read More