Skip to content

Instantly share code, notes, and snippets.

View taraxvoid's full-sized avatar
🦊

Tara \X/ Void taraxvoid

🦊
View GitHub Profile
@taraxvoid
taraxvoid / readme.md
Last active July 2, 2025 20:32
Using screen via SSH to keep sessions alive
@taraxvoid
taraxvoid / fullstack.md
Last active July 20, 2019 22:41
Free Courses collected in udacity "full stack" nanodegree
@taraxvoid
taraxvoid / 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
@taraxvoid
taraxvoid / 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
@taraxvoid
taraxvoid / 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