Skip to content

Instantly share code, notes, and snippets.

View Wujek280's full-sized avatar
Ho Ho Ho

JS.0N Wujek280

Ho Ho Ho
View GitHub Profile
@Wujek280
Wujek280 / elements.xml
Created December 27, 2016 02:18
Full Recall database file - Power Enginnering [PL]
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE fullrecall [
<!ELEMENT fullrecall (category?)>
<!ELEMENT category (item?)>
<!ELEMENT item (q, a)>
<!ELEMENT q (#PCDATA)>
<!ELEMENT a (#PCDATA)>
<!ATTLIST fullrecall core_version CDATA #IMPLIED
time_of_start CDATA #REQUIRED>
<!ATTLIST category name CDATA #REQUIRED
@Wujek280
Wujek280 / bash_aliases
Last active February 6, 2020 11:00
useful bash_aliases
## SYSTEM
alias wtf='sudo dmesg'
alias please='sudo'
alias t='tree --charset=UTF8 -L 1 -I "node_modules"'
alias tt='tree --charset=UTF8 -L 2 -I "node_modules" '
alias ttt='tree --charset=UTF8 -L 3 -I "node_modules"'
alias tttt='tree --charset=UTF8 -L 4 -I "node_modules"'
alias ttttt='tree --charset=UTF8 -L 5 -I "node_modules"'
## GIT
@Wujek280
Wujek280 / brackets-panda-vscode-theme-port
Last active November 22, 2019 20:00
Based on Panda Syntax
{
"name": "Brackets panda vscode port",
"type": "dark",
"colors": {
"sideBarTitle.foreground": "#bbbbbb",
"foreground": "#E6E6E6",
"errorForeground": "#FF4B82",
"activityBar.background": "#222223",
"activityBar.foreground": "#E6E6E6",
"activityBar.border": "#222223",
@Wujek280
Wujek280 / KILL_STEAM.bat
Created January 12, 2021 21:56
Kill steam process on windows, handy shortcut to have on desktop
taskkill.exe /im "steam*" /f
#! /usr/bin/env python3
# pip install pytesseract
#
# Simple cli ocr using pytesseract library
# License MIT
# Author JS.0N
import os
import sys
import numpy as np