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
syntax enable | |
filetype off | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
Plugin 'davidhalter/jedi-vim' | |
call vundle#end() | |
filetype plugin indent on | |
set number | |
set ts=4 | |
set nocompatible |
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
export ZSH=$HOME/.oh-my-zsh | |
ZSH_THEME="mrtazz" | |
plugins=(git node adb django npm git-extras git-flow osx python brew history-substring-search) | |
source $ZSH/oh-my-zsh.sh | |
###################### | |
##### Lot's of #### | |
##### Aliases #### |
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/sh | |
echo 'Packaging...' | |
cd $1/Contents/Resources/app/ | |
pwd | |
echo 'Zipping..' | |
zip -r app * | |
echo "Done.." | |
echo "Moving.." | |
mv app.zip ../app.nw | |
if [ -z "$2" ] |
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
server { | |
listen 80; | |
root /Users/sabbir/FLow/php/wordpress; | |
index index.php; | |
server_name wp.dev; | |
location / { | |
try_files $uri $uri/ /index.php?$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
#!/usr/bin/env node | |
var args = process.argv.slice(2); | |
if (args[0] == '-h' || args[0] == undefined) { | |
console.log('\nUsage : ovpn2nm.js [file]'); | |
console.log('Example : ovpn2nm.js client.ovpn'); | |
console.log('\nVersion 0.0.1'); | |
return 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
// ==UserScript== | |
// @name Github Bengali Font Fix | |
// @namespace thesabbir.github.fontfix | |
// @version 0.3 | |
// @description Tampermonkey userscript for fixing broken bengali font rendering on github sites. | |
// @match https://github.com/* | |
// @match https://*.github.com/* | |
// @copyright 2014 Sabbir Ahmed | |
// ==/UserScript== |
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
export ZSH=$HOME/.oh-my-zsh | |
ZSH_THEME="mrtazz" | |
plugins=(git git-flow history-substring-search) | |
source $ZSH/oh-my-zsh.sh | |
cat ~/local/sign | |
###################### | |
##### Lot's of #### | |
##### Aliases #### |
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="http://code.jquery.com/jquery-git1.js"></script> | |
<meta charset="utf-8"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<div class="name">anam vai</div> |
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
/* | |
Solaimani Tabij Factory | |
Author : Sabbir | |
*/ | |
/* The main constructor */ | |
var SolaimainiKoboz = function(karzoKarita, mulloFerot, level) { | |
this.karzoKarita = karzoKarita; | |
this.dam = 101 * level; |
OlderNewer