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/)HA
Posts
0
Comments
42
Joined
2 yr. ago

  • your source links to this source of data, which only goes up to 2021. The table clearly states they’re counting 15 - 19 year olds.

    that 6,192 number appears to come from the gunviolencearchive site, but I don’t see any source for their data other than claims that “suicide data provided by CDC”

    further, a simple search of the claim “guns number one cause of death in children” will find a lot of valid critiques of this claim.

  • this is false, this stat deliberately counts 18 and 19 year olds as “children” and purposefully includes gang related violence. great example of using statistics to sell a story.

    how many gang members are going to surrender their firearms after a ban?

  • it literally explains what they’re for in the product listing:

    These labels aid your warehouse operations.

    • Categorize inventory, reorder points, product dating or special instructions.

    • Apply these labels to pallets, boxes and shelves for easy identification.

    • Easy to write on.

  • Permanently Deleted

    Jump
  • have you ever considered that the whole “left”, “right” “center” labels are meaningless to real people? they’re a tool of the same MSM you mention to make people think there’s more of a divide than there is.

    sure there are ideologies that those labels can roughly categorize, but real people with real opinions rarely fit neatly into simple categories

  • assuming you have a GNU toolchain you can use the find command like so:

     
        
    find . -type f -executable -exec sh -c '
    case $( file "$1" ) in (*Bourne-Again*) exit 0; esac
    exit 1' sh {} \; -print0 | xargs -0 -I{} cp {} target/
    
      

    This first finds all executable files in the current directory (change the “.” arg in find to search other dirs), uses the file command to test if it’s a bash file, and if it is, pipes the file name to xargs which calls cp on each file.

    note: if “target” is inside the search directory you’ll get output from cp that it skipped copying identical files. this is because find will find them a free you copy them so be careful!

    note 2: this doesn’t preserve the directory structure of the files, so if your scripts are nested and might have duplicate names, you’ll get errors.

  • why use docker here? you’re just adding layers of abstraction in an environment that can’t seem to really support them.

    that said, switching to 32bit linux, if the VPS supports it, will save you memory.