Skip to content

Instantly share code, notes, and snippets.

View gatopeich's full-sized avatar
🧟‍♂️
hacking since 1987

gatopeich

🧟‍♂️
hacking since 1987
View GitHub Profile
@gatopeich
gatopeich / gist:a14cbadc4b0db4f6f00e4f0f0fd1fe87
Created October 19, 2018 08:23
Checking Linux processes scheculing policies and priorities with ps command
$ ps -eo pid,policy,rtprio,pri,nice,cmd
PID POL RTPRIO PRI NI CMD
1 TS - 19 0 /usr/lib/systemd/systemd --switched-root --system --deserialize 23
2 TS - 19 0 [kthreadd]
3 TS - 19 0 [ksoftirqd/0]
5 TS - 39 -20 [kworker/0:0H]
6 TS - 19 0 [kworker/u16:0]
7 FF 99 139 - [migration/0]
8 TS - 19 0 [rcu_bh]
9 TS - 19 0 [rcu_sched]
@gatopeich
gatopeich / MyJenkinsTray.py
Last active August 17, 2018 09:16
Simple tray icon to display status of Jenkins builds, based on Python, wget, GTK StatusIcon, and some random art
#!/usr/bin/env python
# Display status of several Jenkins jobs in system tray
# Tooltip shows the list of builds and status
# SVG-based art represents the jobs status (random circles whose color reflects build status, green for OK etc.)
# On click, point default browser to ON_CLICK_URL
JOBS_URL = 'http://jenkins/job/'
ON_CLICK_URL = 'http://jenkins/user/myself/my-views/view/My%20Dashboard/'
WGET_AUTH = '--auth-no-challenge --user=XXX --password=YYY'
@gatopeich
gatopeich / minimal_javascript_prototype.py
Last active May 13, 2018 11:01
gatopeich's prototype of a minimal Javascript interpreter
# gatopeich's minimal Javascript interpreter prototype
# Coding this as a prototype for a specific-purpose lightweight Javascript
# engine in C/C++.
# DONE: Tokenizer (except quote parsing)
# DONE: Expression extraction
# DONE: Pretty printer
# next: Interpreter...
@gatopeich
gatopeich / install_Jupyter.sh
Last active March 29, 2024 22:10
Install Jupyter iPython Notebook on Android via Termux
pkg upgrade
# Install runtime deps
pkg install python libzmq libcrypt
# Add build deps
pkg install python-dev libzmq-dev libcrypt-dev clang
pip3 install -U pip
pip3 install pyzmq --install-option="--zmq=/usr/lib"
pip3 install jupyter