Skip to content

Instantly share code, notes, and snippets.

@ryanjohnston
ryanjohnston / change-hostname.md
Last active September 10, 2018 14:35
[🛠 Raspbian - Snippets] Collected notes and scripts during RaspberryPi setup (2016) #config

Change hostname in Raspbian

Configuration

  • Change hostname file.
sudo vi /etc/hostname
  • Append /etc/hosts with:
@ryanjohnston
ryanjohnston / lazy_git.sh
Last active September 10, 2018 14:44
[🛠 ZSH - Snippets] Suggestions and tips for using ZSH. #cli
#!/usr/bin/env zsh
function use_lazy_git(){
if (( $# == 0 ))
then echo "Missing commit message: lazygit <commit message>"; fi
git add .
git commit -a -m "$1"
git push
}
@ryanjohnston
ryanjohnston / textlintc.json
Last active September 14, 2018 12:23
[dev 🛠 linting snippets] Suggestions and tips for Linting files #frontend
{
"rules": {
"no-dead-link": {
"checkRelative": false,
"baseURI": null,
"ignore": [
"https://appleid.apple.com/#!&page=signin",
"https://account.live.com",
"https://www.linkedin.com/",
"https://web.skype.com/en/",
@ryanjohnston
ryanjohnston / README.md
Last active September 25, 2018 23:13
[BASH - Scripts] General Bash Scripts, Snippets and Gists #cli

Collected hacks and tips for the command line.

@ryanjohnston
ryanjohnston / recursive-folder-diff.sh
Last active September 10, 2018 14:47
[🛠 Diff - Snippets] Various ways of comparing folders and files. #cli
#!/usr/bin/env bash
DIR1=""
DIR2=""
diff -bur "$DIR1" "DIR2"
@ryanjohnston
ryanjohnston / .babelrc
Last active September 10, 2018 14:40
[🛠 SquareSpace - Snippets] Snippets, Workflows and Gists on working with Squarespace #frontend
{
"presets":
[
"es2015",
"react",
"stage-1",
["env", {
"targets": {
"browsers": ["> 5%","last 2 versions"]
}
@ryanjohnston
ryanjohnston / Fix-Font-Smoothing-External-Monitor-Mojave.md
Last active October 22, 2018 06:19
[MacOS] Tips and Suggestions #macos

This command will fix the issue of blury text on external monitors with MacOS Mojave.

defaults write -g CGFontRenderingFontSmoothingDisabled -bool NO
@ryanjohnston
ryanjohnston / README.md
Last active September 10, 2018 14:33
[🛠 PHP - Snippets] Examples and tips #dev

PHP

Table of Contents

@ryanjohnston
ryanjohnston / DOCKER.md
Last active September 9, 2018 18:45
[Docker - Info ] Information about using Docker

Docker

Table of Contents

@ryanjohnston
ryanjohnston / README.md
Last active September 9, 2018 18:49 — forked from JoshuaEstes/mysqldump.sh
[MySQL - Snippets] Snippets, Gists and Scripts for working with MySQL #database