Skip to content

Instantly share code, notes, and snippets.

View nath1as's full-sized avatar
🌌
...

nath1as

🌌
...
View GitHub Profile
@nath1as
nath1as / treestyletab.css
Created January 14, 2024 10:03
treestyle styles
/* extra styles for proton theme */
@keyframes tab-burst-animation {
}
@keyframes tab-burst-animation-light {
}
@keyframes blink {
}
:root {
[[  ]],
[[ ████ ██████ █████ ██ ]],
[[ ███████████ █████  ]],
[[ █████████ ███████████████████ ███ ███████████ ]],
[[ █████████ ███ █████████████ █████ ██████████████ ]],
[[ █████████ ██████████ █████████ █████ █████ ████ █████ ]],
[[ ███████████ ███ ███ █████████ █████ █████ ████ █████ ]],
[[██████ ████████████ █████████ ████ █████ █████ ████ ██████]],
@nath1as
nath1as / verify.did
Created December 13, 2021 11:35
did verification
did:3:kjzl6cwe1jw1485m03whgpe4s1yrg6gxodktxtrl0rtp6h3zy82dv81vnmsbl7d
// nathias autoexec
// C:\Program Files (x86)\Steam\userdata\69959974\730\local\cfg
echo ">>>>>>>>>>"
echo "L0ad1ng nathias autoexec: ""
echo ">>>>>>>>>>"
// Crosshair
cl_crosshairalpha "255"
cl_crosshaircolor "5"
@nath1as
nath1as / vimium.css
Created September 7, 2021 06:02
vimium css
/* F labels */
div > .vimiumHintMarker {
background: #1c1c1c;
font-size: 12px !important;
border: 0.2em solid #875faf;
border-radius: 0.34em;
box-shadow: 0em 0.1em 0.6em 0.1em rgba(0, 0, 0, 0.4);
padding: 3px;
}
@nath1as
nath1as / vimium-options.json
Last active September 5, 2021 15:58
vimium options
{
"settingsVersion": "1.67",
"exclusionRules": [
{
"pattern": "https?://www.vimgenius.com/*",
"passKeys": "*"
},
{
"pattern": "https?://docs.google.com/*",
"passKeys": "HJKLOohjkl"
@nath1as
nath1as / tst-proton.css
Last active September 4, 2021 19:25
Tree Style Tab
/* extra styles for proton theme */
@keyframes tab-burst-animation {}
@keyframes tab-burst-animation-light {}
@keyframes blink {}
:root {
--favicon-size: 16px;
}
@nath1as
nath1as / keybase.md
Created August 20, 2021 09:42
[keybase proof]

Keybase proof

I hereby claim:

  • I am nath1as on github.
  • I am nathias (https://keybase.io/nathias) on keybase.
  • I have a public key whose fingerprint is 21EF 85BA 8AD5 60F6 D8BF 7189 BBCD D153 4CEC CAA7

To claim this, I am signing this object:

@nath1as
nath1as / nodeOverview1.txt
Last active November 9, 2021 16:32
node CLI overview
# Node CLI
We can just run node as a command to enter REPL, we can run js files, evaluate js strings with the option -e
## Execute
node [options] [V8 options] [script.js | -e "script" | -] [--] [arguments]
We can run a file with node, provide node with -e flag and a string of code to evaluate, or provide code wit hstdin. We can provide multitude of options to node (man node), and arguments to our programs.
@nath1as
nath1as / gitConfig.txt
Last active November 9, 2021 16:34
git config
#.gitcoinfg
[alias]
# Get jira ticket
ticket = "!f() { git rev-parse --abbrev-ref HEAD | grep -Eo '([A-Z]{3,}-)([0-9]+)' -m 1 ; }; f"
# Commit w/ message prefixed with JIRA ticket
cm = "!f() { TICKET=$(git ticket); git commit -m \"$TICKET $1\"; }; f"