Make Git Recognize File Name Changes

Apparently, changing a character in a file name from uppercase to lowercase is not detected by git. For example, changing NoteTaker.ts to noteTaker.ts is not registered as a change. To fix this (obviously bad default), you can run this in your terminal: git config core.ignorecase false

February 8, 2025 · 1 min · 46 words · Me

Preview Images vs Code

I accidentally discovered that if you hover over the image link in VS Code you can preview the image. Ctrl + clicking takes you to the image:

February 8, 2025 · 1 min · 27 words · Me

Dots per Inch

My Corsair Scimitar mouse started acting up this week so I had to completely deconstruct it to clean out two small cats worth of fur from around the scroll wheel. During my internet travels related to this procedure, I came across the acronym DPI, or dots per inch, that many mouses use to quantify their sensitivity. A low dots per inch value (ex. 800) results in slower, more precise cursor movements when the mouse moves in the physical world. A higher value obviously means the opposite - your cursor zings across the screen when the mouse is nudged one way or another. You can typically adjust this value using your mouse’s software provider and/or by using the mouse settings on your computer. ...

February 8, 2025 · 1 min · 122 words · Me

Promise Race Typescript

There is a static method in JavaScript called Promise.race() which “takes an iterable of promises as input and returns a single Promise that resolves with the first promise that settles”. This provides an easy way to set maximum timeouts on your functions: const timeoutPromise = new Promise<boolean>((resolve) => { setTimeout(() => { console.log("EOU detection timed out after", TIMEOUT_MS, "ms"); resolve(true); }, TIMEOUT_MS); }); const detectionPromise = (async () => { ... }); return Promise.race([timeoutPromise, detectionPromise]);

February 8, 2025 · 1 min · 75 words · Me

Fast Swap vs Code Themes

In VS Code, you can use the Browse Color Themes in Marketplace command to quickly peruse through hundreds of popular VS Code themes. Just use the up and down arrow keys to preview each theme in the list. Hit enter to download and apply it:

February 8, 2025 · 1 min · 45 words · Me

Quote: William Shakespeare the Fool

The fool doth think he is wise, but the wise man knows himself to be a fool. William Shakespeare

February 8, 2025 · 1 min · 19 words · Me

Exa AI Search in Edge

As I’ve discussed in the past, Microsoft Edge is a superior browser and in supporting that title, it allows you to add multiple search engines to your address bar. This week, I added Exa.ai as an option with the prefix exa. Note In the past, I’d prefix my prefixes with @ (ex. @ai, @exa, @x) but its faster to omit that and use the prefix directly. ...

February 8, 2025 · 1 min · 66 words · Me

Open VS Code in Same Window

In the past, I would always open new projects in VS code by navigating to them and running the simple and famous command: code . This command opens a new window with your project, leaving everything else untouched except for your system’s memory usage. This week, I finally decided to see what else was possible and it turns out you can replace the current window with the new one by appending the -r flag to the command: ...

February 8, 2025 · 1 min · 95 words · Me

Quote Andre Weil God Exists

God exists since mathematics is consistent, and the Devil exists since we cannot prove it. André Weil

February 8, 2025 · 1 min · 17 words · Me

Use as Const Typescript

You can tell TypeScript to treat a string value as a literal type using the as const phrase. For example, if you have an interface like this: export interface Message { role: "user" | "assistant" | "tool"; content: string; } You can add objects to it like this: const updatedMessages: Message[] = [ ...currentMessages, { role: "assistant", content: baseResponse, }, ...(functionResponse ? [{ role: "assistant" as const, content: functionResponse }] : []), ];

February 8, 2025 · 1 min · 73 words · Me