Skip to content

Instantly share code, notes, and snippets.

View v01dpointer's full-sized avatar
🦊

v01dpointer

🦊
View GitHub Profile
@v01dpointer
v01dpointer / readme.md
Last active July 2, 2025 20:32
Using screen via SSH to keep sessions alive
@v01dpointer
v01dpointer / fullstack.md
Last active July 20, 2019 22:41
Free Courses collected in udacity "full stack" nanodegree
@v01dpointer
v01dpointer / python-ref.md
Last active July 22, 2024 00:17
Learn about Python and its idioms

dictionaries in python

 # init dict
 stuff = {
  'name': 'Zed',
  'age': 39
  }
 
stuff['city'] = "San Francisco" # inserts are constant time
@v01dpointer
v01dpointer / sample_app.rb
Created October 8, 2015 01:13
an example ruby class
#!/usr/bin/env ruby
class Ghost
attr_accessor :haunted
def initialize (loc = "house")
@locations = loc
@haunted = 1
end
@v01dpointer
v01dpointer / git-ref.sh
Last active December 2, 2015 15:19
how to check out specific files from another branch, if those files have since moved
git clone $myrepo.git
# bring repo up to date
git checkout master
git pull
# change to PR branch
git checkout reorg_issues_dir
# move test out of the "new folder" created in PR