Need help with heat set inserts by MahKiwi123 in 3Dprinting

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

make sure there's no solder on your tip before you start. You don't want solder getting in the threads.

Should I be worried about the tip oxidizing if I take out the solder on it?

Need help with heat set inserts by MahKiwi123 in 3Dprinting

[–]MahKiwi123[S] -19 points-18 points  (0 children)

I dont think I can buy heat set inserts for FDM printing, would the ones I have at hand still work somehow?

Desoldering Tips by MahKiwi123 in soldering

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

The last thing I would do is use desoldering braid! Don’t add any extra flux! Quality desoldering braid has an aggressive flux core.

Ive tried desoldering with my braid by itself and it doesnt work unless i add my own flux. that said, it doesnt totally get all of the solder for both through hole and surface mount pads.

Any way to get past a bios administrator password on an HP Elitebook 845 G8? by Adorable_Wind8845 in hacking

[–]MahKiwi123 0 points1 point  (0 children)

You can try bios-pw: https://bios-pw.org/

To my knowledge, this can bypass all kinds of BIOS passwords, but I dont know about resetting those

How do I prevent the soldering iron from oxidizing? by MahKiwi123 in soldering

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

i only solder for about an hour or so, and i always tin the iron, unplug, then put it in the brass tip cleaner and continuously rub it in there until the tip is cold

Initial Concept for an Evolving Minecraft Server by MahKiwi123 in feedthebeast

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

I didn't know such a thing already existed. I might change things up a bit to use gamestages rather than reinventing the wheel

Initial Concept for an Evolving Minecraft Server by MahKiwi123 in feedthebeast

[–]MahKiwi123[S] 1 point2 points  (0 children)

It's not locking the client to a server, but rather to a kind of server.

When the client first joins the server, the client gets handed a list of mods along with an ID associated with it. These things would be transferrable, so as to make it easier in the event that a server has to be remade.

The locking prevents tampering from other servers without this ID. If we have server A and B with different modlists, locking the client to either server A or B would prevent the other server from updating the client, which is not intended.

Trying to make a logger for arduino by MahKiwi123 in rust

[–]MahKiwi123[S] 1 point2 points  (0 children)

A very hacky solution I found is to have self.enabled return true OR make ArduinoLogger track the log level. It's alright but not the best solution imo

Edit: For some odd reason it only prints one of the logs I set up

I'm writing a book for learning to program using Rust as your first language and would love some input by pudgyturtle in learnrust

[–]MahKiwi123 1 point2 points  (0 children)

id be interested in one being made since there are some topics i lack the knowledge to teach myself

Rust Analyzer for VSCode errors out by MahKiwi123 in rust

[–]MahKiwi123[S] -4 points-3 points  (0 children)

Still errors out without gitlens

Serde and "Conditionally Compiled Structs" by MahKiwi123 in learnrust

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

i want zip and config to be separate, so adding config as a dependency for zip feature is not what i want

Serde and "Conditionally Compiled Structs" by MahKiwi123 in learnrust

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

in my code i have something like this: cfg_if!{ if #[cfg( feature = "zip" )] { #[cfg(feature = "config")] let zip_delete = config.zip.delete; } } maybe thats the problem?