Ask HN: What are tools you have made for yourself since the advent of AI?
341–350 of 913 posts
Re: Ask HN: What are tools you have made for yourself since the advent of AI?
#342Re: Ask HN: What are tools you have made for yourself since the advent of AI?
#343I can once again write Clojure apps for my phone, which is fun to do by hand, unlike more conventional tools for writing Android apps.
Re: Ask HN: What are tools you have made for yourself since the advent of AI?
#344Re: Ask HN: What are tools you have made for yourself since the advent of AI?
#345 ;; Written by Claude 2026-06-06
(defun my/org-to-markdown-clipboard ()
"Export org region (or buffer) to Markdown and copy to clipboard.
With no active region, exports the whole buffer."
(interactive)
(require 'ox-md)
(let* ((text (if (use-region-p)
(buffer-substring-no-properties (region-beginning) (region-end))
(buffer-substring-no-properties (point-min) (point-max))))
(md (org-export-string-as text 'md t '(:with-toc nil
:with-author nil
:with-date nil
:with-title nil))))
(kill-new md)
(message "Markdown copied (%d chars)" (length md))))
(with-eval-after-load 'org
(define-key org-mode-map (kbd "C-c m") #'my/org-to-markdown-clipboard))Re: Ask HN: What are tools you have made for yourself since the advent of AI?
#346A git worktree shell utility to quickly switch/manage git worktrees, and a neovim telescope picker which switches all the loaded buffers into the worktree version: https://github.com/jasonwoodland/wt
A terminal multiplexor plugin for neovim: https://github.com/jasonwoodland/terminal.nvim
A neovim session management shell utility (and telescope picker) to switch neovim sessions—no need for tmux or screen anymore: https://github.com/jasonwoodland/nvs
A NeXTSTEP-inspired menu for macos called NeXTMenus: https://github.com/jasonwoodland/NeXTMenus
A custom harness for pi agent which implements strict plan/review/implement iterative cycles and approval gating
A dynamic wallpaper utility for macOS changes the wallpaper when switching between light and dark mode — also useful for setting tiled bitmap backgrounds: https://github.com/jasonwoodland/macos-dynamic-wallpaper
A small macOS utility that dims the screen on a schedule, reminding me to rest my eyes: https://github.com/jasonwoodland/EyeSaver
Re: Ask HN: What are tools you have made for yourself since the advent of AI?
#347A weight lifting app. I’ve paid for, and used, others over the years, but I always wanted to customize them in some way just for me. So, I just decided to create one the other day (used antigravity CLI) and I’m hosting it on Vercel as a PWA. I’m enjoying it so far and see a lot of potential with making hyper-personal software moving forward.
Re: Ask HN: What are tools you have made for yourself since the advent of AI?
#348Well, I've been pretty active in our rec baseball team for the past few seasons, so: 1) App to help my son and other kids learn baseball IQ, and 2) Streaming app to compete against GameChanger. It's been refreshing to say the least. :)
Re: Ask HN: What are tools you have made for yourself since the advent of AI?
#349here are a few i have put time and effort into. these are not “vibe coded”, but an agent was utilized at points to save copious amounts of time implementing my architectural decisions; my schedule is pretty slammed as is. https://mithraeum.studio - local first agent and editor in C, also a few models on HF (mainly jsut qwen wrapped atm but working on from scratch) https://fieldopt.dev - SaaS for dispatching jobs to t…
>> an agent was utilized at points to save copious amounts of time So ……. vibe coded.
Re: Ask HN: What are tools you have made for yourself since the advent of AI?
#350I started a new job that requires a much more locked-down laptop than I'm used to. No macOS App Store, no random 3rd party apps. I miss a lot of the convince apps I used to use HOWEVER we have unlimited access to Claude CLI. I've been able to mostly one-shot working replacements for Alfred and a meeting reminder app called `In Your Face`. My own Alfred replacement is actually better for me, it's tailored to exactly h…
What type of Alfred functionality did you use. I entertained doing the same thing.