This is an OpenPGP proof that connects my OpenPGP key to this Github account. For details check out https://keyoxide.org/guides/openpgp-proofs
[Verifying my OpenPGP key: openpgp4fpr:1AAA61BA6B1C308B48F32F46800D07629064CDE8]
This is an OpenPGP proof that connects my OpenPGP key to this Github account. For details check out https://keyoxide.org/guides/openpgp-proofs
[Verifying my OpenPGP key: openpgp4fpr:1AAA61BA6B1C308B48F32F46800D07629064CDE8]
>>> class A: | |
... def foo(self): | |
... return 5 | |
>>> class B(A): | |
... def foo(self): | |
... return 3 | |
>>> b = B() |
import pygit2 | |
repo = pygit2.Repository(path='.') | |
repo.index.add_all() | |
repo.index.write() | |
tree = repo.index.write_tree() | |
parent, ref = repo.resolve_refish(refish=repo.head.name) | |
repo.create_commit( |
I hereby claim:
To claim this, I am signing this object:
art | structure,format | |
---|---|---|
zap | performance,optimization | |
fire | burn,remove,discard | |
bug | bug,fix | |
ambulance | critical,hotfix | |
sparkles | new,feature | |
memo | memo,docs,readme,note | |
rocket | deploy,ship | |
lipstick | ui,style | |
tada | initial,first,init |
In [1]: foo = {} | |
In [2]: f'r u a hacker or wat? {foo.update(a=1)} {locals().update(b="ham")}' | |
Out[2]: 'r u a hacker or wat? None None' | |
In [3]: foo | |
Out[3]: {'a': 1} | |
In [4]: b | |
Out[4]: 'ham' |
$ python3 stdouterr.py | |
stdout | |
stderr | |
$ python3 stdouterr.py 2>&1 >/dev/null | |
stderr | |
$ python3 stdouterr.py &>/dev/null | |
$ python3 stdouterr.py >/dev/null 2>&1 | |
$ python3 stdouterr.py >/dev/null | |
stderr |
<!doctype html> | |
<html lang="en" ng-app="plannerApp"> | |
<head> | |
<title>IT talk - DataArt - Voronezh - Trip Planner</title> | |
<link rel="stylesheet" | |
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css"> | |
<link rel="stylesheet" | |
href="https://rawgit.com/kuhnza/angular-google-places-autocomplete/master/dist/autocomplete.min.css"> |
Python 3.4.2 (default, Jul 9 2015, 17:24:30) | |
[GCC 5.1.1 20150618 (Red Hat 5.1.1-4)] on linux | |
Type "help", "copyright", "credits" or "license" for more information. | |
>>> class A: | |
... def __init__(self): | |
... self.__foo = 'bar' | |
... | |
>>> class B(A): | |
... def foo(self): | |
... print(self._A__foo) |
[core] | |
editor = joe | |
[color] | |
ui = auto | |
[push] | |
default = simple | |
[pull] | |
rebase = true | |
[rerere] | |
enabled = true |