I hereby claim:
- I am izzqz on github.
- I am izzqz (https://keybase.io/izzqz) on keybase.
- I have a public key whose fingerprint is 83F9 7758 7836 3731 9C7F 9900 630D 8626 8AFE 5D31
To claim this, I am signing this object:
-- Source: http://tylerneylon.com/a/learn-lua/ | |
-- Two dashes start a one-line comment. | |
--[[ | |
Adding two ['s and ]'s makes it a | |
multi-line comment. | |
--]] | |
---------------------------------------------------- |
@echo off | |
SET inputFile="%~1" | |
SET outputFile="%~p1%~n1 (COMPRESSED).mp4" | |
ECHO Compressing... | |
ffmpeg -y ^ | |
-hide_banner ^ | |
-vsync 0 ^ | |
-hwaccel cuda ^ |
name "izzqz" | |
cl_fovScale "1.47142857143" | |
mouse_sensitivity "1.598601" | |
m_acceleration "0" | |
mouse_use_per_scope_sensitivity_scalars "0" | |
mouse_zoomed_sensitivity_scalar_0 "1.0" | |
mouse_zoomed_sensitivity_scalar_1 "1.0" | |
mouse_zoomed_sensitivity_scalar_2 "1.0" | |
mouse_zoomed_sensitivity_scalar_3 "1.0" |
https://open.kickasstracker.com:443/announce | |
https://tracker.bt-hash.com:443/announce | |
https://182.176.139.129:6969/announce | |
udp://zephir.monocul.us:6969/announce | |
udp://tracker.dutchtracking.com:6969/announce | |
https://grifon.info:80/announce | |
https://tracker.parrotsec.org:443/announce | |
https://tracker.moxing.party:6969/announce | |
https://tracker.ipv6tracker.ru:80/announce | |
https://tracker.fastdownload.xyz:443/announce |
I hereby claim:
To claim this, I am signing this object:
Press Ctr + Shift + j
to open devtools console in crostini terminal.
Paste this to use Jetbrais Mono
with ligatures:
term_.prefs_.set('font-family', 'JetBrains Mono Nerd Font, monospace');
term_.prefs_.set('user-css-text', '@font-face {font-family: "JetBrains Mono Nerd Font"; src: url("https://raw.githubusercontent.com/ryanoasis/nerd-fonts/master/patched-fonts/JetBrainsMono/Ligatures/Regular/JetBrainsMonoNerdFont-Regular.ttf"); font-weight: normal; font-style: normal;} x-row {text-rendering: optimizeLegibility;font-variant-ligatures: normal;}')
/** | |
* Telegram bot API wrapper | |
* | |
* @author @izzqz | |
*/ | |
const bot = new Proxy(new String(BOT_TOKEN), { | |
get: (token, method) => (params) => fetch(`https://api.telegram.org/bot${token}/${method}?${new URLSearchParams(params)}`), | |
}); | |
// Token can be env variable, global and etc |
Usage: arc | |
[ ping [ NETWORK ] [ <ip address> | <hostname> ] | | |
http [ NETWORK ] <url> | | |
dns [ NETWORK ] <domain> | | |
proxy <url> | | |
list [ networks ] | | |
stats [ sockets | traffic ] | |
] | |
where NETWORK := [ wifi | eth | ethernet | cell | cellular | vpn ] |
#!/bin/bash | |
# To use this pipe i3bar to stdin | |
# Example i3stauts-rs | ./i3bar-parse.sh | |
while read line; do | |
echo "$line" | jq -r '.[].full_text' 2>/dev/null | tr '\n' ' ' | grep -v '^$' | |
done |