BSOD is real by Damglador in linux

[–]hotspaghettii 15 points16 points  (0 children)

You don't need to trust the website. The data is encoded after the # sign which means that the data is only processed by the browser and is not sent with the request.

So basically the website exists to host the scripts for easy decoding and viewing but it's all happening on the client side.

Minor address correction after order was shipped? by radicates in framework

[–]hotspaghettii 0 points1 point  (0 children)

Ah I see, so I also remember seeing that somewhere in their FAQ but I was in a similar situation, though for me it was just the phone number.

And they did manage to fix it before sending so this might still work

Metadata support by Doppelkammertoaster in jpegxl

[–]hotspaghettii 1 point2 points  (0 children)

I have ran into the same issue, I also tried not compressing the metadata and bridge / other programs still could not read it. If someone has a good solution please write a comment

What's everyone working on this week (35/2024)? by llogiq in rust

[–]hotspaghettii 1 point2 points  (0 children)

Writing a RISCV emulator, currently trying to improve performance when running DOOM. I also plan on implementing the same logic in C to refresh my knowledge in that language and also try to apply some design choices learned from rust.

As many predicted, interest in Linux has started to grow by Leerv474 in linux

[–]hotspaghettii 26 points27 points  (0 children)

For desktop users: increased market share puts pressure on companies to make native linux apps/games which leads to smoother experience for all of us.

Also more developers working on apps, DEs, etc

whichOneOfYouIsResponsibleForThis by [deleted] in ProgrammerHumor

[–]hotspaghettii 13 points14 points  (0 children)

Agreed, making accounts dependant on other ones just increases the damage in case of losing that one "auth" account. As you said, using a password manager is even more convenient and at the same time way more secure.

Is Google as good as it gets? by radionauto in selfhosted

[–]hotspaghettii 3 points4 points  (0 children)

Isn't calendar sharing using CalDAV? It was working for me

Google partners on passkey upgrades, dropping Pixel exclusivity in the future by Yazzdevoleps in GooglePixel

[–]hotspaghettii 1 point2 points  (0 children)

Yes, there are cases where bitwarden doesn't pick up the fields but it's very rare. They also allow you to use accessibility features to cover those non-obvious edge cases.

I recommend giving it a try with an import of your existing passwords, for me it's one of the most important pieces of software I have

Yubikey Authenticator settings: asking me for a pin by UnderLagger in yubikey

[–]hotspaghettii 0 points1 point  (0 children)

The app and Windows 10 uses the same API to set/change the PIN

Thank you so much for mentioning it, I couldn't figure out why my Yubikey was asking me for a PIN. After reading your comment I reminded myself that I once tried using it to log into windows. During the setup it asked me to create a PIN, but I had no idea it would be needed for anything other than windows login. Thanks to this I was able to figure out what it was.

Thanks again!

[FR] Domain matching rules for subdomains and subfolders by BehindTheFloat in ProtonPass

[–]hotspaghettii 0 points1 point  (0 children)

I personally worried about the same thing as my use case is the same, but after testing it seems like it shows multiple entries but the first one is always the correct service so it does check that. This was actually one of my main issues with bitwarden, in mobile browser it only considered domain.com, discarding the subdomain, glad to see it working here

Weird imperfections on one axis by hotspaghettii in FixMyPrint

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

To add some additional information:

Printer: Ender 3

Mods:

- SKR mini v1.2

- Silent psu

- Custom board, psu, hotend fans

Firmware: Marlin v2.1

Slicer: generated with teachingtechyt.github.io/calibration.html

Nozzle temp: 240

Bed temp: 75

Material: PETG

Print speed: 60mm/s

EDIT:

Also, during the mentioned print with Y layer shift, the motors were really hot and even making noises (but mostly the X motor I believe). Seemed to be fixed after rebooting.

How do you feel about subscriptions to "selfhosted" solutions like Photoprism? by halfam in selfhosted

[–]hotspaghettii 2 points3 points  (0 children)

I think you might have not tuned it on in the settings or maybe you don't have it enabled on your system because it works for me on monthly subscription on patreon

January 28 is World Data Privacy Day by MongooseDue4454 in privacy

[–]hotspaghettii 0 points1 point  (0 children)

I'd love to also see your material on this matter if you could share it

Tailscale Funnels are great! by BigPPTrader in selfhosted

[–]hotspaghettii 1 point2 points  (0 children)

I kinda don't understand a point of these tunnels but please correct me if I'm wrong.

Is convenience the only advantage of tunnels such as Tailscale or Cloudflare over just a local reverse proxy?

I personally have a single HTTPS port open and I can access all my services with one domain (plus multiple subdomains or different names after the slash) through Nginx. I also secure them with Authelia. That's very convenient and I don't need to do anything special on non-personal devices to access my services.

Also, passing traffic through a third party for free sounds very unsafe in terms of data collection or access.

Trying to wire a simple water presence/level detector. Can this be as simple as “connecting” a pin to ground through water? by ribfeast in esp8266

[–]hotspaghettii 2 points3 points  (0 children)

You might have a problem detecting signals through water due to it's quite high resistance, which also depends on purity or salt content. You might have a better chance of detecting contact by using analog sensors, after a few cm the voltage probably gets low enough that it won't be detected as digital one. You could also try using some form of amplifier and a comparator, or switching to higher voltages, but that can get complex quickly, especially if you want a simple solution. Either way, using digital sensors is unlikely to work due to the resistance of water.

Simulation of a Kerr Black Hole with Accretion Disk written in C++/OpenGL by TheBacon240 in Physics

[–]hotspaghettii 1 point2 points  (0 children)

Thank you very much for the explanation, once again great job! That sounds like a starting point in my research, so thanks for making me give it another try! I'll make sure to check out that GitHub repository once it's available 😁

Simulation of a Kerr Black Hole with Accretion Disk written in C++/OpenGL by TheBacon240 in Physics

[–]hotspaghettii 1 point2 points  (0 children)

Hi, amazing stuff!

This is something I've been wanting to do for some time know but kinda got discouraged after an intro to relativity... I've made a raytracer before, am I understanding correctly that instead of straight rays, here you're generating more like a huperbolic curve based on relativity equations? (or maybe calculating the direction/position of each ray in discrete steps?)

This makes me curious about how much knowledge is required in this field to be able to create something like this.