-
Endpoint:
POST /api/v1/verification-code/request-code/
This file contains hidden or 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/python | |
| # -*- coding=utf-8 -*- | |
| import hashlib | |
| def md5sum(filename, blocksize=65536): | |
| hash = hashlib.md5() | |
| with open(filename,'rb') as f: | |
| for block in iter(f.readlines()): | |
| hash.update(block) |
This file contains hidden or 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/python | |
| # -*- coding=utf-8 -*- | |
| import os | |
| import datetime | |
| class FileDetail: | |
| def __init__(self, filename): |
This file contains hidden or 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
| package test.methodref; | |
| import java.util.ArrayList; | |
| import java.util.Arrays; | |
| import java.util.Collection; | |
| import java.util.Comparator; | |
| import java.util.List; | |
| import java.util.Optional; | |
| import java.util.function.Consumer; | |
| import java.util.function.Function; |
This file contains hidden or 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
| SymbolRegex = /[)}>\]'";]/ | |
| atom.commands.add 'atom-text-editor', 'custom:jump-over-symbol': (event) -> | |
| editor = atom.workspace.getActiveTextEditor() | |
| cursorMoved = false | |
| for cursor in editor.getCursors() | |
| range = cursor.getCurrentWordBufferRange(wordRegex: SymbolRegex) | |
| unless range.isEmpty() | |
| cursor.setBufferPosition(range.end) | |
| cursorMoved = true | |
| event.abortKeyBinding() unless cursorMoved |
This file contains hidden or 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
| 'atom-text-editor:not([mini])': | |
| 'tab': 'custom:jump-over-symbol' | |
| 'atom-text-editor.vim-mode:not(.insert-mode)': | |
| ', b': 'vim-mode:move-to-beginning-of-line' | |
| ', e': 'vim-mode:move-to-last-character-of-line' | |
| 'body': | |
| 'ctrl-l': 'pane:show-next-item' | |
| 'ctrl-h': 'pane:show-previous-item' |
This file contains hidden or 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
| [ | |
| //sublime_jedi mousemap configuration | |
| //let ctrl+Left click for goto function definition | |
| { | |
| "modifiers": ["ctrl"], "button": "button1", | |
| "command": "sublime_jedi_goto", | |
| "press_command": "drag_select" |
This file contains hidden or 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
| [ | |
| //sublime_jedi | |
| //g+f used to goto funcition definition | |
| {"keys":["g","f"],"command": "sublime_jedi_goto"}, | |
| //g+d used to show docstring | |
| {"keys":["g","d"], "command": "sublime_jedi_docstring"} | |
| ] |
This file contains hidden or 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
| { | |
| //------sublime_jedi.sublime-settings | |
| "auto_complete_function_params":"all",//optional value "all","" | |
| // "sublime_completions_visibility":"default/jedi/list", //don't care if we have SublimeAllCompletion | |
| "logging_level": "error", | |
| "sublime_jedi_docstring":"F1", |
This file contains hidden or 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
| { | |
| "auto_complete_selector": ".", | |
| "auto_complete_triggers": | |
| [ | |
| { | |
| "characters": ".", | |
| "selector": "source.python" | |
| } | |
| ], | |
| "caret_style": "phase", |
NewerOlder