Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.
Ctrl+C | copy current line (if no selection) |
Ctrl+X | cut current line (if no selection) |
Ctrl+⇧+K | delete line |
Ctrl+↩ | insert line after |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
git config --global user.email "bisheshtiwaree@live.com" | |
https://ghostty.org/download | |
https://code.visualstudio.com/Download | |
https://arc.net/ | |
https://apps.apple.com/app/id775737590?mt=12&ct=d&ls=1 | |
https://slack.com/downloads/mac | |
https://apps.apple.com/us/app/paste-limitless-clipboard/id967805235 | |
https://github.com/rxhanson/Rectangle/releases/download/v0.88/Rectangle0.88.dmg |
tap "homebrew/services" | |
tap "ngrok/ngrok" | |
tap "speakeasy-api/tap" | |
# Git | |
brew "git" | |
# Pack, ship and run any application as a lightweight container | |
brew "docker" | |
# GitHub command-line tool | |
brew "gh" | |
# Fast, disk space efficient package manager |
const winners = new Set(); | |
const contestants = ['A', 'B', 'C', 'D', 'E', 'F']; | |
while (winners.size < 3) { | |
const randomNumber = Math.floor(Math.random() * contestants.length); | |
console.log(randomNumber); | |
winners.add(contestants[randomNumber]); | |
} |
Aloha 👋🏼 |
Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.
Ctrl+C | copy current line (if no selection) |
Ctrl+X | cut current line (if no selection) |
Ctrl+⇧+K | delete line |
Ctrl+↩ | insert line after |
/* | |
** showip.c -- show IP addresses for a host given on the command line | |
*/ | |
#include <stdio.h> | |
#include <string.h> | |
#include <sys/types.h> | |
#include <sys/socket.h> | |
#include <netdb.h> | |
#include <arpa/inet.h> |