- 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
// ==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 |
- Bootstrap - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development.
- Skeleton - Boilerplate for responsive, mobile-friendly development.
- 960 Grid System - An effort to streamline web development workflow by providing commonly used dimensions, based on a width of 960 pixels. There are two variants: 12 and 16 columns, which can be used separately or in tandem.
- Compass - Open source CSS Authoring Framework.
- Font Awesome - The iconic font designed for Bootstrap.
- Zurb Foundation - Framework for writing responsive web sites.
- SASS - CSS extension language which allows variables, mixins and rules nesting.
NewerOlder