Skip to content

Instantly share code, notes, and snippets.

View 2bj's full-sized avatar
🏠
Working from home

Bakyt 2bj

🏠
Working from home
View GitHub Profile
@2bj
2bj / fix_youtube_titles.js
Last active December 30, 2015 22:13
Super.kg media (audio/video) grabber.
// 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(' ', ' - ')
}
});
@2bj
2bj / gist:1069366
Created July 7, 2011 11:59
gmail invite box hider hack
/**
* надо эту строчку вставить в адресную строку браузера и нажать на ентер
* далее попросить ввести случайный набор букв вводим рандомные буквы жмем ОК
* копируем в буфер и вставляем в инпут для инвайта (надо нажать на preview)
* после отправки исчезает этот блок и в почту посыпятся письма о том что нету такого адреса
* берете и все нафиг удаляете
* профит
*
* .. не профит (
* после надо будет удалить всех из контактов
@2bj
2bj / gist:1203546
Created September 8, 2011 14:39
kremlin agendadropdown fix.
//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;
});
@2bj
2bj / bundles.sh
Created October 3, 2011 09:17 — forked from butaji/bundles.sh
This is how I manage my textmate bundles.
#
# 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
@2bj
2bj / 00-README.TXT
Created March 5, 2012 06:24 — forked from bob-sims/00-README.TXT
Demo CommonJS module for Titanium Mobile interaction with Drupal Services 3.x REST + JSON interface
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.
@2bj
2bj / .vimrc
Created March 5, 2012 06:31 — forked from shadowhand/.vimrc
" can haz highlights
syntax enable
" make love to my eyes
colorscheme Tomorrow-Night
" always show tabs
set showtabline=2
" enable recursive file search
@2bj
2bj / county_district.sql
Created March 7, 2012 13:23
База огругов с районами москвы
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
@2bj
2bj / History_19921103-hypertexthypertext_WWW_TheProject.html
Created August 8, 2012 07:46
The website of the world's first-ever web server
<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>
@2bj
2bj / pre-commit
Created October 3, 2012 19:50 — forked from voldmar/pre-commit
git pre-commit hook that checks forgotten print’s and pyflakes errors
#!/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
@2bj
2bj / Custom.css
Created October 7, 2012 22:47 — forked from bentruyman/Custom.css
IR_Black Theme for Chrome Developer Tools
/**********************************************/
/*
/* 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/
/*