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
| apple-gcc42 gtk+ openssl | |
| archey harfbuzz ossp-uuid | |
| atk icu4c pango | |
| autoconf jpeg pixman | |
| automake libffi pkg-config | |
| cairo libgpg-error postgresql | |
| fontconfig libksba python | |
| freetype libpng readline | |
| gdbm libtiff scala | |
| gdk-pixbuf libtool sqlite |
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
| actionmailer (4.0.2) | |
| actionpack (4.0.2) | |
| activemodel (4.0.2) | |
| activerecord (4.0.2) | |
| activerecord-deprecated_finders (1.0.3) | |
| activesupport (4.0.2) | |
| arel (4.0.1) | |
| atomic (1.1.14) | |
| bcrypt-ruby (3.1.2) | |
| bigdecimal (1.2.3, 1.2.0) |
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
| 1Password 4.app Maps.app | |
| Adobe Messages.app | |
| Adobe Acrobat XI Pro Microsoft Office 2011 | |
| Adobe Bridge CS6 Microsoft Silverlight | |
| Adobe Extension Manager CS6 Mission Control.app | |
| Adobe Illustrator CS6 Notes.app | |
| Adobe Photoshop CS6 Numbers.app | |
| Adobe Reader.app OpenGL Driver Monitor.app | |
| App Store.app OpenGL Profiler.app | |
| Automator.app OpenGL Shader Builder.app |
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
| Login | |
| If you want to associate your gists with your GitHub account, you need to login with gist. It doesn't store your username and password, it just uses them to get an OAuth2 token (with the "gist" permission). | |
| gist --login | |
| Obtaining OAuth2 access_token from github. | |
| GitHub username: ConradIrwin | |
| GitHub password: | |
| Success! https://github.com/settings/applications | |
| This token is stored in ~/.gist and used for all future gisting. If you need to you can revoke it from https://github.com/settings/applications, or just delete the file. |
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
| class staticTest { | |
| int x = 3; | |
| int f (int z)class staticTest { | |
| int x = 3; | |
| int f (int z) { | |
| return z+x; | |
| } | |
| public static void main(String[] args) { | |
| staticTest test = new staticTest(); |
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
| To disable: | |
| sudo mv /System/Library/CoreServices/Search.bundle /System/Library/CoreServices/Search.bundle.bak | |
| killall SystemUIServer | |
| To re-enable: | |
| sudo mv /System/Library/CoreServices/Search.bundle.bak /System/Library/CoreServices/Search.bundle | |
| killall SystemUIServer |
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
| require 'rubygems' | |
| require 'open-uri' | |
| require 'fileutils' | |
| require 'nokogiri' | |
| require 'date' | |
| require 'json' | |
| require 'uri' | |
| require 'jekyll' | |
| module Jekyll |
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
| import java.io.File; | |
| import java.util.ArrayList; | |
| import java.util.Arrays; | |
| import java.util.HashMap; | |
| import java.util.List; | |
| import java.util.Map; | |
| import java.util.Scanner; | |
| import android.os.Environment; | |
| import android.util.Log; |
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
| class apples{ | |
| public static void main(String[] args) { | |
| int firstarray[][]={{8,9,10,11},{12,13,14,15}}; | |
| int secondarray[][]={{30,31,32,33},{43},{3,4,5}}; | |
| } | |
| } |