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}}; | |
} | |
} |
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd"> | |
<html> | |
<head> | |
<meta http-equiv="content-type" content="text/html; charset=utf-8"/> | |
<link href="favicon.ico" rel="shortcut icon" type="image/x-icon" /> | |
<title>Is the site down?</title> | |
<style type="text/css"> | |
body{background-color:#fff;color:#333;font-family:Arial,Verdana,sans-serif;font-size:62.5%;margin:10% 5% 0 5%;text-align:center;} | |
a,a:visited,a:active{color:#0080ff;text-decoration:underline;} | |
a:hover{text-decoration:none;} |