Skip to content

Instantly share code, notes, and snippets.

View kosty's full-sized avatar

Arsen Kostenko kosty

  • San Francisco, CA
View GitHub Profile
@kosty
kosty / gist:65502964511ab69bd6f542563403e852
Last active January 4, 2024 23:50
Resume topic categorization
/**
* This function echoes back the input passed to it.
* @param summary_of_topics_in_cv Summary of experiences shared in resume
* @param topic "frugality", "creativity", "resistance to tension", "perseverance". These are the only values allowed, will throw otherwise. The expanded definition of these terms are "Frugality": In tech startups, frugality means optimizing resource use, minimizing waste, and creatively stretching a limited budget to achieve business goals and sustain operations until profitability. "Creativity": Creativity in tech startups involves innovative problem-solving, developing unique products or services, and thinking outside the box to overcome challenges and capture market opportunities. "Resistance" to Tension**: Resistance to tension in tech startups refers to the ability to remain calm, focused, and productive under high-stress situations, such as tight deadlines, uncertain funding, or rapid scaling demands. "Perseverance": Perseverance in tech startups is the relentless pursuit o
@kosty
kosty / .gitconfig
Created October 15, 2020 01:53
A good-enough .gitconfig
[push]
default = current
[merge]
conflictstyle = diff3
######
# Some hints on using vimdiff
# Following three keys (two keystrokes) `Ctrl-w =` make all of the windows equal
# `Ctrl-w j` jumps to lower window, which is MERGED
# `:diffget RE` applies remote
@kosty
kosty / userChrome.css
Created March 19, 2018 16:33
Firefox Quantum v59.0.1 + Tree Style Tabs + no title bar
/*
* Tree Style Tabs Wiki
*/
/* https://github.com/piroor/treestyletab/wiki/Code-snippets-for-custom-style-rules#hide-horizontal-tabs-at-the-top-of-the-window-1349 */
#main-window[tabsintitlebar="true"]:not([extradragspace="true"]) #TabsToolbar {
opacity: 0;
pointer-events: none;
}
#main-window:not([tabsintitlebar="true"]) #TabsToolbar {