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
// fix youtube video title after/while upload (http://www.youtube.com/upload) | |
$x("//input[contains(@class, 'video-settings-title')]").forEach(function(el,i){ | |
if(el.value.indexOf(" ")!= -1){ | |
el.value = el.value.replace(' ', ' - ') | |
} | |
}); |
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
/** | |
* надо эту строчку вставить в адресную строку браузера и нажать на ентер | |
* далее попросить ввести случайный набор букв вводим рандомные буквы жмем ОК | |
* копируем в буфер и вставляем в инпут для инвайта (надо нажать на preview) | |
* после отправки исчезает этот блок и в почту посыпятся письма о том что нету такого адреса | |
* берете и все нафиг удаляете | |
* профит | |
* | |
* .. не профит ( | |
* после надо будет удалить всех из контактов |
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
//e(".n11 i, .en11 i").unbind(); | |
e(".n11 i, .en11 i").click(function(){ | |
e(this).toggleClass("opened"); | |
e('.agendadropdown p.allagenda').hide(); | |
e(".agendadropdown").slideToggle(function(){ | |
e('.agendadropdown p.allagenda').fadeIn("fast"); | |
}); | |
return false; | |
}); |
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
# | |
# This script will install the following Textmate bundles | |
# | |
# Languages | |
# - c https://github.com/textmate/c.tmbundle | |
# - coffeescript https://github.com/jashkenas/coffee-script-tmbundle | |
# - context free https://github.com/textmate/context-free.tmbundle | |
# - erlang https://github.com/textmate/erlang.tmbundle | |
# - haskell https://github.com/textmate/haskell.tmbundle.git | |
# - html https://github.com/textmate/html.tmbundle |
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
Tested using: | |
Drupal 6.24 | |
Services 3.1 | |
Titanium Mobile SDK 1.8.2 (Android 2.2 SDK) | |
Services module configured as this example: | |
http://www.tylerfrankenstein.com/code/android-app-with-drupal-7-services-phonegap-and-jquery-mobile | |
Special thanks to @grzegorzbartman (www.openbit.pl) for coaching and inspiration. |
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
" can haz highlights | |
syntax enable | |
" make love to my eyes | |
colorscheme Tomorrow-Night | |
" always show tabs | |
set showtabline=2 | |
" enable recursive file search |
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
CREATE TABLE IF NOT EXISTS `county` ( | |
`id` int(10) unsigned NOT NULL AUTO_INCREMENT, | |
`name` varchar(124) NOT NULL, | |
`short_name` varchar(20) NOT NULL, | |
PRIMARY KEY (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=11 ; | |
INSERT INTO `county` (`id`, `name`, `short_name`) VALUES |
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
<HEADER> | |
<TITLE>The World Wide Web project</TITLE> | |
<NEXTID N="55"> | |
</HEADER> | |
<BODY> | |
<H1>World Wide Web</H1>The WorldWideWeb (W3) is a wide-area<A | |
NAME=0 HREF="WhatIs.html"> | |
hypermedia</A> information retrieval | |
initiative aiming to give universal | |
access to a large universe of documents.<P> |
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
#!/bin/bash | |
cd ./$(git rev-parse --show-cdup) | |
result=$(mktemp /tmp/pre-commit.XXXXX) | |
STAGED=${STAGED:---staged} | |
changed_py=$(git diff --name-only --diff-filter=AM $STAGED | grep -E '\.py$') | |
changed_js=$(git diff --name-only --diff-filter=AM $STAGED | grep -E '\.js$') | |
[[ -z $changed ]] && exit 0 |
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
/**********************************************/ | |
/* | |
/* IR_Black Skin by Ben Truyman - 2011 | |
/* | |
/* Based on Todd Werth's IR_Black: | |
/* http://blog.toddwerth.com/entries/2 | |
/* | |
/* Inspired by Darcy Clarke's blog post: | |
/* http://darcyclarke.me/design/skin-your-chrome-inspector/ | |
/* |