- Obsidian ➡️ Logseq
 - Notion ➡️ AppFlowy or Anytype
 - Trello ➡️ Focalboard
 - VS Code ➡️ VSCodium
 - Outlook/Mail ➡️ Thunderbird
 - Slack ➡️ Mattermost or Matrix
 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | 0 * * * * /Users/user/bin/sync-to-git.sh "/Users/user/Sync/Obsidian - Personal" | |
| 59 * * * * /Users/user/bin/sync-to-git.sh "/Users/user/Sync/Obsidian - Work" | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // ==UserScript== | |
| // @name 5e.tools -> statblock YAML exporter (2014 site) w/spellcasting | |
| // @namespace crueber.roll20.statblock.export | |
| // @version 0.3.0 | |
| // @description Adds an Export button on 2014.5e.tools bestiary pages to copy YAML for Obsidian statblock, including spellcasting and structured spells | |
| // @match https://2014.5e.tools/* | |
| // @match https://5e.tools/* | |
| // @match https://www.5e.tools/* | |
| // @grant none | |
| // ==/UserScript== | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/bin/bash | |
| # Get today's date in YYYY-MM-DD format | |
| TODAY=$(date +%Y-%m-%d) | |
| # Get yesterday's date in YYYY-MM-DD format | |
| YESTERDAY=$(date -v-1d +%Y-%m-%d) | |
| # Check if .latestpull file exists, if not create it and set the initial value to $YESTERDAY | |
| if [ ! -f .latestpull ]; then | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | const { execSync } = require('child_process'); | |
| const readline = require('readline'); | |
| function executeCommand(command) { | |
| try { | |
| const result = execSync(command, { encoding: 'utf-8' }); | |
| return result.trim(); | |
| } catch (error) { | |
| console.error(`Error executing command: ${command}`); | |
| process.exit(1); | 
- https://github.com/jwasham/coding-interview-university
 - https://github.com/yangshun/tech-interview-handbook
 - https://github.com/DopplerHQ/awesome-interview-questions
 - https://github.com/donnemartin/system-design-primer
 - https://github.com/kdn251/interviews
 - https://github.com/Olshansk/interview
 - https://github.com/trekhleb/javascript-algorithms
 - https://github.com/sudheerj/reactjs-interview-questions
 - https://github.com/vasanthk/how-web-works
 - https://github.com/TheAlgorithms/Javascript
 
| Classic | Description | Modern | 
|---|---|---|
| Interactive cheatsheets | cheat | |
| Terminal file manager | nnn | |
| git | Git SCM | tig lazygit  | 
| man | Simplified man pages | tldr (also tealdeer) | 
| curl | Make HTTP requests from CLI | httpie  xh curlie  | 
| cat | View contents of a file | bat | 
| ls | List directory contents | lsd  exa  | 
| top | Process viewer | [bottom](https://gith | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | # Number of files in a directory. | |
| find DIR_NAME -type f | wc -l | |
| # 1. redo last command but as root | |
| sudo !! | |
| # 2. open an editor to run a command | |
| ctrl+x+e | |
| # 3. create a super fast ram disk | 
NewerOlder