Father, Hacker (Information Security Professional), Open Source Software Developer, Inventor, and 3D printing enthusiast

  • 2 Posts
  • 80 Comments
Joined 1 year ago
cake
Cake day: June 23rd, 2023

help-circle
  • Ooh this is a good idea! Because when you extract a file you just downloaded the original creation/modification dates are preserved. So when you extract some tarball the directory my be from several years ago so you can’t rely on file modification times to see when you downloaded any given thing.

    I think I’m going to start doing the date directory thing! I’ll start by writing a bash script that runs in a systemd timer that automatically creates a directory whenever the month changes 👍



  • My favorite podcasts are super geeky:

    (They’re both available on just about every podcast platform)

    Hackaday is catered to a much more general audience than The Pick, Place podcast which is all about the PCB manufacturing/assembly industry. So if you’re a geeky sort you’ll love Hackaday because just about everything they talk about is super interesting (to geeks) and it’s never boring (unlike a lot of other geeky podcasts where the hosts can ramble on for too long about topics that are only mildly interesting).

    About the Pick, Place podcast: Never in a million years would did I think I could enjoy such a podcast. They go over the steps and equipment used to make the circuit boards that live inside all the electronics we use every day and it’s way more interesting than you’d think! Like, did you know that most professionally-made circuit boards go through the equivalent of a dishwasher? As in, they’re washed… With (denatured/deionized) water! Furthermore, these washing machines only need their water changed out like once a month (or sometimes after several months) then they take the little bits of metal it collects over time and they sell them to companies that deal with precious metals (because they’ll have multiple pounds of tiny balls of tin, silver, gold, etc).

    Oh man I learned so much interesting obscure shit from that podcast! I love it 👍



  • I used to use “top 24h” but these days I just sort by “hot” because it actually seems to work pretty well now: I don’t see the total garbage that gets down voted immediately like you get with “new” but I see pretty much everything else (which is what I like; I especially like finding interesting posts in obscure communities!).

    I also regularly block foreign language communities for no other reason than I can’t read them so there’s no point in them taking up space in my feed. Like, I’m sure that German meme about Elon Musk is hilarious but since I don’t know German it’s just noise 🤷



  • As someone who’s caught a leaker in the past (well, someone that was exfiltrating company secrets to a competitor) catching leakers is actually pretty easy if you have any modicum of control over the tools they use and the places they work. Barring that, no. Just no. It’s not going to happen.

    If a leaker is gullible and stupid some trickery is possible but I wouldn’t get my hopes up, Warner Music. Seems like a job that’s doomed to fail from the start. I wouldn’t even bother unless they know it’s just a job on paper and are actually just looking to give someone’s kid a legit-sounding job to pad their resume 🤷

    Not only that but if I were in charge of hiring I’d be extremely skeptical of any and all applicants. Anyone smart enough to do the job will know it’s impossible and will just become a master of stalling and picking low hanging fruit (aka useless) and everyone else is just a fraud.








  • To be fair, you are always on the cusp of being fired/laid off. Even if you’re the backbone of the company, the best employee, etc.

    Also remember that expectations of young people in a lot of businesses are very low. That’s why they pay the young so poorly 🤷.

    If you seem to be getting work done and your boss isn’t bitching then you’re doing exactly what you’re supposed to be doing. Don’t worry about it.

    Also, when you’re young change jobs every year or two! It’s the best way to make considerably more money over time and no, it will not hurt your resume in the slightest. It merely shows initiative and the fact that everyone wants you (i.e. you’re competent).









  • Riskable@programming.devtoSelfhosted@lemmy.worldWhat's the deal with Docker?
    link
    fedilink
    English
    arrow-up
    81
    arrow-down
    1
    ·
    6 months ago

    Docker containers aren’t running in a virtual machine. They’re running what amounts to a fancy chroot jail… It’s just an isolated environment that takes advantage of several kernel security features to make software running inside the environment think everything is normal despite being locked down.

    This is a very important distinction because it means that docker containers are very light weight compared to a VM. They use but a fraction of the resources a VM would and can be brought up and down in milliseconds since there’s no hardware to emulate.