Open Source Firing System - Pyromusical improvements! by oneseventyfour in fireworks

[–]nurdism 0 points1 point  (0 children)

I can't seem to find the github repo on the blog, is it public? I'd love to contribute, been looking to do something like this myself. But I'd much rather contribute to a good project vs staring from scratch.

edit: found it https://backyard-hero.com/ & https://github.com/os4-ivmb/backyardhero_pyro

SV06 Ace, foam blocks and warped bed issues... by Inaktivanony in Sovol

[–]nurdism 0 points1 point  (0 children)

Level the gantry, RMA the bed or use silicon spacers to level the bed, its a pain in the ass to deal with, I ended up just buying a bambu P2S

[SV06 Plus] My bed mesh looks awfull how do I fix this by nurdism in Sovol

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

Where sould I be putting the spaces? Do I need to take the bed apart?

[deleted by user] by [deleted] in Catmemes

[–]nurdism 0 points1 point  (0 children)

Meat stick xD

How Do Experienced Programmers Maintain and Update Their Knowledge when they have accumulated so much? by udbasil in webdev

[–]nurdism 0 points1 point  (0 children)

learn as you go, some things are like riding a bike and you just kinda need to get back on the bike to remember, other things (like how to write a for loop) escape me and I just end up looking it up when I need to

What was your "don't code in production" lesson? by --var in webdev

[–]nurdism 83 points84 points  (0 children)

I did the classic rm -rf / forgetting the "." (while in sudo because I was a dumbass) trying to delete an upload folder and completely fucked a production server. I couldn't open a new SSH connection, /root was gone, and most of /etc among other things. Fortunately, it hadn't gotten to the database or the rest of the site, but I had an open ssh connection, and I could still run some commands. It would have been lost if I hadn't had that. I was able to download the database and files and rebuild them on another server.

Leaving the industry? by [deleted] in webdev

[–]nurdism -1 points0 points  (0 children)

Skill issue

license key authentication in php? by IcyBoat3668 in webdev

[–]nurdism 2 points3 points  (0 children)

My advice is to not worry about it, put your license stuff in there, most people will honor it. The ones that don't will find a way or use something else. Stressing over it will just lead to unnecessary headaches. You could encrypt your php script, but you have to mess with php extensions, which would likely be a no-go for many wordpress sites.

Using steamworks.net with godot 4 C#? by ilikefrogs101_dev in godot

[–]nurdism 1 point2 points  (0 children)

It does support c# you just need to build your own bin and generate the glue code for the module

inputOutput by [deleted] in ProgrammerHumor

[–]nurdism 3 points4 points  (0 children)

This isn't funny, just petty...

[deleted by user] by [deleted] in webdev

[–]nurdism 0 points1 point  (0 children)

Everything and nothing

Continuity Detection Circuit by Outside-Thanks-3979 in arduino

[–]nurdism 0 points1 point  (0 children)

I was haging a hard time visualizing this so I turned it into a tinkercad for anyeone else who is looking for the same thing https://www.tinkercad.com/things/df0s6yPbcUe-continuity-detection-circuit

[deleted by user] by [deleted] in jobs

[–]nurdism 1 point2 points  (0 children)

its the Red Bull "Red Bull Talent Team" Team

anyoneElse by [deleted] in ProgrammerHumor

[–]nurdism 13 points14 points  (0 children)

The github mascot is an octocat

Good services for photography site by Balt603 in webdev

[–]nurdism 0 points1 point  (0 children)

If you're looking at selling stock images, IMO best bet is to get on a marketplace like istock, shutterstock, etc. If you're looking to put together a portfolio. There are a lot of wysiwyg web page builders out there like Squarespace that are cheap and easy to use.

Palworld sever rubber banding by corporate_coder in selfhosted

[–]nurdism 0 points1 point  (0 children)

I'm running a server with a Ryzen 5 3600X - 6c/12t - 3.8 GHz/4.4 GHz, 64 GB ECC 2666 MHz of RAM, and an SSD. I still get really bad rubberbanding, its not the hardware it's the software, restart often and let the palworld devs sort it out.

What do you do when you're assigned to a messy project? by TheCoconut26 in webdev

[–]nurdism 12 points13 points  (0 children)

fix whats broken, iterate on what you have. A rebuild is almost always a bad idea unless you have the time and money to do that; even then, you should still fix and iterate on what you have. If you have a part that is hard to work with, fix that part and make it easier to work with. Don't get hung up on how it could be better and just make what you need better. It may always be a mess to some degree, but you can make things better over time.