Skip Navigation

Posts
9
Comments
320
Joined
3 yr. ago

  • Yep

    Jump
  • Thanks, I'll look into it :)

  • Yep

    Jump
  • Why?

  • Yep

    Jump
  • They are talking about how some states are bigger than others while having a smaller population. The width, in this case, means just the area of land which a state would have to be to have a population count equal to all other states.

    here's the article

    • Argon2
    • USB
    • Hotwheels sysiphus
    • Error detection and correction
    • ISO 8601
    • Standard Streams
    • Subset
    • ENIAC
    • WYSIWYG
  • mischievous, even

  • Deleted

    Permanently Deleted

    Jump
  • I'm so sorry for you :(

    Does it hurt or do you only have the affected vision?

  • Oatmeal

    Jump
  • brazilian french bread with salami

  • one person, and 255 would represent 256 people

  • I've already finished it, but House of Leaves is amazing

  • Deleted

    Permanently Deleted

    Jump
  • Did you get the appointment?

  • Deleted

    Permanently Deleted

    Jump
  • How did it go?

  • Buffalonian buffalo [who] Buffalonian buffalo bully, bully Buffalonian buffalo

    for me splitting the groups made the sentence make sense: NJ people NY people bully, bully NY people

  • I've read and so many times now it doesn't look like a word anymore

  • I have several breathing problems with my nose and some inside bits. I always just thought breathing with your mouth was considerably easier, but people can't do it because it's not elegant.

    Now I'm trying to get the surgery covered

  • wait POS doesn't mean piece of shit??

  • I made this one to find binaries in NixOs and other systems

     bash
        
    get_bin_path() {
            paths=${2:-$PATH}
            for dr in $(echo $paths | tr ':' '\n') ; do
                    if [ -f "$dr/$1" ] ; then
                            echo "$dr/$1"
                            return 0
                    fi
            done
            return 1
    }
    
      

    Then I made this one to, if I have a shell o opened inside neovim it will tell the neovim process running the shell to open a file on it, instead of starting a new process

     bash
        
    _nvim_con() {
            abs_path=$(readlink --canonicalize "$@" | sed s'| |\\ |'g)
            $(get_bin_path nvim) --server $NVIM --remote-send "<ESC>:edit $abs_path<CR>"
            exit
    }
    
    # start host and open file
    _nvim_srv() {
            $(get_bin_path nvim) --listen $HOME/.cache/nvim/$$-server.pipe $@
    }
    
    if [ -n "$NVIM" ] ; then
            export EDITOR="_nvim_con"
    else
            export EDITOR="_nvim_srv"
    fi
    
      

    Lastly this bit: which if it detects a file and a line number split by a : it will open the file and jump to the line

     bash
        
    _open() {
            path_parts=$(readlink --canonicalize "$@" | sed s'| |\\ |'g | sed 's/:/\t/' )
            file=$(echo "$path_parts" | awk ' { print $1 }' )
            line=$(echo "$path_parts" | awk ' { print $2 }' )
    
            if [ -n "$line" ] ; then
                    # has line number
                    if [ -n "$NVIM" ] ; then
                            $(get_bin_path nvim) --server $NVIM --remote-send "<ESC>:edit $file<CR>:+$line<CR>"
                            exit
                    else
                            $(get_bin_path nvim) --listen $HOME/.cache/nvim/$$-server.pipe $file "+:$line"
                    fi
            else
                    $EDITOR $file
            fi
    }
    
    alias nvim="_open"
    
      

    all of my bash config is here

  • Deleted

    Permanently Deleted

    Jump
  • I agree that forcing return to office is either stupid or harmful. But I do like the people I work with, and not seeing them anymore would be saddening

    The solution is obvious though, simply allow choice

  • Oh yeah, 100%

    No, that's the entire curriculum [...]

    I was asking about what country has US meddling as a considerable fraction of the curriculum