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/env python3 | |
| """ | |
| Usage: gdu -f- | python3 abspath.py | |
| """ | |
| import json | |
| import sys | |
| def processDir(data, path): | |
| path = (path + '/' if path else '') + data[0]['name'] |
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
| import argparse | |
| import logging | |
| import re | |
| import subprocess | |
| import sys | |
| try: | |
| import pydor | |
| except ImportError: | |
| print('Plese run:') |
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
| if [[ ${EUID} == 0 ]]; then | |
| PS1="\[\e[41;30m\] \w \${?/#0}\[\e[31;49m\]"$'\xee\x82\xb0'"\[\e[00m\] " | |
| else | |
| PS1="\[\e[44;30m\] \w \[\\e[31m\]\${?/#0}" | |
| PS1="$PS1\$(\ | |
| export GIT_BRANCH=\"\$(git branch --no-color 2>/dev/null | sed -n 's/*[^ ]* //p')\"; \ | |
| if [ -n \"\$GIT_BRANCH\" ] ; then \ | |
| echo -en \"\[\e[43;34m\]\xee\x82\xb0 \" | |
| echo -en \"\[\e[43;30m\]\$GIT_BRANCH \" | |
| echo -en \"\[\e[33;49m\]\xee\x82\xb0\[\e[00m\] \" |
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
| from __future__ import print_function | |
| import requests | |
| from typing import Optional | |
| ADIS_HOST = 'https://adisreg.mfcr.cz' | |
| ADIS_URL = '/cgi-bin/adis/idph/int_dp_prij.cgi?id=1&pocet=1&fu=&OK=+Search+&ZPRAC=RDPHI1&dic=' | |
| RESPONSE_VAT_REGISTERED = u'Plátce' | |
| RESPONSE_VAT_INDETIFIED_PERSON = u'Identifikovaná osoba' |
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
| # Maintainer: Michael Schubert <mschu.dev at gmail> | |
| pkgname=ironpython-git | |
| pkgver=r2315.ac72964d7 | |
| pkgrel=1 | |
| pkgdesc="Python implementation for the .NET framework" | |
| arch=("any") | |
| url="http://ironpython.net" | |
| license=("Apache") | |
| depends=('mono' 'msbuild-bin') | |
| makedepends=('git') |
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
| from functools import wraps | |
| class DomainObject: | |
| # nejaky domenovy objekt, ktery vyzaduje hodne parametru | |
| def __init__(self, root, args, context, info): | |
| pass | |
| def process(self): | |
| return 'OK' |
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
| class Robot(object): | |
| def move_forward(): | |
| print('Moving forward') | |
| def move_backward(): | |
| print('Moving backward') | |
| class CleaningRobot(Robot): |
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
| log_file = os.path.join( | |
| log_dir, | |
| 'deadlocks' | |
| '{}.log'.format(datetime.datetime.now().strftime('%Y-%m-%d_%H-%M-%S')) | |
| ) |
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
| import sys | |
| from datetime import datetime | |
| if sys.version_info[0] == 2: | |
| range = xrange | |
| class StockClassic(object): |
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
| [ | |
| { "keys": ["ctrl+space"], "command": "goto_definition" }, | |
| { "keys": ["f1"], "command": "goto_documentation" }, | |
| { "keys": ["ctrl+shift+up"], "command": "select_lines", "args": {"forward": false} }, | |
| { "keys": ["ctrl+shift+down"], "command": "select_lines", "args": {"forward": true} }, | |
| { "keys": ["insert"], "command": "select_lines" }, | |
| ] |
NewerOlder