HN user

akkad33

697 karma
Posts39
Comments318
View on HN
news.ycombinator.com 17d ago

Ask HN: Good fast IDE for reading and navigating code in multiple languages

akkad33
6pts10
news.ycombinator.com 7mo ago

Ask HN: Is formal verification of practical use in real world projects?

akkad33
5pts4
news.ycombinator.com 11mo ago

Ask HN: Do you think programming as a job will end soon and if so, how soon?

akkad33
5pts13
news.ycombinator.com 11mo ago

Ask HN: Transition from back end to programming language research

akkad33
1pts0
ryanbrewer.dev 11mo ago

Simple Programming Languages

akkad33
3pts0
github.com 11mo ago

Explicit tail call optimization in Rust on nightly merged

akkad33
1pts0
news.ycombinator.com 11mo ago

Ask HN: Is there a language that is simple and empowers developer productivity?

akkad33
3pts11
piccolo-orm.com 1y ago

Piccolo: Powerful async ORM, query builder, and admin GUI

akkad33
5pts0
jank-lang.org 1y ago

The Jank programming language

akkad33
423pts137
docs.litestar.dev 1y ago

Litestar 2.16.0

akkad33
2pts0
news.ycombinator.com 1y ago

Ask HN: Which language best compromise between pragmatic and innovative?

akkad33
1pts2
hexdocs.pm 1y ago

Phoenix.LiveView behaviour

akkad33
4pts0
shop.fairphone.com 1y ago

Fairphone 5

akkad33
3pts3
news.ycombinator.com 1y ago

Ask HN: Can you explain like 5 what is Apache arrow flight is and its use case?

akkad33
2pts4
jank-lang.org 1y ago

The Jank Programming Language

akkad33
1pts0
news.ycombinator.com 1y ago

Ask HN: Which functional language for full stack web development?

akkad33
3pts8
ivelasq.quarto.pub 1y ago

Literate Programming in Quarto

akkad33
25pts5
github.com 1y ago

Rust for System Programmers

akkad33
3pts0
strongly-typed-thoughts.net 1y ago

Zig: What I think after one month of using it (perspective of a Rust programmer)

akkad33
3pts0
jank-lang.org 1y ago

The jank programming language: Dialect of Clojure compiled to LLVM

akkad33
2pts0
www.bartoszsypytkowski.com 1y ago

Writing High Performance F# code

akkad33
15pts1
www.bbc.com 1y ago

'Music is back' as sales hit a 20-year high

akkad33
2pts0
gleam.run 1y ago

Gleam v1.7

akkad33
182pts26
blog.janestreet.com 1y ago

Oxidizing OCaml: Rust-Style Ownership

akkad33
1pts0
fstar-lang.org 1y ago

F*: A proof oriented general purpose programming language

akkad33
254pts61
stackoverflow.com 1y ago

Python 3.13 with free-thread is slow

akkad33
3pts0
aws.amazon.com 1y ago

Verify the Safety of the Rust Standard Library

akkad33
2pts0
devclass.com 1y ago

ISO C++ Chair: C++ 26 'most impactful release since C++11'

akkad33
2pts0
devblogs.microsoft.com 1y ago

F# developer stories: how we've fixed a 9-year-old performance issue

akkad33
6pts0
news.ycombinator.com 1y ago

Ask HN: Good books about architecturing cloud solutions for performance?

akkad33
15pts6

But good data structure is not always evident from the get go. And if your types are too specific it would make future development hard if the specs change. This is what I struggle with

And many people don't know what Google stands for. Just like they probably didn't care what AOL stands for, or MSN

I have started using chatgpt for everything from financial planning to holiday planning to product purchase. Whenever I think I hit something useful I add it to memory. I'm a "go" plan user because they had a promotional offer that gave me free access to the plan for a year. Will I continue after one year? Truth is nothing I have in chatgpt cannot be recreated elsewhere. But if I care about keeping those memories I might. I think the real challenge for me now is finding back out conversations, it seems their history search is quite bad.

Wake up and smell the coffee: fsharp is dead. Look at the release notes of fsharp. It's laughable for a major version update. It's maintained by like 5 people working in eastern Europe and they only do maintenance updates basically. C# is getting all its features and DotNet is basically c# oriented anyway. So even in the past you had to learn C# to program in F#

That's not my point. My point is it's unreliable at best.

strikes me that if you developed your skill set around using AI more effectively, you could have both developed a deep understanding and gotten what you wanted, and done it in less time and at higher quality than you could have done solo.

Why is this a given? I don't think there's a secret incantation that could have gotten better results. It's an inherent limitations of the system. If you have resources for me to learn I'm open to discover

There's no skill in using AI. I spent 3 hours trying to build something like a table visualiser that creates a visualization of SQL schema relationship. I wrote simple prompts, tailored them using LLMs and fed them back into another LLM. Went on about 2 hours iterating on outputs until it looked like what I want. Result? It produces an output. The outputs worked well for most part but the results were variable. The arrows would sometimes not be in place. Sometimes you get 100 instead of 1. It was slow. And what I did learn from this that I didn't already know? Zero! On the other hand if I'd tried to figure out myself how to do it, I would have built something not only deterministic and faster , but I'd have gained some new experience and skills along with it of solving a problem.

Poison Fountain 6 months ago

Couldn't this backfire if they put LLMs on safety critical data. Or even if someone asks LLms for medical advice and dies?

I don't really understand this comment. Are you saying dogs made way for nuclear families? Why would it be impossible? In India for example pet ownership is very low. Much lower than prevalence of nuclear families

I don't know to what extent cost is stopping people from having kids. Many poor people have kids. And then they struggle to raise them.

Java type shenanigans are endless if you want some fun but baseline you can cast to arbitrary types at runtime and completely bypass all compile time checks.

For this reason Java is a bad example of a typed language. It gives static typing a bad rep because of its inflexible yet unreliable type system (only basic type inference, no ADTs, many things like presence of equality not checked at compile time etc ) Something like ocaml or fsharp have much more sound and capable type systems.