Skip to content

Instantly share code, notes, and snippets.

View kleutzinger's full-sized avatar

Kevin Leutzinger kleutzinger

View GitHub Profile
#!/usr/bin/env python3
"""invoke magic spells from magic words inside a file
magic words are defined thusly: (must be all caps)
#__MAGICWORD__# echo 'followed by a shell command'
put something of that format inside a file to set up running that command
additionally, #__file__# will be substituted with the path of the file this is called on
def rotate_left_1(A):
"rotate in place once to the left (as if k = 1)"
for i in range(len(A) - 1):
A[i], A[i + 1] = A[i + 1], A[i]
def rotate_right_1(A):
"rotate in place once to the right (as if k = -1)"
for i in range(len(A) - 1):
A[i], A[i - 1] = A[i - 1], A[i]
@kleutzinger
kleutzinger / most_common_shell_commands.py
Last active February 27, 2021 08:55
The 40 most common fish shell commands run by me from Nov 2020 to Feb 2021
from collections import Counter
from pprint import pprint
seen = Counter()
with open("/home/kevin/.local/share/fish/fish_history") as f:
for i in f.readlines():
if i.startswith("- cmd: "):
words = i.split(" ")
cmd = words[2]
if cmd == "sudo" and len(words) > 3:
a52dec 0.7.4-11
aalib 1.4rc5-14
accountsservice 0.6.55-3
acl 2.3.1-1
adobe-source-code-pro-fonts 2.038ro+1.058it+1.018var-1
adwaita-icon-theme 41.0-1
agg 2.5-11
alembic 1.8.3-2
alsa-card-profiles 1:0.3.43-1
alsa-firmware 1.2.4-2
@kleutzinger
kleutzinger / test.fish
Created January 23, 2021 04:34
fish script
echo hi
for i in (ls)
echo $i
end

const express = require('express'); const app = express();

app.get('/', (req, res) => { res.send(Hello ${req.}); });

app.listen(3000);