Random Link ¯\_(ツ)_/¯ | ||
Aug 31, 2024 | » | NBA 2K25: MyNBA
11 min; updated Dec 15, 2024
MyNBA is my favorite playing mode in NBA 2K. Starting out as the GM of the Seattle Supersonics in 1983, how well can I steer the franchise? Playing all 82 games per season would need \(82 \text{ games/season} \times 41 \text{ seasons} \times 20 \text{ min/game} \approx 47 \text{ days}\) to catch up to today’s NBA and that’s not accounting for the playoffs. Simulating games is the way to go; might help improve my understanding of the game.... |
Apr 20, 2024 | » | Of Builds and Bundlers
3 min; updated Apr 20, 2024
Moving to TypeScript entails configuring how the JavaScript will be eventually consumed by both the server and the client. Separating the Client Bundle from the Server Bundle The server code runs in Node while the client code runs in the browser. advises separating the configurations for advantages like faster type-checking and compiling, lower memory usage when using an editor, and improved enforcement of the logical groupings of your program.... |
Dec 21, 2021 | » | We The Consumers
5 min; updated Sep 5, 2022
Product Differentiation and Price Discrimination Product differentiation seeks to distinguish a product from a competing product to make it more attractive to a specific target market. Price discrimination occurs when the same goods/services are sold at different prices from the same company. The Captain Samuel Vimes “Boots” theory of socio-economic unfairness: the rich man who bought the high quality $50 pair of boots would still be using them in 10 years, while the poor man who buys the $10 pair would have spent $100 on boots in the same time, and still be worse off.... |
Feb 23, 2022 | » | AoC 2021 Day 03: Binary Diagnostic
14 min; updated Feb 23, 2022
Day 3 - Advent of Code 2021. adventofcode.com . Accessed Feb 23, 2022. Problem Description Part One The submarine has been making some odd creaking noises, so you ask it to produce a diagnostic report just in case. The diagnostic report (your puzzle input) consists of a list of binary numbers which, when decoded properly, can tell you many useful things about the conditions of the submarine.... |
Feb 19, 2022 | » | Learning Haskell via AoC 2021
17 min; updated Feb 19, 2022
This page contains remarks on Haskell that I encountered when working with source files that span multiple AoC 2021 problems. and have Haskell solutions. It’ll be nice to compare how they solved the problems. I don’t want to end up perfecting the wrong approach! Setting Up Haskell Env for AoC To manage dependencies, Cabal and Stack are pretty popular. Stack incorporates the Cabal build system.... |