I hereby claim:
- I am kanghyojun on github.
- I am kanghyojun (https://keybase.io/kanghyojun) on keybase.
- I have a public key ASAZMb3_K219uDCyaNwWI3gTfDZxGMmK1VhjBGpcXGHpvQo
To claim this, I am signing this object:
| { | |
| "diagnostic-languageserver.filetypes": { | |
| "python": "flake8" | |
| }, | |
| "diagnostic-languageserver.linters": { | |
| "flake8": { | |
| "sourceName": "flake8", | |
| "command": "flake8", | |
| "args": [ | |
| "%file" |
| { | |
| "title": "test", | |
| "maintainers": [ | |
| "kang hyojun" | |
| ], | |
| "rules": [ | |
| { | |
| "type": "basic", | |
| "from": { | |
| "modifiers": { |
I hereby claim:
To claim this, I am signing this object:
| const wrongCond = 1 in [0, 2, 3]; // true | |
| const rightCond = [0, 2, 3].indexOf(1) !== -1; // false |
| """Print SQLAlchemy queries (including bind params).""" | |
| def show_query(query): | |
| from sqlalchemy.dialects.postgresql import dialect | |
| qc = query.statement.compile(dialect=dialect()) | |
| return str(query) % {n: repr(b.value) for n, b in qc.binds.items()} | |
| def print_query(query): |
| import requests | |
| from bs4 import BeautifulSoup | |
| r = requests.get('http://www.python.org') | |
| page = r.text | |
| soup = BeautifulSoup(page,"html.parser") | |
| use = soup.find("div", class_ = "applications-widget") | |
| n = int(input()) | |
| a = [ | |
| int(x) | |
| for x in input().split(" ") | |
| ] | |
| b = [ | |
| int(x) | |
| for x in input().split(" ") | |
| ] | |
| #a = [1, 1, 1, 6, 0] |
I hereby claim:
To claim this, I am signing this object: