Viewing profile — abhashanand1501
abhashanand1501
HN member- Joined
- Sun, Jun 08, 2025, 3:33 PM UTC
- HN karma
- 31
- Public activity
- 18 items
- HN profile
- View on Hacker News ↗
About abhashanand1501
No profile information was provided.
Recent public activity
-
comment
Comment #48630369
How do you plan to keep it free from ads? I see it has accounts, if it was completely client side, it could have been forever free.
-
comment
Comment #48625755
Do small language models run on cpus or you still need a gpus to run them?
-
comment
Comment #48293568
as a github user, we are paying for the slow git operations through our github action minutes, if someone from GH is here, will you be compensating for it?
-
comment
Comment #46205536
You should look into factory boy (in django). Been using it for 10 years. It helps with this situation. Foofactory() will automatically setup all the foreign key dependencies. It c…
-
comment
Comment #46201271
> The trading system reports an average latency of 10ms Python is a bad choice for a system with such latency requirements. Isn't C++/Rust preferred language for algorithmic tradin…
-
comment
Comment #46178870
We really need this in India. There are 53 million cases which are pending in courts, with over 180k cases open for more than 30 years (see https://en.wikipedia.org/wiki/Pendency_o…
-
comment
Comment #46143128
Can someone explain why letsencrypt certificates have to be 90 days expiry? I know there is automation available, but what is the rationale for 90 days?
-
comment
Comment #46122344
In different regions the price difference is different. In us-east there is a 20% difference, in ap-south it is 50%. You can check for fargate ecs pricing for example.
-
comment
Comment #46120683
One of the easiest hack to reduce your AWS bills is to migrate from x86 to arm64 CPU. Performance difference is negligible, and cost can be upto 50% lower for arm machines. This is…
-
comment
Comment #46089106
My advice - use same rigor as other software development for a RAG application. Have a test suite (of say 100 cases) which says for this question correct response is this. Use an L…
-
comment
Comment #46087164
There are two possibilities 1. The getters and setters are not called anywhere in application logic. In that case, delete the getters / setters and get to 100%. 2. The getters and …
-
comment
Comment #46086464
> Am I suggesting 100% test coverage? No, I’m not suggesting it. I’m demanding it. Every single line of code that you write should be tested. Period. This is from uncle bob. I hate…
-
comment
Comment #46084916
>In spherical geometry, the interior angles of a triangle add up to more than π. And in fact you can determine the area of a spherical triangle by how much the angle sum exceeds π.…
-
comment
Comment #46080385
I like the 100% philosophy for coding: 1. 100% code coverage 2. 100% branch coverage 3. 100% lint (without noqa) 4. 100% type check pass(for python/js) 5. 100% documentation covera…
-
comment
Comment #46080236
We are developing using sqlite to transfer configurations from uat to production environment. Since the configurations are already saved in a postgres table in uat, moving some con…
- story
-
comment
Comment #44217599
In fact O(n^2) is exponentially more than O(log n).
-
comment
Comment #44217595
Lot of comments complaining that going from O(n^2) to O(log n) is not an exponential improvement, but it is indeed an exponential improvement. In fact O(n) is exponentially more th…