This file contains 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
-----BEGIN PRIVATE KEY----- | |
MIICdwIBADANBgkqhkiG9w0BAQEFAASCAmEwggJdAgEAAoGBAL+mNx9DsC525Lvvc | |
eGEpB9IklETlLKXUC29Zmn/vq4te7E6wIWJqUnp/FhpDlhpxTSfkx0MIEKYv24iMP | |
18aCjQ4qVZ5kXBcSqWUtW3oB1Q2UC7i4XzDwhICmlckbaQjSzfrhOLY48CVZdA75r | |
S3Tb/VjJvI+AuiZA4WmNXoQZLAgMBAAECgYEAqjAahyL+02Q1X0cVJCU78aPqeyEe | |
TTHdu6CTz9GSLO6rBwmbaXqD4OVud7xjRtQ2kbKbW5InG7y1UkH+qzvM6dgEmZAkS | |
Zyvcv9d6vFCs1BK5tfz4vTWbfnljCM4u24fpCp2dWo7mAKrTJzBFyX1YJIHcsQXRF | |
pvlRz2sVDNlpECQQDqIY0eziHQjQu5lHgi06LkJzfG38L/qvqD9UTKB1dXnRyvZmo | |
eHP66MUWGFoJ7CNIRV3eQTDulzMCJnPWYAsQfAkEA0YzbS7RplAB5+ZY2UAVjFtAS | |
2Wd0DRUXl2SjLLR7pL8+jR4ljqqtvmAOzEA6ryJfmdirEnUbsIL15ZExgU0YVQJAe |
This file contains 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
<?php | |
header( 'Location: http://localhost:8888/thinkup/plugins/twitter/auth.php?oauth_token='.$_GET['oauth_token'] ) ; | |
// http://localhost:8888/thinkup is the URL to access thinktank on your local server. | |
?> | |
This file contains 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
#menu li a { | |
text-transform: lowercase; | |
font-weight: normal; | |
font-family: Palatino, "Palatino Linotype", serif; | |
} | |
#page_submenu_outer { | |
display: none; | |
} |
This file contains 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
/* | |
For news.ycombinator.com | |
*/ | |
td.title { | |
padding-top: 20px; | |
color: #f0f0f0; | |
} | |
body { |
This file contains 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
#bnrTop object { | |
display: none; | |
} | |
#skyAd a img { | |
display: none; | |
} | |
#centerAd object { | |
display: none; |
This file contains 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
#notify--1 { | |
display: none; | |
} | |
#notify-2 { | |
display: none; | |
} | |
#notify-container { | |
display: none; |
This file contains 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
input.search-button { | |
display: none; | |
} | |
#myDynamicContent { | |
display: none; | |
} | |
#adaptvDiv { | |
display: none; |
This file contains 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
// ==UserScript== | |
// @name 'o' shortcut for new Twitter | |
// @description Adds an 'o' shortcut to open any shared links in selected tweet in a new tab in the background. If no link is found, looks for @usernames. And finally if no usernames, looks for hashtags. | |
// @include http://twitter.com/* | |
// @author Ankit Ahuja | |
// ==/UserScript== | |
// DISCLAIMER: Only tested on Chrome! | |
document.addEventListener('keyup', function(e) { |
This file contains 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
/*** Edits to wp-includes/post.php ***/ | |
// Add this method | |
// | |
function wp_get_pages( $args = array(), $output = ARRAY_A ) { | |
if ( is_numeric( $args ) ) { | |
_deprecated_argument( __FUNCTION__, '3.1', __( 'Passing an integer number of posts is deprecated. Pass an array of arguments instead.' ) ); | |
$args = array( 'numberposts' => absint( $args ) ); | |
} |
This file contains 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
# ~/.gitconfig | |
# credits: https://gist.github.com/1637874 | |
[alias] | |
s = status | |
df = diff --color-words | |
co = checkout | |
cm = commit -am | |
l = log --graph --pretty=format:'%C(yellow)%h%C(cyan)%d%Creset %s %C(white)- %an, %ar%Creset' | |
alias = !git config --list | grep 'alias\\.' | sed 's/alias\\.\\([^=]*\\)=\\(.*\\)/\\1\\\t => \\2/' | sort | |
[core] |
OlderNewer