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
if (window.location.pathname=='/direct.php') | |
{ | |
window.location.replace( decodeURIComponent( window.location.search.match( /url=(.+?)(&|$)/)[1])); | |
} |
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
var metas = document.getElementsByTagName('meta'); | |
img = document.getElementsByTagName('img'), | |
send = [], | |
raw = new Image(); | |
for (m in metas){ | |
if ( metas[m].property == 'og:image') | |
send.push(metas[m].content); | |
} |
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
<?php | |
/* | |
* +--------------------------------------------------------------------------+ | |
* | Copyright (c) 2012 Add This, LLC | | |
* +--------------------------------------------------------------------------+ | |
* | This program is free software; you can redistribute it and/or modify | | |
* | it under the terms of the GNU General Public License as published by | | |
* | the Free Software Foundation; either version 2 of the License, or | | |
* | (at your option) any later version. | | |
* | | |
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
# SVN override to prevent commits that try to implicitly commit more than one file. | |
# Has weaned me off of svn ci -m very effectively. I now almost always use svn ci, | |
# which usually results in me writing longer and more helpful commit messages. | |
# Also, it prevents me from committing unrelated code, so there's that. | |
function svn() { | |
if [ "$1" == "ci" ] && [ "$2" == "-m" ] && [ -z "$4" ] && [ "$(svn stat --ignore-externals | grep '^[^?X]' | wc -l | awk '{print $1}')" -gt 1 ]; then | |
svn stat --ignore-externals | grep '^[^?X]' | |
echo "" | |
echo $3 |
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
_.mixin({ | |
has_values: function( ){ | |
var args = _.values(arguments), | |
list = args.shift(), | |
length = args.length; | |
if (_.isObject(list)) | |
list = _.values(list); | |
return (_.intersection(list,args).length === length); |
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
set noesckeys | |
set autoindent | |
set smartindent | |
set pastetoggle=<F2> | |
set tabstop=4 | |
set shiftwidth=4 | |
set expandtab |
NewerOlder