Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
combocosmo
searching PlanetScale…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
3 ms
·
1.
▲
by
combocosmo
5mo ago
It's a unique idea that I could see being useful in select situations. The reliance on wearable microphones sounds like a downside. Also I guess this might be annoying for pets that can hear well beyond 20 kHz.
2.
▲
by
combocosmo
6mo ago
Can you make some of my repeating settings savable? If I have to send invoices to 5 clients I'd prefer to not have to fill in the same stuff over and over again!
3.
▲
by
combocosmo
9mo ago
Nice project! I built a CLI budgeting project a long time ago, and what made me stop using my own project was the lack of automated integration with my bank accounts. At that point I had many credit cards, multiple bank accounts, in differe
4.
▲
by
combocosmo
11mo ago
Of course a bit anecdotal, but not once has either Gemini or ChatGPT suggested me anything with eval or shell=True in it for Python. Admittedly I only ask it for specific problems, "this is your input, write code that outputs that"
5.
▲
by
combocosmo
2y ago
I've always liked scatter solutions for these kind of problems: import numpy as np def scatter_mean(index, value): sums = np.zeros(max(index)+1) counts = np.zeros(max(index)+1) for i in range(len(index)):