Hacker Newsnew | past | comments | ask | show | jobs | submit | more quinncom's commentslogin

Is there an about page or a repo for this tool? (I see there’s a video, but I’m on mobile.)


Charles Schwab uses this. I was able to extract the TOTP secret during the set up process to use in my preferred auth app.


Readwise recently added a “chat with highlights” feature. You can save tweets as highlights by bookmarking them on X, then search and chat with them on Readwise.



Is Ory also used for auth in the ChatGPT macOS app? I regularly get login errors there.


fd is probably better for most tasks, but sometimes it seems more cumbersome than find. E.g., to delete all files inside a cache directory, this is the simplest syntax I could find:

fd -t f -X rm {} \; ^ cache

Which makes me really nervous, so usually I fall back to using find:

find cache -type f -delete

Maybe this is foolproof for me only because I’ve been using find for decades. Is there a version of this for fd that inspires more confidence?


I would suggest

    fd -t f . cache -X rm --
Which reads as find "any file", "matching .", "in directory cache", then "execute rm -- followed by an argument list of all found files".

This ensures even if you have filenames starting with - they won't be interpreted as options for rm. For even more sanity of mind you may want to turn on -a for absolute paths, although I don't see an example right now where using relative paths would go wrong.


Yes, that looks safer. I didn't realize I could put the `-X` option at the end. The man page says:

Usage: fd [OPTIONS] [pattern] [path]...

So, I presumed the path had to go last.


Two ongoing projects to solve this:

Qwant and Ecosia, two European search engines, announced on October 24, 2023, a partnership to develop a European search index to lessen their dependence on US tech giants Google and Microsoft. https://insidetelecom.com/qwant-and-ecosia-are-building-an-i...

For the OpenWebSearch.eu initiative, 14 renowned European research and computer centers from 7 countries have joined forces to develop an open European infrastructure for web search https://openwebsearch.eu/


Matt Kiser’s WTFJHT delivers useful daily summaries of all significant actions out of the White House. Here’s yesterday’s edition: https://whatthefuckjusthappenedtoday.com/2025/02/03/day-1476...


Very cool! I’ve added the following as a redirect in Kagi:

^https://(www\.)?reuters\.com|https://neuters.de


Does that include the 20 minutes it takes to smoke a cigarette? So, the net loss could be 40 minutes?


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: