If you have uv installed (and you should!), you can install llm globally in a uv-managed tool environment with:
uv tool install llmIf you want to use models other than OpenAI models, you'll need some extensions:
| // I'm tired of extensions that automatically: | |
| // - show welcome pages / walkthroughs | |
| // - show release notes | |
| // - send telemetry | |
| // - recommend things | |
| // | |
| // This disables all of that stuff. | |
| // If you have more config, leave a comment so I can add it!! | |
| { |
...and obviously we're building a workaround. But I'm absolutely flabbergasted that a standard <input type="date"> HTML field, in a standard browser, from a company that bases its reputation good design, could be so dreadful.
I'm the developer for a startup that sells a genetic test to recommend medications for high blood pressure. For medical reasons we need to know our customers' birth date. Most of our customers are in their 60s or older. We've found that many of them use iPads or iPhones. And they're the ones who complain to our customer support that our site is unusable.
| #------------------------------------------------------------------# | |
| #- Clear-GlobalWindowsCache # | |
| #------------------------------------------------------------------# | |
| Function Clear-GlobalWindowsCache { | |
| Remove-CacheFiles 'C:\Windows\Temp' | |
| Remove-CacheFiles "C:\`$Recycle.Bin" | |
| Remove-CacheFiles "C:\Windows\Prefetch" | |
| C:\Windows\System32\rundll32.exe InetCpl.cpl, ClearMyTracksByProcess 255 | |
| C:\Windows\System32\rundll32.exe InetCpl.cpl, ClearMyTracksByProcess 4351 | |
| } |
| #################################################################################################### | |
| # dotNetDave's (David McCarter) Editor Config - dotNetTips.com | |
| # Updates to this file are posted quarterly at: https://bit.ly/EditorConfig5 | |
| # Updated May 1, 2025 | |
| # Code performance book is available at: https://bit.ly/DotNetCodePerf4 | |
| # Coding standards book is available at: https://bit.ly/CodingStandards8 | |
| #################################################################################################### | |
| root = true |
| # If you, like me, have all of your various source-code-like projects in ~/src/ | |
| # this is how to give yourself per-project shell history. | |
| # | |
| # I wish I'd done this years ago. | |
| # | |
| # First, in your .bashrc file, you redefine the cd, pushd and popd builtins to be "do the builtin bit, | |
| # then do one other thing (set_src_history.sh, below) like so: | |
| cd () { |
| # Description: Boxstarter Script | |
| # Author: Jess Frazelle <[email protected]> | |
| # Last Updated: 2017-09-11 | |
| # | |
| # Install boxstarter: | |
| # . { iwr -useb http://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force | |
| # | |
| # You might need to set: Set-ExecutionPolicy RemoteSigned | |
| # | |
| # Run this boxstarter by calling the following from an **elevated** command-prompt: |
FWIW: I (@rondy) am not the creator of the content shared here, which is an excerpt from Edmond Lau's book. I simply copied and pasted it from another location and saved it as a personal note, before it gained popularity on news.ycombinator.com. Unfortunately, I cannot recall the exact origin of the original source, nor was I able to find the author's name, so I am can't provide the appropriate credits.