Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)Q
Posts
1
Comments
153
Joined
2 yr. ago

  • I don't care to join in on the rest of this discussion but:

    Hold you accountable for what? Nothing being done here is remotely illegal.

    The definition of "illegal" could change in a future government. This is one of the strongest arguments for internet privacy in general: what is legal today may be "illegal" tomorrow or even "legal but the government doesn't care about the law"

  • I watched Jurassic Park with a live orchestra playing all the music and it was rad

  • I've had someone screenshot my code, circle a buggy line in red, and blog about it instead of submitting a PR.

  • I can't say I've ever sent a security related bug report without at least some work done trying to understand how to fix it. Surely the caliber of people working for Project Zero can do that too, otherwise hi Google I'll take one job please.

  • If you're cooking the grocery store dried box pasta for 5 minutes it's likely gonna be undercooked.. and crunchy.. If it's fresh pasta 3 to 5 minutes sounds about right.

    Well, some dried pastas in the store could be 5 to 8 I guess, but definitely not Barilla

  • Wonder if they can build on top of eBPF? I think Windows is trying to implement it too

  • If this is happening via a VPN you almost definitely already have transit encryption

  • Banana

    Jump
  • "Jet fuel can't melt steel beams" was probably a gateway drug for so many of the crazies today

  • I can confirm that, at least for me, these things aren't taught. I only learned about them when visiting the affected countries.

  • A lot of people claiming advertising doesn't work on them don't grasp this. I realized how hard it is to get around this when I first went to buy car insurance.

  • Look at this person over here using branches, show off

  • For loops with find are evil for a lot of reasons, one of which is spaces:

     
        
    $ tree
    .
    ├── arent good with find loops
    │   ├── a
    │   └── innerdira
    │       └── docker-compose.yml
    └── dirs with spaces
        ├── b
        └── innerdirb
            └── docker-compose.yml
    
    3 directories, 2 files
    $ for y in $(find .); do echo $y; done
    .
    ./are
    t good with fi
    d loops
    ./are
    t good with fi
    d loops/i
    
    erdira
    ./are
    t good with fi
    d loops/i
    
    erdira/docker-compose.yml
    ./are
    t good with fi
    d loops/a
    ./dirs with spaces
    ./dirs with spaces/i
    
    erdirb
    ./dirs with spaces/i
    
    erdirb/docker-compose.yml
    ./dirs with spaces/b
    
      

    You can kinda fix that with IFS (this breaks if newlines are in the filename which would probably only happen in a malicious context):

     
        
    $ OIFS=$IFS
    $ IFS=$'\n'
    $ for y in $(find .); do echo "$y"; done
    .
    ./arent good with find loops
    ./arent good with find loops/innerdira
    ./arent good with find loops/innerdira/docker-compose.yml
    ./arent good with find loops/a
    ./dirs with spaces
    ./dirs with spaces/innerdirb
    ./dirs with spaces/innerdirb/docker-compose.yml
    ./dirs with spaces/b
    $ IFS=$OIFS
    
      

    But you can also use something like:

     
        
    find . -name 'docker-compose.yml' -printf '%h\0' | while read -r -d $'\0' dir; do
          ....
    done
    
      

    or in your case this could all be done from find alone:

     
        
    find . -name 'docker-compose.yml' -execdir ...
    
      

    -execdir in this case is basically replacing your cd $(dirname $y), which is also brittle when it comes to spaces and should be quoted: cd "$(dirname "$y")".

  • I love nix and NixOS, but yes the documentation is incredibly insufficient. I'd recommend a normal distro + the nix package manager first for a personal laptop. You have be ok occasionally taking a detour to learn how to build some random program from source in a sandbox with no networking every once in a while so it's kinda clunky as a daily use OS imo. It shines on servers though

  • NixOS is fun but requires tinkering for a desktop/laptop. You can use the nix package manager on any other distro though. At work I use Fedora and still use the nix package manager a ton when I want to, but I'm not locked into it when something needs to just work quickly. I have NixOS on my personal laptop and I kinda wish I didn't. I have it on my home server and I'm very happy I did that.

  • Yellowstone is the most active geothermal area in the world, with over half of the entire world's known geysers in a single park and you left that out for Mt Rushmore...? Yosemite the "one national park we have"? Are you trolling? This comment and seeing it getting upvoted makes me irrationally angry because our wilderness is the best thing we have going for us and is basically what is keeping me in the country. People need to know how great it is so we can remember we need to protect it!

    The vastness of the US west is something special. And in all that space if you just wander you're bound to find something beautiful by accident. I've lived in the west for 15 years and I'm not even close to being bored and always find new places. Are there analogues elsewhere? Sure. That doesn't make it not special.

    As for specific natural wonders... There's the redwoods and sequoias. Joshua trees. Saguaro National Park is incredibly unique, although saguaros exist in Mexico too. Hell cacti only exist natively in the Americas, and many species only in the US deserts. Devil's Tower is awesome. The entirely of Yosemite is amazing. The entire state of Utah might as well be a national park. Seriously. Those landscapes are amazing. The Great Interior Seaway going through the US made made it amazing for fossils, tons of dinosaurs in particular. All the volcanic activity on the west coast and Hawaii is fascinating. I just recently learned about the Driftless Zone and how cool is that!

    I've even had a great time with people from France in these places. Can you even believe it? Real non-geologist French people! Coming to the USA!

    The world is full of beautiful natural wonders, and the US is just another part of the world and it has them too!

  • PC load letter? What the fuck does that mean?

  • What's funny is those always make me immediately think the site is a scam of some sort even though they're everywhere. I get this feeling like I should leave the site as soon as I can

  • Programming @programming.dev

    Vulnerable Claude code in GitHub action led to stolen NPM keys

    github.com /nrwl/nx/security/advisories/GHSA-cxm3-wv7p-598c