Viewing profile — alzoid
alzoid
HN member- Joined
- Thu, Sep 15, 2016, 10:17 AM UTC
- HN karma
- 65
- Public activity
- 37 items
- HN profile
- View on Hacker News ↗
About alzoid
No profile information was provided.
Recent public activity
-
comment
Comment #47793122
Especially when the solid core now ships with a web ui and API compatibility with OpenAI and Antropic. In my test of ai clients, Ollama was the only one I deleted.
-
comment
Comment #47792854
This was my issue with current client ecosystem. I get a .guff file. I should be able to open my AI Client of choice and File -> Open and select a .guff. Same as opening a .txt fil…
-
comment
Comment #46706279
Did you even listen to the speech? https://www.youtube.com/watch?v=kDMyeGQm3NA He never trashed the US, he simply stated the facts and how middle powers should respond. Not by isol…
-
comment
Comment #46706009
If you watch his speech and the follow up interview you he answers that directly ( https://www.youtube.com/watch?v=kDMyeGQm3NA @ 17:50). It's a good watch, better than the past 10 …
-
comment
Comment #46395319
Java introduced Optional to remove nulls. It also introduced a bunch of things to make it behave like functional languages. You can use records for immutable data, sealed interface…
-
comment
Comment #46393633
I went through evaluating a bunch of frameworks. There was Langchain, AG2, Firebase Gen AI / Vertex / whatever Google eventually lands on, Crew AI, Microsoft's stuff etc. It was so…
-
comment
Comment #46049421
I had this issue today. Gemini CLI would not read files from my directory called .stuff/ because it was in .gitignore. It then suggested running a command to read the file ....
-
comment
Comment #45528860
I will also add checks to make sure the data that I get is there even though I checked 8 times already and provide loads of logging statements and error handling. Then I will go to…
-
comment
Comment #45527727
I feel like it was this way 10 years ago. Once r/TheDonald successfully gamed the system everyday I think people with interest took notice. Now you can be in a niche sub reddit tha…
-
comment
Comment #45527304
I asked Claude to add a debug endpoint to my hardware device that just gave memory information. It wrote 2600 lines of C that gave information about every single aspect of the syst…
-
comment
Comment #44744987
I ran into an AI coded bug recently the generated code had a hard coded path that resolved another bug. My assumption is the coder was too lazy to find the root cause of the bug an…
-
comment
Comment #44276236
The future is already here. Look at how companies behave today, AI will not change their behaviour. AI will not make them 'nicer'. People talk about the massive productivity change…
-
comment
Comment #43159065
It was my go to back when I was doing Java Desktop / Servelets / Java EE. I found it easier to use than Eclipse, which most people I knew were using. I recently did a Google AppEng…
-
comment
Comment #40015396
When the server is behind a pipe of limited size. When most of your new visits happen all at once over a short period of time. When you can't rely on a mobile phones cache like a d…
-
comment
Comment #40015328
1) Yes, the other benefit at the time was a browser would only do X number of requests per domain, using the CDN allowed more requests. Also it was a bandwidth issue from the serve…
-
comment
Comment #40012558
In this situation server bandwidth was an issue. Using an available CDN with the fall back was what we decided to do. It's not that complicated, from the client check if the object…
-
comment
Comment #40012352
I do both. If you are loading a JS lib then check for its existence on the client. If it's not found load the resource from your server. You could also achieve this on the server s…
-
comment
Comment #34598356
I switched to YT music and like it better than Spotify. The main thing I find is YT recommends better related music to what I am currently listening to. I found Spotify was playing…
-
comment
Comment #30062245
I find the costs and use cases take up time to try and figure out. I wanted to prototype a IOT device pushing data to the cloud. I used Google IOT Core. After reading a bunch of tu…
-
comment
Comment #28800893
Hire a local accountant and tax lawyer and they will tell you how. When I set up my business I had the accountant and lawyer discuss set up options. They were going through share s…
-
comment
Comment #25658122
No, when I read the article 'hard' seemed to equate to 'took longer than expected'. It takes time, but I think the tools that are out there are easy enough to use. If you wrote the…
-
comment
Comment #25646387
I don't think load testing is hard, it just requires time to do properly. Maybe some people think they can get a tool, record a script and hit play. In some cases that might be eno…
-
comment
Comment #25423577
We had a vendor deliver some C# source code that was exactly this. A 'repository' interface that had a concrete class that called an abstract data access class etc. A path of 3 or …
-
comment
Comment #25124514
I feel the same way. I was writing a desktop Windows/Mac app using swing 10 years ago. The look and feel that came out of the box was fine. At first it was metal. It was a light bl…
-
comment
Comment #24846870
I agree, I see those patterns in the wild a lot. You have a Microsoft shop using .NET and SQL Server yet the devs still abstract the data access layer. I think those patterns just …