• 0 Posts
  • 11 Comments
Joined 8 months ago
cake
Cake day: June 20th, 2025

help-circle


  • I will share an issue I and others have with their laptop that presents just a bit differently (a single cpu pegged at 100% instead of all of them).

    If i wake my laptop from sleep while it is plugged into an external monitor, I will have a single cpu pegged at 100% trying to handle endless acpi interrupts. I have to hibernate my machine and turn it back on to fix it. Alternatively I can unplug the monitor before waking from sleep to prevent it from happening. I just hibernate instead of sleeping now.





  • https://blog.sanctum.geek.nz/series/unix-as-ide/

    # list all recursive files sorted by size  
    $ fd -tf "" -x du -h | sort -h  
    8.0K      ./asdfrc  
     20K      ./nvim/lua/lush_theme/bleak.lua  
     32K      ./alacritty.yml  
    
    # find files by extension  
    $ fd -e lua  
    nvim/colors/bleak.lua  
    nvim/init.lua  
    nvim/lua/config/autocmds.lua  
    
    # list found files in tree view  
    $ fd -e lua | tree --fromfile  
    .  
    └── nvim  
        ├── colors  
        │   └── bleak.lua  
        ├── init.lua  
    
    # Run "npm test" when a file changes in the src or test directories  
    $ fd src test | entr -- npm test  
    
    # find out how often you use each command  
    history | cut -d " " -f 1 | sort | uniq -c | sort -n | tail -n 10  
      80 rm  
      81 lsd  
     107 asdf  
     136 npx  
     161 find  
     176 fd  
     182 cd  
     185 rg  
     247 brew  
     250 nb  
     465 npm  
     867 git