Nice, I like to see your talk video, audio. Thanks.
HN user
tealpod
We compiled one of our Java app to native binary using GraalVM (for encyption and secret managment needs). Side effect is the Java native binary performance is excellent, app startup time also significantly less compared to JVM version.
I am not sure how it compares with C++, Rust and Zig, but we made a benchmark with a similar Go binary, Java native version performance (load tests) is similar to Go binary. Only RAM usage of Java native binary is 3 times to Go binary (and JVM app took almost 10 times more RAM than Go version).
If anyone wants a aggregated status page for github, cloud & AI services.
FTP is not dead. A huge percent of Wind Turbines use FTP for data transfer.
asterisk is inexplicably used both to declare a pointer and a COMPLETELY different operation of dereferencing a pointer.
This is the most confusing concept of pointers. I feel this could have been easily avoided with different character like ~ or ^ or other.
Sounds good.
BTW, your website is heavy, for a basic set of components it shouldn't be taking 100% CPU.
Yes, We used GraalVM for data encryption project, side-effect is super fast performance. The number of req/sec also 3x.
I once solved a similar issue in a large application by applying the Flyweight design pattern at massive scale. The architectural details could fill an article, but the result was significant performance improvement.
AI isn’t ready to take full control of critical systems, and maybe it never will be. But big companies are rushing ahead, and users are placing trust in these big companies.
I believe AI should suggest, not act. I was surprised to see tools like Google CLI and Warp.dev confidently editing user files. Are they really 100% sure of their AI products? At the very least, there should be a proper undo. Even then, mistakes can slip through.
If you just want a simple terminal AI that suggests (not takes over), try https://geni.dev (built on Gemini, but will never touch your system).
Beautiful. I made few CNC's in my previous life, started a CNC company and bankrupted. Bankrupt because I tried to make everything myself, including electronic circuits. Your work looks great, congrats.
I suggest you keep a small video on the homepage(maybe youtube video). Also your site took a little time to load because of huge images (especially github image is 11mb).
D is one of the most beautiful and very efficient language. I wonder why it never got the attention it deserves.
Two weeks back I made a simple wrapper CLI app for GEMINI https://geni.dev.
I strongly believe in AI cli apps for devs, congrats.
Notepad++ Paint.NET NetBSD
I follow similar principal for https://Watermark.ink Almost every feature on watermark.ink site is free.
Your style of explaination and animation are exceptional.
Very well said.
I don't understand how to use this site. There is no movement or voice or what to do next after I go to a page.
Dlang is a clean langauge. Unfortunately it never got the attention it deserves.
Firefly language looks simple and beautiful.
Looks like we don't have a choice.
This is such a wonderful idea, congrats.
There is a real usecase for this in some high security sectors. I can't put complete info here for the security reasons, let me know if you are interested.
https://HelloEle.com is a Cli tool to upload, download files with numbers.
I built it in the process of teaching a cli tool. Which I extensively use to move files between computers, especially to servers.
For understanding Core Java, especially OOPS this book greatly helped me.
'The Java Programming Language' - by James Gosling.
Yes, very much true.
I started my career at Tektronix. The famous Gang-of-Four, who initially categorized/identified Software Design Patterns is all started at Tektronix.
I suggest don't remove the demo. I have a watermarking app https://watermark.ink the only reason there are non-english speaking users is because of the landing page itself is the app.
Thank you Thank you Thank you, my kid loving it. I will be happy to volunteer and help in anyway I can.
This is beautiful.
I made something similar, Write.wtf
https://www.producthunt.com/products/retiring-write-anonymou...
Lack of interest killed it.
My experience with Firebase. I worked on AWS, Azure, GCloud and Firebase. I feel Firebase is the easiest way to deploy web application. It provides features like Web-hosting, User-Authentication, Cloud-Functions and Database, Storage. Firebase is popular in mobile app world also. User-Auth is the easiest on Firebase.
Imagine you are new to cloud world and you want to deploy production ready web app (not a toy project). With Firebase you can confidently and quickly make the app with little learning. This confident part is very important, with AWS you have to fight with AWS configuration for months, then also you may have doubts.
Firebase is acquired by Google-Cloud but still exists as a separate entity. For every Firebase project there is a behind the scene Google-Cloud project created.
My main complaint is their databases (they have two db's). RealtimeDB(which I believe will be deprecated) and FirestoreDB. FirestoreDB is proprietary and limited in features. For example there is no way to have a auto-increment(which is often used in many applications). The work-around suggested by Firestore auto-increment is very ugly. Direct editing and modifying the data (not programmatically) in FirestoreDB is a pain. There is no official db-query feature, if you have more data (like more than 1000 elements) their webUI to navigate FirestoreDB data is of no use.
https://tealpod.com/compressor/ for Mac OS is made with JavaFX. Windows version is developed on .NET MFC.
Bloom Filter is very clever and simple DataStructure, Thank you.