Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
127.0.0.1 gawker.com | |
127.0.0.1 gizmodo.com | |
127.0.0.1 kotaku.com | |
127.0.0.1 deadspin.com | |
127.0.0.1 lifehacker.com | |
127.0.0.1 jalopnik.com | |
127.0.0.1 io9.com | |
127.0.0.1 jezebel.com | |
127.0.0.1 gawkerassets.com | |
127.0.0.1 img.gawkerassets.com |
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
mutt-helios-1000-20302-19161195591707227032 serverauth.y9zBW5cRoT | |
#include <stdio.h> | |
typedef struct T T; | |
struct T { | |
int x; | |
int y; | |
}; |
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
$ sudo lshw -C network | |
*-network | |
description: Wireless interface | |
product: Centrino Advanced-N 6230 [Rainbow Peak] | |
vendor: Intel Corporation | |
physical id: 0 | |
bus info: pci@0000:02:00.0 | |
logical name: wlan0 | |
version: 34 | |
serial: 00:db:df:0e:06:c8 |
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
#! /bin/sh | |
adb shell input keyevent 3 # home | |
adb shell am start -a android.intent.action.MAIN -n com.android.settings/.Settings | |
adb shell input keyevent 20 # down | |
adb shell input keyevent 20 # down |
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
csv = CSV.parse(csv_text, :headers => true, :col_sep => ",", :quote_char => '"') | |
csv.each do |row| | |
full_text, all_phone_numbers, all_ids, top_id = row | |
puts(all_phone_numbers) | |
end |
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
ssh -vvv [email protected] | |
OpenSSH_5.9p1 Debian-5ubuntu1.1, OpenSSL 1.0.1 14 Mar 2012 | |
debug1: Reading configuration data /home/phoenix/.ssh/config | |
debug1: Reading configuration data /etc/ssh/ssh_config | |
debug1: /etc/ssh/ssh_config line 19: Applying options for * | |
debug2: ssh_connect: needpriv 0 | |
debug1: Connecting to heroku.com [50.19.85.154] port 22. | |
debug1: Connection established. | |
debug3: Incorrect RSA1 identifier | |
debug3: Could not load "/home/phoenix/.ssh/id_rsa" as a RSA1 public key |
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
check-envars: guard-APP_SETTINGS uard-TWILIO_ACCOUNT_SID guard-TWILIO_AUTH_TOKEN | |
guard-%: | |
@if [ -z ${${*}} ] ; then \ | |
echo "Environment variable $* not set"; \ | |
exit 1; \ | |
fi |
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
(lambda (x y) (+ x y)) | |
(lambda (x) (lambda (y) (+ x y)) |
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
type FoursquareResponse struct { | |
Meta struct { | |
Code int | |
ErrorType string `json:",omitempty"` | |
ErrorDetail string `json:",omitempty"` | |
} | |
//Notifications []map[string]interface{}`json:",omitempty"` | |
Response map[string]interface{} | |
} |