#til Wow, it turns out browsers really made me think the tabs are important. It feels as if my brain has been using them as a todo-list proxy, making me feel I get things done by closing tabs and working through them. After hiding tabs in the interface and relying on a todo list, my day seems more purposeful.
Tagged with #til
21 results found.
-
-
If only delivery companies would deliver parcels to post offices, who then deliver all the parcels in one go once a day. Update: I guess that's a PO Box does #til.
-
#til It turns out that Jira, the only web software that you need to upgrade your fibre connection for, is a lot faster if you bring your own GUI.
-
JQL syntax in JIRA is such that negative filtering, eg
Labels != Refinementalso filters out all the tickets without any value. #til -
Any developers using bash/zsh shell and git can use this code snippet to effectively
git fetchwhen entering a directory:function chpwd { GIT_ROOT=$(git rev-parse --show-toplevel 2>/dev/null) if [ -n "$GIT_ROOT" ]; then FETCH_STAMP_FILE="$HOME/.cache/chpwd_git_fetch_$(echo "$GIT_ROOT" | tr '/' '_')" if [ ! -f "$FETCH_STAMP_FILE" ] || [ $(find "$FETCH_STAMP_FILE" -mmin +10) ]; then ({ git fetch --all --quiet && touch "$FETCH_STAMP_FILE"; } > /dev/null 2>&1 &) fi fi }This snippet acts like a lightweight background updater, seamlessly integrating with your shell navigation to keep your local metadata fresh, reduce manual fetches and out of date merges. #til
-
JAI is a new sandbox for AI agents. It has installation instructions for Arch Linux, but I managed to compile it on Ubuntu 24.04 using a little help from LLM, creating these instructions in the process. After setup, you just prefix the cli command with
jai. Read about the security model #til -
#til in iOS, emails can be forwarded as an attachment, but it’s not very discoverable
-
#TIL
fuser -k 8747/tcpreturns the process that can be killed in its output. -
#TIL The order of
rsyncparameters are significant.--include / --excludeact on each other. -
#TIL On the Safari start page on iOS there’s an edit tab at the bottom where you can disable sections like suggestions.