Skip to content

Instantly share code, notes, and snippets.

@lombason
lombason / top-brew-packages.txt
Created October 30, 2023 23:46 — forked from pmkay/top-brew-packages.txt
Top homebrew packages
node: Platform built on V8 to build network applications
git: Distributed revision control system
wget: Internet file retriever
yarn: JavaScript package manager
python3: Interpreted, interactive, object-oriented programming language
coreutils: GNU File, Shell, and Text utilities
pkg-config: Manage compile and link flags for libraries
chromedriver: Tool for automated testing of webapps across many browsers
awscli: Official Amazon AWS command-line interface
automake: Tool for generating GNU Standards-compliant Makefiles
@lombason
lombason / osx-for-hackers.sh
Created June 21, 2023 19:26 — forked from brandonb927/osx-for-hackers.sh
OSX for Hackers: Yosemite/El Capitan Edition. This script tries not to be *too* opinionated and any major changes to your system require a prompt. You've been warned.
#!/bin/sh
###
# SOME COMMANDS WILL NOT WORK ON macOS (Sierra or newer)
# For Sierra or newer, see https://github.com/mathiasbynens/dotfiles/blob/master/.macos
###
# Alot of these configs have been taken from the various places
# on the web, most from here
# https://github.com/mathiasbynens/dotfiles/blob/5b3c8418ed42d93af2e647dc9d122f25cc034871/.osx
@lombason
lombason / ssh.md
Created May 19, 2023 12:59 — forked from bradtraversy/ssh.md
SSH & DevOps Crash Course Snippets

SSH Cheat Sheet

This sheet goes along with this SSH YouTube tutorial

Login via SSH with password (LOCAL SERVER)

$ ssh [email protected]

Create folder, file, install Apache (Just messing around)

$ mkdir test

$ cd test

@lombason
lombason / docker-help.md
Created May 19, 2023 12:51 — forked from bradtraversy/docker-help.md
Docker Commands, Help & Tips

Docker Commands, Help & Tips

Show commands & management commands

$ docker

Docker version info

@lombason
lombason / resetup.sh
Created April 24, 2023 23:44
macOS defaults πŸ˜‹
#!/bin/bash
# ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――
# Restore settings files | script used: https://github.com/MohammedEsafi/FOLDSettings
# ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――
python3 ~/.init/baCkup/drive.py -f restore &> /dev/null
# ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――
# General UI/UX
@lombason
lombason / macos.md
Created April 24, 2023 23:10 — forked from sickcodes/macos.md
MacOS Defaults
# Forked from https://gist.github.com/gguerini
# Syntax edits by Sick Codes (GPLv3+)

# Disable menu bar transparency
defaults write NSGlobalDomain AppleEnableMenuBarTransparency -bool false

# Show remaining battery time; hide percentage
defaults write com.apple.menuextra.battery ShowPercent -string "NO"
defaults write com.apple.menuextra.battery ShowTime -string "YES"