- ※ yakuake - dropdown terminal (QUAKE-style) with lots of cool settings
- ※ vscodium - open source version of vscode without microsoft telemetry
- notepadQQ - notepad++ alternative
- gitkraken - git client for repo management
- ※ astro neovim - really good neovim config
- NvChad - neovim config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:root { | |
--color-calendar-halloween-graph-day-L1-bg: #631c03; | |
--color-calendar-halloween-graph-day-L2-bg: #bd561d; | |
--color-calendar-halloween-graph-day-L3-bg: #fa7a18; | |
--color-calendar-halloween-graph-day-L4-bg: #fddf68; | |
} | |
/* original data-holiday tag */ | |
/* .ContributionCalendar[data-holiday=halloween] .ContributionCalendar-day[data-level="1"] { */ | |
.ContributionCalendar-day[data-level="1"] { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* https://github.com/josephg/noisejs | |
* A speed-improved perlin and simplex noise algorithms for 2D. | |
* | |
* Based on example code by Stefan Gustavson ([email protected]). | |
* Optimisations by Peter Eastman ([email protected]). | |
* Better rank ordering method by Stefan Gustavson in 2012. | |
* Converted to Javascript by Joseph Gentle. | |
* | |
* Version 2012-03-09 | |
* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// to include in your own project, download and @use the file. | |
// keep the underscore at the beginning of the file name | |
// read more about that here: https://sass-lang.com/documentation/at-rules/use#partials | |
// or | |
// @use 'https://gist.githubusercontent.com/octoshrimpy/b062bbfacbb290b77949f0c26ba8bd81/raw/_lib.scss' as lib | |
// | |
// component { | |
// @include lib.animate; | |
// box-shadow: lib.$shadow-3; | |
// } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @name yoinker | |
* @author octoshrimpy | |
* @authorId 133721498421559296 | |
* @version 0.0.1 | |
* @description yoinks emotes from others, use with yent's emoteReplacer | |
*/ | |
// @todo add setting to auto-grab emotes as they appear | |
// @todo check if emote exists already (url, name, image comparison?) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"highlight.regexes": { | |
// [ ] | |
// @todo this is a test | |
// TODO | |
// [ ] +octoshrimpy test | |
"((?:^[^\\w\\[])*)(\\[\\s]|@todo|TODO)((?:(?:\\s(\\+[^\\s\\W]+))+)?)": { | |
"filterFileRegex": ".*(?<!CHANGELOG.md)$", | |
"decorations": [ | |
{}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"todo-tree.general.statusBar": "tags", | |
"todo-tree.general.tagGroups": { | |
"[ ]": ["@todo", "TODO"], | |
"[o]": ["@doing", "DOING"], | |
"[?]": ["@think", "THINK"], | |
"[@]": ["@bug", "BUG"], | |
"[>]": ["@hack", "HACK"], | |
"[!]": ["@fixme", "FIXME"], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<button id="open">open & edit file</button> | |
<textarea id="code"></textarea> | |
<button id="save">save file and reload</button> | |
<script> | |
// ================== | |
// any js below is needed for it to work. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "joe's machine", | |
"ip": "192.168.99.199", | |
"user": "monitor", | |
"req": { | |
"ip": "for /f \"tokens=4 delims= \" %i in ('route print ^| find \" 0.0.0.0\"') do @echo %i", | |
"mac": "for /F \"tokens=2 delims=:\" %i in ('ipconfig /all ^| find \"Physical \"') do @echo %i" | |
}, | |
"cmds": { | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env sh | |
# Octo's terminal utility installer | |
# Description: Creates a help utility and installs it to /usr/local/bin/guide | |
set -eu # Exit on error or unset vars | |
# Require sudo/root privileges | |
if [ "$(id -u)" -ne 0 ]; then | |
exec sudo "$0" "$@" | |
fi |
NewerOlder