I hereby claim:
- I am osolmaz on github.
- I am osolmaz (https://keybase.io/osolmaz) on keybase.
- I have a public key ASC8HWS7t9oqqF_chSrKxXCC4x2Xd_GGs-fGYsxdq2sQ1Ao
To claim this, I am signing this object:
// Be on Cursor or VS Code | |
// Cmd+Shift+P -> Preferences: Open Keyboard Shortcuts (JSON) | |
// Append the following shortcut to your shortcuts | |
// Whenever on a git repo hosted on GitHub, run Cmd+Shift+C to copy a permalink to the current file/lines | |
[ | |
{ | |
"key": "cmd+shift+c", | |
"command": "issue.copyGithubPermalink", | |
"when": "editorTextFocus" | |
} |
poetry export --without-hashes --format=requirements.txt | grep -E '^[^# ]' | cut -d ';' -f1 > requirements.txt |
#!/bin/sh | |
LANGUAGE="en_US" | |
app_name="ZOOM VoiceEngine" | |
current_sink_num='' | |
sink_num_check='' | |
app_name_check='' |
curl 'https://tezos-mainnet-conseil-1.kubernetes.papers.tech/v2/data/tezos/mainnet/delegates' -H 'Connection: keep-alive' -H 'Accept: application/json, text/plain, */*' -H 'Origin: https://tezblock.io' -H 'apikey: airgap123' -H 'Content-Type: application/json' -H 'Referer: https://tezos-mainnet-conseil-1.kubernetes.papers.tech/' --data-binary '{"fields":[],"predicates":[{"field":"staking_balance","operation":"gt","set":["8000000000"],"inverse":false}],"orderBy":[{"field":"staking_balance","direction":"desc"}],"limit":1000}' --compressed |
gsettings set org.mate.font-rendering dpi <the_value_you_want> |
for i in *.MP4; do ffmpeg -i $i -c:v libx264 -crf 23 -preset medium -c:a aac -b:a 128k -movflags +faststart -vf scale=-2:720,format=yuv420p -map_metadata 0 out/$i; done |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
a="" | |
b="" | |
for i in $(seq 0 10) | |
do | |
b=$(git diff --shortstat "@{ $i day ago }") | |
if [[ "$b" != "$a" ]]; then | |
echo $(date --date="$i days ago" +%F) $b | |
fi | |
a=$b |
\ProvidesClass{mydiss}[2013/08/21 v1.4 mydiss class (Michael Ummels)] | |
\NeedsTeXFormat{LaTeX2e}[1996/06/01] | |
% Options | |
\newif\if@iso | |
\@isofalse | |
\newif\if@crop | |
\@cropfalse |
class FullPaths(argparse.Action): | |
"""Expand user- and relative-paths""" | |
def __call__(self, parser, namespace, values, option_string=None): | |
setattr(namespace, self.dest, os.path.abspath(os.path.expanduser(values))) | |
def is_dir(dirname): | |
"""Checks if a path is an actual directory""" | |
if not os.path.isdir(dirname): | |
msg = "{0} is not a directory".format(dirname) | |
raise argparse.ArgumentTypeError(msg) |