Nice! I'm glad I was not the only one frustrated by these and I actually made sth similar just this weekend, also using Groq cause it's super fast as u said. (but haven't published it cause I'm always frustrated about that part of sideprojects :D) https://x.com/Straaajk/status/1875492276715315405
HN user
strajk
4 karma
Posts0
Comments6
No posts found.
Show HN: Filter out engagement bait and politics on your X/Twitter feed 2 years ago
Heya, any plans for context based suggestions – e.g. when in psql, gdb, vim, ...?
How did you instruct Copilot to do the conversion? I've always used it just as a smart auto-complete.
My parents collect cans for a living 5 years ago
How much is a deposit compared to the full price of a drink?
Here in Czechia it's 3czk deposit for ~20czk full drink price and I've never noticed anybody even asking for the bottles, yet alone "stealing" them.
RSSHub: Everything Is RSSible 6 years ago
My favourite rss reader NewsBlur (no affil, just very happy user) allows subscribing to YouTube channels just by entering its URL - no need to digging for RSS feed :)
Python Style Guide from Google 10 years ago
I prefer importing whole modules too. One of the benefit is much easier code reviews:
Imagine this diff in the middle of a file (in Javascript)
if (includes(users, userId)) {
open(load(userId))
}
vs if (_.includes(users, userId)) {
Modal.open(UserApi.load(userId))
}