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
<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> |
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
Show hidden characters
[ | |
{ "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" }, |
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
<snippet> | |
<content><![CDATA[require 'pry'; binding.pry]]></content> | |
<tabTrigger>pry</tabTrigger> | |
<scope>source.ruby</scope> | |
<description>pry</description> | |
</snippet> |
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
<snippet> | |
<content><![CDATA[import pdb; pdb.set_trace()]]></content> | |
<tabTrigger>pdb</tabTrigger> | |
<scope>source.python</scope> | |
<description>pdb</description> | |
</snippet> |
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
{ | |
// 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 |
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
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): |
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
[flake8] | |
max-line-length = 120 | |
builtins = json | |
statistics = true | |
ignore = E202 | |
exclude = ./data,./src,.svn,CVS,.bzr,.hg,.git,__pycache__ |
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
<snippet> | |
<content><![CDATA[from pudb import set_trace; set_trace()]]></content> | |
<tabTrigger>pudb</tabTrigger> | |
<scope>source.python</scope> | |
<description>Pudb</description> | |
</snippet> |
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
<snippet> | |
<content><![CDATA[from nose.tools import set_trace; set_trace()]]></content> | |
<tabTrigger>npdb</tabTrigger> | |
<scope>source.python</scope> | |
<description>Nose pdb</description> | |
</snippet> |
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
{ | |
"added_words": | |
[ | |
"json", | |
"readthedocs", | |
"datetime", | |
"pprint", | |
"Django", | |
"Lucene", | |
"elasticsearch", |
NewerOlder