The llms.txt standard defines a way to publish docs in markdown for loading into context windows.
I made a quick Sphinx extension that makes it easy for you to do this!
github.com/jacobtomlins...
The llms.txt standard defines a way to publish docs in markdown for loading into context windows.
I made a quick Sphinx extension that makes it easy for you to do this!
github.com/jacobtomlins...
Hope to see lots of folks there!
cfp.pydata.org/london2025/t...
Hope to see lots of folks there!
cfp.pydata.org/london2025/t...
lightgbm.readthedocs.io/en/latest/In...
lightgbm.readthedocs.io/en/latest/In...
It's getting harder and harder to fight the pressure to switch to a Chrome based browser.
It's getting harder and harder to fight the pressure to switch to a Chrome based browser.
@joshwcomeau.com
www.joshwcomeau.com/blog/the-pos...
@joshwcomeau.com
www.joshwcomeau.com/blog/the-pos...
I love the idea of leveraging LLMs locally in a workflow without needing to call out to a third-party API.
jacobtomlinson.dev/posts/2025/g...
I love the idea of leveraging LLMs locally in a workflow without needing to call out to a third-party API.
jacobtomlinson.dev/posts/2025/g...
The mkdir command can make new directories, and the -p flag lets you created nested directories in one go.
jacobtomlinson.dev/blog/100-day...
The mkdir command can make new directories, and the -p flag lets you created nested directories in one go.
jacobtomlinson.dev/blog/100-day...
It tried to fix them a couple of times and when it couldn't it gave up and decided to skip pre-commit altogether 😅
It tried to fix them a couple of times and when it couldn't it gave up and decided to skip pre-commit altogether 😅
The touch command can be used to create a new file or update the modified date of an existing file.
jacobtomlinson.dev/blog/100-day...
The touch command can be used to create a new file or update the modified date of an existing file.
jacobtomlinson.dev/blog/100-day...
The link or `ln` command is used commonly for creating symbolic links, and can also be used for creating hard links.
jacobtomlinson.dev/blog/100-day...
The link or `ln` command is used commonly for creating symbolic links, and can also be used for creating hard links.
jacobtomlinson.dev/blog/100-day...
It was tables! This was before CSS layouts. You would put everything inside a table and manage your columns and rows that way.
It was tables! This was before CSS layouts. You would put everything inside a table and manage your columns and rows that way.
jacobtomlinson.dev/posts/2025/w...
jacobtomlinson.dev/posts/2025/w...
The `true` command does nothing, but always returns `0`. Useful when you use `set -e` in a script but still allow a specific command to fail.
jacobtomlinson.dev/blog/100-day...
The `true` command does nothing, but always returns `0`. Useful when you use `set -e` in a script but still allow a specific command to fail.
jacobtomlinson.dev/blog/100-day...
The `rm` command removes a file. Combining the flags `-r` and `-f` can result in removing your productivity for an entire day.
jacobtomlinson.dev/blog/100-day...
The `rm` command removes a file. Combining the flags `-r` and `-f` can result in removing your productivity for an entire day.
jacobtomlinson.dev/blog/100-day...
The `dir` command is effectively an alias to `ls -C -b` which forces multiple columns and escapes special characters.
It exists mostly to be compatible with other OSs like DOS and Windows.
jacobtomlinson.dev/blog/100-day...
The `dir` command is effectively an alias to `ls -C -b` which forces multiple columns and escapes special characters.
It exists mostly to be compatible with other OSs like DOS and Windows.
jacobtomlinson.dev/blog/100-day...
Moving a file with `mv` will rename a file if the move is on the same disk, or copy and then delete it if the destination is on another disk.
jacobtomlinson.dev/blog/100-day...
Moving a file with `mv` will rename a file if the move is on the same disk, or copy and then delete it if the destination is on another disk.
jacobtomlinson.dev/blog/100-day...
One of the first commands you will ever use is `ls` to list the files in a directory.
Here are my most used `ls` aliases.
jacobtomlinson.dev/blog/100-day...
One of the first commands you will ever use is `ls` to list the files in a directory.
Here are my most used `ls` aliases.
jacobtomlinson.dev/blog/100-day...
The copy command `cp` allows you to copy a file from one place to another. I commonly use the `-R` flag to copy a directory recursively and have used the `-L` flag to copy symlinked files too.
jacobtomlinson.dev/blog/100-day...
The copy command `cp` allows you to copy a file from one place to another. I commonly use the `-R` flag to copy a directory recursively and have used the `-L` flag to copy symlinked files too.
jacobtomlinson.dev/blog/100-day...