atlas news
    
Peterbe
14  janvier     20h06
How I run standalone Python in 2025
   uv run python . with requests python to quickly start a Python interpreter with the requests package installed without creating a whole project.
30  décembre     23h48
My 2024 golf goals
   I beat my golf goals for , made up some new during the year, and have thoughts about .
13  décembre     19h13
How I built an index of my blog posts on my GitHub profile page
   If you go to https: github.com peterbe it lists the most recent blog posts here on my blog. The page is rebuilt every hour using GitHub Actions. This blog post is about how I built that, so that you can build something just like it. In case you don’t have access or it’s quicker to look at a...
10  décembre     13h44
Run TypeScript in Node without extensions
   You can use node experimental strip types to run TypeScript files without an extension. And it’s fast.
18  novembre     16h20
An ideal pattern to combine React Router with TanStack Query
   If you use loaders in React Router and have them start XHR requests on the same QueryClient you use in your components, you can start API requests before you render the React page. This makes the page feel faster to load because you can have the back end data ready for your eyes to feast on sooner.
08  novembre     17h06
brotli static in Nginx
   apt install libnginx mod http brotli static
25  octobre     13h07
Object.keys to return the known strings of an object in TypeScript
   Use keyof typeof myObject to get the keys as an list of strings that are the keys of an object.
22  octobre     14h14
How I make my Vite dev server experience faster
   Use server.warmup.clientFiles to make Vite get to work on transforms as soon as possible, rather than on demand. See what’s going on using vite debug transform
16  octobre     12h28
How to extend a function in TypeScript without repeating the signature types
   Use the Parameters to be able to extend or control the signature of a function you don’t want to spell out.
15  octobre     11h49
Trying out the new Bun Compile to bytecode
   Bun . . added a bytecode option to bun build and it does appear to make the executable faster