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 / 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 / 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 / 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-pygmalion.zsh-theme
Last active August 29, 2015 14:27
oh my zsh sep pygmalion theme
# Yay! High voltage and arrows!
prompt_setup_pygmalion(){
ZSH_THEME_GIT_PROMPT_PREFIX="%{$reset_color%}%{$fg[green]%}"
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%} "
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[yellow]%}⚡%{$reset_color%}"
ZSH_THEME_GIT_PROMPT_CLEAN=""
base_prompt='%{$fg[magenta]%}%n%{$reset_color%}%{$fg[cyan]%}@%{$reset_color%}%{$fg[yellow]%}%m%{$reset_color%}%{$fg[red]%}:%{$reset_color%}%{$fg[cyan]%}%0~%{$reset_color%}%{$fg[red]%}|%{$reset_color%}'
post_prompt='%{$fg[cyan]%}⇒%{$reset_color%} '
@seperman
seperman / Side Bar.sublime-menu
Created August 31, 2015 23:56
Put this file in /Users/sdehpour/Library/Application Support/Sublime Text 3/Packages/User/SideBarEnhancements/Open With/Side Bar.sublime-menu
[
{"id": "side-bar-files-open-with",
"children":
[
//application 1
{
"caption": "Photoshop",
"id": "side-bar-files-open-with-photoshop",
@seperman
seperman / github2.css
Last active September 16, 2015 21:25
github2 css for markdown (modified)
body {
font-family: Helvetica, arial, sans-serif;
font-size: 16px;
line-height: 1.6;
padding-top: 10px;
padding-bottom: 10px;
background-color: white;
padding: 30px; }
body > *:first-child {
@seperman
seperman / Package Control.sublime-settings
Last active November 6, 2017 23:14
Package Control.sublime-settings for windows
{
"bootstrapped": true,
"in_process_packages":
[
],
"installed_packages":
[
"BracketHighlighter",
"Git",
"GitGutter",
@seperman
seperman / ipdb.sublime-snippet
Last active July 8, 2016 23:55 — forked from jorgebastida/ipdb.sublime-snippet
Sublime text 2 ipdb snippet
<snippet>
<content><![CDATA[import ipdb; ipdb.set_trace()]]></content>
<tabTrigger>ipdb</tabTrigger>
<scope>source.python</scope>
<description>ipdb</description>
</snippet>
@seperman
seperman / .jshintrc
Last active January 7, 2016 07:13
jshint configs for sublime
{
// The plugin looks for a .jshintrc file in the same directory as the source
// file you're prettifying (or any directory above if it doesn't exist, or in
// your home folder if everything else fails) and uses those options along
// the default ones.
// Details: https://github.com/victorporof/Sublime-JSHint#using-your-own-jshintrc-options
// Example: https://github.com/jshint/jshint/blob/master/examples/.jshintrc
// Documentation: http://www.jshint.com/docs/options/
"browser": true,
@seperman
seperman / JSHint.sublime-settings
Created December 25, 2015 06:36
jshint sublime settings (there is another one for configs too!)
{
// Simply using `node` without specifying a path sometimes doesn't work :(
// https://github.com/victorporof/Sublime-JSHint#oh-noez-command-not-found
// http://nodejs.org/#download
"node_path": {
"windows": "C:/Program Files (x86)/nodejs/node.exe",
"linux": "/usr/bin/nodejs",
"osx": "/usr/local/bin/node"
},