Readit News logoReadit News
overflowy commented on     · Posted by u/taskset
taskset · 2 days ago
Source is now on the site: [bensantora.com/downloads/fftool-source.tar.gz] and .zip. Build instructions are in the article.
overflowy · a day ago
Awesome, appreciate it :)
overflowy commented on Hammerspoon   github.com/Hammerspoon/ha... · Posted by u/tosh
overflowy · a day ago
I use this to remap app keys:

    local appHotkeys = {}

    local function remapAppHotkey(appName, fromMods, fromKey, toMods, toKey, delay)
        if not appHotkeys[appName] then
            appHotkeys[appName] = {}
        end
        local hotkey = hs.hotkey.new(fromMods, fromKey, function()
            hs.eventtap.keyStroke(toMods, toKey, delay or 0)
        end)
        table.insert(appHotkeys[appName], hotkey)
    end
    
    local appWatcher = hs.application.watcher.new(function(appName, eventType)
        local hotkeys = appHotkeys[appName]
        if not hotkeys then return end
        for _, hotkey in ipairs(hotkeys) do
            if eventType == hs.application.watcher.activated then
                hotkey:enable()
            elseif eventType == hs.application.watcher.deactivated then
                hotkey:disable()
            end
        end
    end)
    
    appWatcher:start()

    -- Remap app hotkeys
    remapAppHotkey("Finder", { "cmd" }, "q", { "cmd" }, "w", 0.5)
    ... etc ...

overflowy commented on     · Posted by u/taskset
overflowy · 2 days ago
> terminal UI written in Go

> Linux only

Any particular reason for that? Are you using specific Linux APIs?

Just to clarify, this looks like a super helpful utility, something that I would personally use. The issue is that I noticed the installation instructions include a link to a prebuilt binary hosted on your website. Without providing access to the source code, you're asking users to trust executing an unknown binary on their system.

overflowy commented on Show HN: Calyx – Ghostty-Based macOS Terminal with Liquid Glass UI   github.com/yuuichieguchi/... · Posted by u/yuu1ch13
overflowy · 3 days ago
You should post a screenshot in the README to give people an idea of what the terminal looks like.
overflowy commented on Parsync, a tool for parallel SSH transfers – 7x faster than rsync   github.com/AlpinDale/pars... · Posted by u/AlpinDale
overflowy · 8 days ago
A few days ago I built https://github.com/overflowy/parallel-rsync to scratch my own itch: I realized I could just launch multiple rsync instances in parallel to speed things up.
overflowy commented on Show HN: I spent 10k hours building the perfect language learning app   phrasing.app/... · Posted by u/barrell
overflowy · 2 months ago
Looks really expensive for a language learning app.

Deleted Comment

overflowy commented on Replacing JavaScript with Just HTML   htmhell.dev/adventcalenda... · Posted by u/soheilpro
overflowy · 2 months ago
HTML and JavaScript serve distinct purposes, making better or worse comparisons logically flawed. Complex/interactive web apps requires JavaScript, period. Attempting to build sophisticated apps solely through HTML (looking at you HTMLX) eventually hits a functional ceiling.

u/overflowy

KarmaCake day24November 4, 2025View Original