- Obsidian ➡️ Logseq
- Notion ➡️ AppFlowy or Anytype
- Trello ➡️ Focalboard
- VS Code ➡️ VSCodium
- Outlook/Mail ➡️ Thunderbird
- Slack ➡️ Mattermost or Matrix
This file contains 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 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 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.
- Bundler - Bundler maintains a consistent environment for ruby applications. It tracks an application's code and the rubygems it needs to run, so that an application will always have the exact gems (and versions) that it needs to run.
- rabl - General ruby templating with json, bson, xml, plist and msgpack support
- Thin - Very fast and lightweight Ruby web server
- Unicorn - Unicorn is an HTTP server for Rack applications designed to only serve fast clients on low-latency, high-bandwidth connections and take advantage of features in Unix/Unix-like kernels.
- SimpleCov - SimpleCov is a code coverage analysis tool for Ruby 1.9.
- Zeus - Zeus preloads your Rails app so that your normal development tasks such as console, server, generate, and specs/tests take less than one second.
- [factory_girl](h
NewerOlder