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
<Form onSubmit={handleSubmit(onSubmit)} className='wizardForm'>
<div className="SaveCancelDiv">
<Button primary type='submit'>Resolve</Button>
<Button secondary onClick={() => history.goBack()}>Cancel</Button>
<ErrorBox errors={errors} message={error_msg}/>
</div>
</Form>
@seperman
seperman / Default (Linux).sublime-keymap
Created January 27, 2020 07:50
Sublime keybinding for Ubuntu
[
{ "keys": ["ctrl+shift+right"], "command": "move_to", "args": {"to": "eol", "extend": true} },
{ "keys": ["ctrl+shift+left"], "command": "move_to", "args": {"to": "bol", "extend": true} },
{ "keys": ["super+/"], "command": "toggle_comment", "args": { "block": false } },
{ "keys": ["ctrl+super+/"], "command": "toggle_comment", "args": { "block": true } },
{ "keys": ["ctrl+g"], "command": "find_next" },
{ "keys": ["ctrl+shift+g"], "command": "find_prev" },
{ "keys": ["alt+ctrl+i"], "command": "find_under" },
{ "keys": ["shift+alt+ctrl+g"], "command": "find_under_prev" },
{ "keys": ["super+shift+up"], "command": "swap_line_up" },
@seperman
seperman / pry.sublime-snippet
Created January 17, 2018 07:44
pry sublime snippet
<snippet>
<content><![CDATA[require 'pry'; binding.pry]]></content>
<tabTrigger>pry</tabTrigger>
<scope>source.ruby</scope>
<description>pry</description>
</snippet>
@seperman
seperman / pdb.sublime-snippet
Created November 7, 2017 19:10
pdb sublime snippet
<snippet>
<content><![CDATA[import pdb; pdb.set_trace()]]></content>
<tabTrigger>pdb</tabTrigger>
<scope>source.python</scope>
<description>pdb</description>
</snippet>
@seperman
seperman / Flake8Lint.sublime-settings
Created November 6, 2017 23:02
flake8 settings for python flake8 lint
{
// debug mode (verbose output to ST python console)
"debug": false,
// run flake8 lint on file saving
"lint_on_save": true,
// run flake8 lint on file loading
"lint_on_load": false,
// run lint in live mode: lint file (without popup) every XXX ms
@seperman
seperman / pandolime.py
Created October 29, 2016 23:02
Pandolime
from copy import copy
text = "Hello maddam, how are you daad mamamaml?"
def find_palindromes(text):
i = 0
ir = 0
found = []
for i, v in enumerate(text):
@seperman
seperman / setup.cfg
Created October 14, 2016 21:38
setup.cfg has setup stuff for a python project. Sublime and others read it apparently.
[flake8]
max-line-length = 120
builtins = json
statistics = true
ignore = E202
exclude = ./data,./src,.svn,CVS,.bzr,.hg,.git,__pycache__
<snippet>
<content><![CDATA[from pudb import set_trace; set_trace()]]></content>
<tabTrigger>pudb</tabTrigger>
<scope>source.python</scope>
<description>Pudb</description>
</snippet>
@seperman
seperman / npdb.sublime-snippet
Last active August 15, 2016 20:31
npdb.sublime-snippet Nosetest pdb npdb
<snippet>
<content><![CDATA[from nose.tools import set_trace; set_trace()]]></content>
<tabTrigger>npdb</tabTrigger>
<scope>source.python</scope>
<description>Nose pdb</description>
</snippet>
@seperman
seperman / preferences.sublime-settings
Last active August 19, 2020 23:57
sublime settings user mac
{
"added_words":
[
"json",
"readthedocs",
"datetime",
"pprint",
"Django",
"Lucene",
"elasticsearch",