Really strange; anyway it is closed source and best not to have too much reliance and attachment to any one tool. I have switched to GPT 5.5 and 5.6 Sol and Codex ove Claude already. Fable is very expensive/token limiting. I am an experienced programmer heavily using AI for many POCs now. At one time Anthropic and its models Opus,Fable looked leading; now OpenAI has caught up. I find 5.5 models more than enough for most tasks and have shifted back to codex
After reading this first, it looked almost like a joke, like how Google used to do Google- TISP Toilet Internet Service Provider https://archive.google/tisp/install.html
Even now without Xrays it is very hard to really even see if there are blocks in your artery usuing ultrasound (Echocardiography alone). Ultrasound is used indirectly by measuring blood flow difference between stress and rest - not a spa session anyway. Looks like a prank really
3D Ultrasound helps a lot in this regard. Getting flow velocity out and tissue motion is very possible if you can support the data rates (in my group we've had some luck getting coronary artery 3D flow out using 3D ultrasound probes). The issue is that 2D ultrasound and flow is an unsolvable problem, so you really do need all 3 dimensions here.
I created this open-source application (https://alexcpn-faers-signal-detection.hf.space/) to analyse the FDA FAERS data set a few weeks back, just to do some good work and use Claude Code completely. I got roasted on Reddit for attempting this. But this is meant for specialists to use, as most platforms that analyse this data charge a lot from what I read.
FDA FAERS is the official dataset for reporting Adverse events from taking a drug. FDA adverse event reports about 2 million cases and 4,067 unique drugs
I agree the results are not easy for non medical professionals to interpret correctly. For example DEATH is very strong with Parecetemol and so is DEPENDECE. The latter because from AI it is a confounding factor. Acetaminophen/parecetemol is frequently co-formulated with opioids (like Hydrocodone or Codeine). The "Dependence" signal is likely attributed to the opioid, not the Acetaminophen itself...
The future of Software Engineering will be software that's built with Agentic AI; but then builds, tests, corrects, code reviews, lints and extends itself feature by feature. I wanted to dog food my article on linkedin related to Software Engineering 3.0 (https://www.linkedin.com/pulse/from-waterfall-agile-agentic-...) but with a real experiment, to build an AI native CI, system from the ground up. The result Relay-CI Here is how it got built
where did the Isaac Asimov's "Three Laws of Robotics" go for agentic robots; An Eval in the End - "Thou shall no evil" should have autocancelled its work
In KungfuPanda there is this line that the Panda says "I love KungFuuuuuuuu", well I normally don't tell like this, but when I saw this and (starting to use this), I feel like yelling"I like Metaaaaa or is it LLAMMMAAA or is it Open source.. or is it this cool ecosystem which gives such value for free...
This sounds so true yet false. For absolutely every successful life there is a trail of failed lives left behind and restarted. And I dont mean like movie star or Nobel prize success; just plain vanilla happy and almost boring life. It is a real cliche, but it is true; never ever give up easily. That means that you may need to admit and give up things that never would have worked out, but hold on to things that may; and to know the difference is impossible; you have to trust in your principles; the right principles may extract a terrible initial cost but lead to great happiness in the end. Amen (And you can get Principles here - https://www.goodreads.com/book/show/34536488-principles )
Why choose Java of all languages. Why not something more modern and less verbose like Go or Rust. Just asking as I have worked enough in Java and then spend a lot of time in GC tunining. Granted the code was not that great and from a diverse team with different skill levels causing all the leaks.. But still
They actually used clojure; which is an interesting choice.
GC tuning on the JVM is much less of a topic these days than it used to be. The default garbage collector was changed at some point (G1). It has some configuration options but they come with sane defaults that mostly just work fine and adapt to your memory and cpus. You don't spend a lot (or any) time on tuning this typically. I know I haven't even looked at GC params in many years now. Never had to. And we run on modestly sized vms of 1 or 2 GB typically. This was different 10 or so years ago when G1 was still newish and not default. ZGC was introduced with Java 11 (I think), and aimed at very large heaps. It trades off additional overhead for guaranteeing very low latency. That tradeoff is why it is not default. For most users, G1 without any tuning whatsoever should be fine. Generally, if you are stressing your heap, you get more hardware. And if you are not, the GC should be keeping up just fine.
Anyway, like it or not, the JVM has been a work horse for big data for ages. Things like Hadoop, Kafka, Cassandra, Elasticsearch, etc. all run on it and scale fine (and typically without a lot of GC tuning). The only feasible alternative to the jvm used to be things like C++. Lately, Go and Rust are pretty credible in this space as well and both have had to do a bit of catchup in terms of maturity of tooling, libraries, and language features. Things like generics (Go), async (Rust), etc. are still fairly recent additions and both kind of relevant in a project of this type.
In any case, switching languages is hard for teams and these guys have been around for quite some time. When they started, Rust was a lot less mature than it is now and Go was still pretty new as well. Neither was an obvious choice for this stuff at the time.
If there were enough cars fitted with sensors that can learn from their driver's actions and reactions I am pretty sure an AI system can learn from this huge pool and be a good driver. A good driver also makes mistakes. And this is still nothing related to intelligence. Our networks are as of now what one calls universal approximates. Actually replying to so many different queries whether it is medicine, computer science, history , it almost seems like a better interface to the net than google
I use GRPC between micro services instead of REST and for that it is really great; All the deficiencies of REST - Non versioned, no typed goes away with GRPC and the protobuf is the official interface for all micro-services. No problems with this approach for over two years now; and also multi language support - We have Go and Java and Python and TypeScript micro-services now happily talking and getting new features and new interface methods updated. Maybe it was demise in the web space; but a jewel in micro-service space
This is more or less what stubby is/was for Google and so the original driving force in implementing it. Now, if you add a catch all service that translates the requests from the outside to Protobuffers and then forwards the translated requests to the correct service you have a GFE (Google Front-End) equivalent.
Should you do it? Probably not as it's not just a dumb translation layer and it is extremely complex (e.g. needs to support streams which is non-trivial in this situation). For Google it's worth because this way you only have to handle protobuffers beyond the GFE layer.
With GRPC, you lose the ability to introspect the data on-the-wire. You lose the ability to create optimized data formats for YOUR application (who said you have to use JSON?) Most people can’t implement REST correctly, so it has been a shitshow for the last 20 or so years, GRPC isn’t a magic bullet, it just forces you to solve problems (or helps you to solve them) that you should have been doing in the first place. You can do all of these things without GRPC, there is no power it grants you that can’t be done better or at all in your own libraries and specs.