Avoid the following in all responses:
Punctuation
- No em dashes. Use commas, periods, or parentheses instead.
Words (avoid entirely)
- honestly
- honest
- defensible
- unpack
| https://www.youtube.com/live/qVRj8-t4PwI?si=2FLmC0tIi8GQs742 | |
| 00:00 MATE - I Usually Don't Do this on the first night | |
| 02:07 Dimension Hopper - Primordial Soup | |
| 04:53 D.Dan - OOOO | |
| 07:12 Mac Declos - Trust your eyes | |
| 10:13 Asquith - Forget the past *** | |
| 12:24 Ida Engelhardt - Cutecore. *** | |
| 16:52 Mac Declos, Lacchesi and ABSL - Murk | |
| 20:26 Peachlyfe - Creeper |
Avoid the following in all responses:
Punctuation
Words (avoid entirely)
| https://drive.google.com/drive/folders/1tDDLRNLAHEVeRqHdze9137Yt1ntPfjAF?usp=sharing |
| # ~/.tmux.conf | |
| # shell / terminal | |
| set -g default-shell /bin/zsh | |
| set -g default-terminal "tmux-256color" | |
| set -ga terminal-overrides ",xterm-256color:Tc" | |
| # behavior | |
| set -g mouse on | |
| set -g mode-keys vi |
| # Warning: This config does not include keys that have an unset value | |
| # $all is shorthand for $username$hostname$localip$shlvl$singularity$kubernetes$nats$directory$vcsh$fossil_branch$fossil_metrics$git_branch$git_commit$git_state$git_metrics$git_status$hg_branch$pijul_channel$docker_context$package$bun$c$cmake$cobol$cpp$daml$dart$deno$dotnet$elixir$elm$erlang$fennel$gleam$golang$gradle$haskell$haxe$helm$java$julia$kotlin$lua$mojo$nim$nodejs$ocaml$odin$opa$perl$php$pulumi$purescript$python$quarto$raku$rlang$red$ruby$rust$scala$solidity$swift$terraform$typst$vlang$vagrant$zig$buf$guix_shell$nix_shell$conda$pixi$meson$spack$memory_usage$aws$gcloud$openstack$azure$direnv$env_var$mise$crystal$custom$sudo$cmd_duration$line_break$jobs$battery$time$status$container$netns$os$shell$character | |
| "$schema" = "https://starship.rs/config-schema.json" | |
| format = """ | |
| [╭╴](fg:arrow)$username$directory$time($git_branch$git_status)($python$nodejs)$cmd_duration | |
| [╰─](fg:arrow)$character""" | |
| right_format = "" | |
| continuation_prompt = "[∙ |
¯_(ツ)_/¯
| # singleton.py | |
| class Logger: | |
| """Simple singleton logger.""" | |
| _instance = None | |
| def __new__(cls): | |
| if cls._instance is None: | |
| cls._instance = super().__new__(cls) | |
| cls._instance.logs = [] | |
| return cls._instance |
Sunk-Cost Fallacy: Feeling like you need to buy the car because you’ve already spent so much time at the dealership.
Anchoring Bias: Getting stuck on the first price you hear and letting it shape all your other decisions.
Confirmation Bias: Only paying attention to information that supports your desire to buy the car you want.
Availability Heuristic: Basing your decision on a recent story or experience, like a friend’s good or bad deal, rather than the full picture.