Viewing profile — combocosmo
combocosmo
HN member- Joined
- Sat, Nov 16, 2024, 8:29 AM UTC
- HN karma
- 5
- Public activity
- 5 items
- HN profile
- View on Hacker News ↗
About combocosmo
No profile information was provided.
Recent public activity
-
comment
Comment #48034046
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 tha…
-
comment
Comment #47625583
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!
-
comment
Comment #46600326
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…
-
comment
Comment #45940272
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,…
-
comment
Comment #42155262
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…