Skip Navigation

treeshateorcs
treeshateorcs @ tho @lemmy.ml
Posts
1
Comments
45
Joined
6 yr. ago

  • xkcd 14 standards problem

  • yes it is. idk😄 i have a similar one for github-cli

  •  bash
        
    git() {
      if [ "$1" = clone ]; then
        shift
        set -- clone --recursive "$@"
      fi
      command git "$@"
    }
    
      
  • check out /etc/machine-id you don't have to type it

  • i just imported all my pocket bookmarks into firefox bookmarks, and it kinda works even better

  • ldac is available on linux, i can switch to it. i use the "pulsemixer" program to switch codecs. also it's SBC-XQ, not QX

  • Permanently Deleted

    Jump
  • that wine version is ancient. this bug might have been fixed in a newer one

  • what is that editor? it looks very cool

  • more like a week

  • i will never grow tired repeating this: systemd is the best thing that happened to linux in the 10s

  • Technology @lemmy.ml

    what's the worst that can happen if i use a free shady vpn?

  • same for gh (github cli)

     
        
    gh() {
      if [[ "$1" = repo && "$2" = clone ]]; then
        shift
        shift
        set -- repo clone "$@" -- --recursive
      fi
      command gh "$@"
    }
    
      
  • the only thing this does is add "--recursive" to every git clone invocation

     
        
    
    git() {
      if [ "$1" = clone ]; then
        shift
        set -- clone --recursive "$@"
      fi
      command git "$@"
    }