Skip to content

Instantly share code, notes, and snippets.

View seperman's full-sized avatar
💭
Focusing on Information Retrieval, Search, Personalization and Data ETLs.

Sep Dehpour seperman

💭
Focusing on Information Retrieval, Search, Personalization and Data ETLs.
View GitHub Profile
@seperman
seperman / sublime-settings user windows
Last active May 25, 2016 22:32
sublime-settings user windows
{
"bold_folder_labels": true,
"color_scheme": "Packages/User/SublimeLinter/Monokai (SL).tmTheme",
"draw_white_space": "selection",
"folder_exclude_patterns":
[
".svn",
".git",
".hg",
"CVS"
@seperman
seperman / sep_bash.ps1
Last active August 29, 2015 14:23
Sets my windows environment
Add-SshKey ~/.ssh/git_diamond
net start "Wacom Professional Service"
& "C:\Program Files\AutoHotkey\AutoHotkey.exe"
# stop beeping
net stop beep
@seperman
seperman / nginx.conf
Last active February 14, 2021 19:37 — forked from mikhailov/nginx.conf
echo 'events {
worker_connections 1024;
}
error_log /usr/local/Cellar/nginx/1.5.8/error.log;
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
@seperman
seperman / Default.sublime-theme
Last active June 14, 2016 18:25
Put this file in: ~/Library/Application Support/Sublime Text 3/Packages/User
[
{
"class": "sidebar_label",
"color": [0, 0, 0],
"font.bold": false,
"font.size": 13
},
{
"class": "tab_label",
"font.size": 12,
@seperman
seperman / .vimrc
Created April 8, 2015 23:40
vim configs
syntax on
colorscheme distinguished
set cm=blowfish
@seperman
seperman / GitGutter.sublime-settings
Created December 18, 2014 02:36
GitGutter.sublime-settings
{
"non_blocking": true,
}
@seperman
seperman / flake8
Created December 17, 2014 01:48
~/.config/flake8
[flake8]
max-line-length = 160
ignore = E202
@seperman
seperman / sublimepackagecontrol
Created December 6, 2014 02:37
sublime package control
{
"auto_upgrade_last_run": null,
"installed_packages":
[
"AdvancedNewFile",
"Emmet",
"Indent XML",
"jQuery Snippets pack",
"LESS",
"Package Control",
@seperman
seperman / Mac_bashrc
Last active April 21, 2017 06:45
mac bash profile
alias ll="ls -lah";
alias chrome="open /Applications/Google\ Chrome.app";
alias firefox="open -a Firefox.app";
alias ssh_box="source ~/useful_shell_scripts/ssh_box.sh"
alias kcachegrind="open /Applications/qcachegrind.app";
alias fix_office_borders="~/useful_shell_scripts/fix_office_borders.py";
alias tree="find . -not -name '*.pyc' -not -name '*.pyo' -print | sed -e 's;[^/]*/;|____;g;s;____|; |;g'";
alias dsize="du -ch -d 1 2>/dev/null";
alias dsize2="du -ch | tail -n 10";
@seperman
seperman / Default (Windows).sublime-keymap
Last active August 29, 2015 13:57
Sublime 2 windows user keybinding
[
{ "keys": ["alt+p"], "command": "show_overlay", "args": {"overlay": "goto", "show_files": true} },
{ "keys": ["alt+shift+p"], "command": "show_overlay", "args": {"overlay": "command_palette"} },
{ "keys": ["alt+f"], "command": "show_panel", "args": {"panel": "find"} },
{ "keys": ["alt+shift+f"], "command": "show_panel", "args": {"panel": "replace"} },
{ "keys": ["alt+l"], "command": "expand_selection", "args": {"to": "line"} },
{ "keys": ["super+d"], "command": "find_under_expand" },
{ "keys": ["alt+k", "alt+d"], "command": "find_under_expand_skip" },
{ "keys": ["alt+m"], "command": "move_to", "args": {"to": "brackets"} },
{ "keys": ["alt+/"], "command": "toggle_comment", "args": { "block": false } },