0:00 you do four years of high school then you go to university then you get your degree then you go to the internship then you get your job fair you go to the 0:07 job fair you get your job you start as a junior analyst then you become an analyst then you become an associate 0:12 then you become a senior associate then you become a vice president and then you become a senior vice president and then you become a director and then you 0:18 become a managing director and then you become a partner and then you will be happy 0:23 aboard the train everyone's telling you to board the train but there are no train
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
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions |
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
// stitches.config.ts | |
import { createStyled } from '@stitches/react'; | |
export type StitchesConfigsType = Parameters<typeof createStyled>[number]; | |
function getItemOrLastItem<Item extends string | number>( | |
list: Item[], | |
itemIndex: number, | |
): Item | undefined { |
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
javascript: /* debug.css | MIT License | zaydek.github.com/debug.css */ if (!("is_debugging"in window)) { is_debugging = false; var debug_el = document.createElement("style"); debug_el.append(document.createTextNode(`*:not(path):not(g) { color: hsla(210, 100%, 100%, 0.7) !important; background: hsla(211, 80%, 28%, 0.5) !important; outline: solid 1px hsla(210, 100%, 100%, 0.5) !important; box-shadow: none !important; filter: none !important; }`)); } function enable_debugger() { if (!is_debugging) { document.head.appendChild(debug_el); is_debugging = true; } } function disable_debugger() { if (is_debugging) { document.head.removeChild(debug_el); is_debugging = false; } } !is_debugging ? enable_debugger() : disable_debugger(); |