This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{"title":"2000","conflicttype":0,"creationdate":2001.9386,"pageedits":2918,"description":"As there was no year zero, the millennium we are currently in started in 2001.","pagesofdiscussion":9}, | |
{"title":"User: Jimbo Wales","conflicttype":9,"creationdate":2002.1546,"pageedits":8721,"description":"A war over the background colour of various parts of the user page","pagesofdiscussion":9}, | |
{"title":"2006 Atlantic Hurricane Season","conflicttype":0,"creationdate":2004.9726,"pageedits":3254,"description":"Tropical Storm Zeta formed on 30 December, 2005 and lasted until 6 January, 2006. Which hurricane season does this count as?","pagesofdiscussion":9}, | |
{"title":"Alumin(i)um","conflicttype":4,"creationdate":2001.9101,"pageedits":5462,"description":"International spelling of element and metal","pagesofdiscussion":8}, | |
{"title":"Andre the Giant","conflicttype":6,"creationdate":2001.9715,"pageedits":3766,"description":"Was his height 7'4\" or 6'10\"? Was his height even consistent?","pagesofdiscussion":9}, | |
{"tit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <Servo.h> | |
int servoPin = 9; | |
int neutral = 0; | |
int happy = 1; | |
int scared = 2; | |
int attentive = 3; | |
class Dog { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RubyGems Environment: | |
- RUBYGEMS VERSION: 2.5.2 | |
- RUBY VERSION: 2.3.3 (2016-11-21 patchlevel 222) [x86_64-darwin16] | |
- INSTALLATION DIRECTORY: /usr/local/opt/gems | |
- USER INSTALLATION DIRECTORY: /Users/[name]/.gem/ruby/2.3.0 | |
- RUBY EXECUTABLE: /usr/local/opt/rbenv/versions/2.3.3/bin/ruby | |
- EXECUTABLE DIRECTORY: /usr/local/opt/gems/bin | |
- SPEC CACHE DIRECTORY: /Users/[name]/.gem/specs | |
- SYSTEM CONFIGURATION DIRECTORY: /usr/local/opt/rbenv/versions/2.3.3/etc | |
- RUBYGEMS PLATFORMS: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias showFiles='defaults write com.apple.finder AppleShowAllFiles YES; killall Finder /System/Library/CoreServices/Finder.app' | |
alias hideFiles='defaults write com.apple.finder AppleShowAllFiles NO; killall Finder /System/Library/CoreServices/Finder.app' | |
# python, virtualenv | |
export WORKON_HOME=$HOME/.virtualenvs | |
source /usr/local/bin/virtualenvwrapper.sh | |
export PIP_VIRTUALENV_BASE=$WORKON_HOME | |
alias workoff='deactivate' | |
# ruby, rbenv |