- 50+% is done when understanding the problem well.
- Every problem-solving SHOULD be a one-way journey.
- 50+% is done when understanding the trouble well.
- Every troubleshooting SHOULD be a one-way journey to identify what to be corrected.
| document.addEventListener('deviceready', brython, false); |
| @echo off | |
| kubectl %* | |
| exit /b %ERRORLEVEL% |
| from os.path import basename | |
| from os.path import dirname | |
| from os.path import join | |
| import sys | |
| from PyQt5.QtCore import Qt | |
| from PyQt5.QtCore import QUrl | |
| from PyQt5.QtCore import QTimer | |
| from PyQt5.QtGui import QPixmap | |
| from PyQt5.QtWebEngineWidgets import QWebEngineView |
| from sys import argv | |
| from sys import exit | |
| from pygal import Bar | |
| from PyQt5.QtWebEngineWidgets import QWebEngineView | |
| from PyQt5.QtWidgets import QApplication | |
| app = QApplication(argv) | |
| view = QWebEngineView() | |
| view.setHtml(Bar()(1, 3, 3, 7)(1, 6, 6, 4).render(True)) |
| """ | |
| xte v1.09 | |
| Generates fake input using the XTest extension, more reliable than xse | |
| Author: Steve Slaven - http://hoopajoo.net | |
| usage: xte [-h] [-i xinputid] [-x display] [arg ..] | |
| -h this help | |
| -i XInput2 device to use. List devices with 'xinput list' | |
| -x send commands to remote X server. Note that some commands |
| from io import BytesIO | |
| from msilib import add_tables | |
| from msilib import init_database | |
| from msilib import schema | |
| from msilib import sequence | |
| from os.path import abspath | |
| from os.path import dirname | |
| from os.path import normpath | |
| from shutil import rmtree | |
| from subprocess import check_call |
| from ctypes import c_ubyte | |
| from ctypes import cast | |
| from ctypes import POINTER | |
| from sys import getsizeof | |
| def objview(obj): | |
| return cast(id(obj), POINTER(c_ubyte * getsizeof(obj))).contents | |
| ''' | |
| License: GPL | |
| https://www.ietf.org/rfc/rfc1759.txt | |
| ''' | |
| from argparse import ArgumentParser | |
| from collections import namedtuple | |
| from enum import IntEnum | |
| from functools import partial |
| """\ | |
| License: MIT | |
| See also: | |
| - RFC 1179 - Line Printer Daemon Protocol | |
| http://www.ietf.org/rfc/rfc1179.txt | |
| - David Boddie's lpr.py (Thanks!) | |
| http://www.boddie.org.uk/david/Projects/Python/lptools/lpr.py | |
| """ |