Skip to content

Instantly share code, notes, and snippets.

table.LabelsLeft {
border: 5px solid red;
}
@vancetran
vancetran / atom-snippets.cson
Created May 18, 2016 18:56
Atom Snippets (console log shortcuts)
# Your snippets
#
# Atom snippets allow you to enter a simple prefix in the editor and hit tab to
# expand the prefix into a larger code block with templated values.
#
# You can create a new snippet in this file by typing "snip" and then hitting
# tab.
#
# An example CoffeeScript snippet to expand log to console.log:
#
@vancetran
vancetran / Grep Recipes
Last active August 29, 2015 14:20
Grep Recipes
# Grep Recipes
## Find a string in a folder of text files
(recursive, ignore case)
[via Matt Fedder](http://mattfedder.com)
```sh
grep -ri 'email@address.com' /thePath/
```
@vancetran
vancetran / wget-static.md
Last active January 5, 2020 10:26
Wget recipes

Make a static copy of a dynamic site, including images

via Stanford

wget -P /destination/ -mpck --user-agent="" -e robots=off --random-wait -E http://example.com/

Without Images, PPT, PDF

source

@vancetran
vancetran / rpi-term.md
Last active August 1, 2019 06:30
Handy Linux Terminal Commands

Handy Linux Terminal Commands

My scratchpad for useful Linux terminal commands, as I hack away at the Raspberry Pi.

Updating the Distro

Distro

via RaspberyPi.org

sudo apt-get update
sudo apt-get dist-upgrade
@vancetran
vancetran / rpi-todo.md
Last active May 1, 2019 19:32
A collection of resources, links, and todo items as I tinker with the amazing little Raspberry Pi.