Friday, 16 May 2025

New top story on Hacker News: Beyond Text: On-Demand UI Generation for Better Conversational Experiences

Beyond Text: On-Demand UI Generation for Better Conversational Experiences
7 by fka | 0 comments on Hacker News.


New top story on Hacker News: Show HN: A free AI risk assessment tool for LLM applications

Show HN: A free AI risk assessment tool for LLM applications
20 by percyding99 | 4 comments on Hacker News.
We’ve built an AI risk assessment tool designed specifically for GenAI/LLM applications. It's still early, but we’d love your feedback. Here’s what it does: 1. it performs comprehensive AI risk assessments by analyzing your codebase against different AI regulation/framework or even internal policies. It identifies potential issues and suggests fixes directly through one click PRs. 2. the first framework the platform supports is OWASP Top 10 for LLM Applications 2025, upcoming framework will be ISO 42001 as well as custom policy documents. 3. we're a small, early stage team, so the free tier offers 5 assessments per user. If you need more, just reach out, happy to help. 4. sign in via github is required. We request read access to scan code and write access to open PRs for fix suggestions. 5. we are looking for design partners to collaborate with us. If you are looking to build compliance-by-design AI products, we'd love to chat. product url: https://ift.tt/BoAd6YW we'd really appreciate feedback on: - what you like - what you don't like - what do you want to see for the next major feature - bugs - any other feedback feel free to comment here or reach out directly: email: percyding@gettavo.com, linkedin: https://ift.tt/6VuHM83

Sunday, 11 May 2025

New top story on Hacker News: Ask HN: What will tech employment look like in 10 years?

Ask HN: What will tech employment look like in 10 years?
16 by ipnon | 17 comments on Hacker News.
What jobs will become prevalent? Which will become scarce? I do not predict the elimination of the humble coder, but the covid hiring wave has come and gone, and Big Tech for the most part successfully minimized the workforces of those who were hired in the covid wave: frontend, backend and fullstack engineers. The patterns of code required for these positions have been successfully recognized by the LLMs I think, and for many cases a single staff engineer with experience and a trusty LLM is similarly productive as a team of 2-4 junior engineers led by a senior engineer was only a short 5 years ago. I do not expect much expansion in this "traditional" web development (these positions have really only existed in modern form for about 20 years, roughly when Rails was first released). Many such as Amjad Masad and Beff Jezos are of the opinion that for those who would have taken these positions before, the options are to either drill down the stack towards the bare metal, by reason of relative difficulty of embedded engineering, and that one struggles to imagine high-stakes software such as in a SpaceX rocket, Boeing airplane, or Anduril drone relying primarily on vibe-coded slop hastily LGTM'd into production. So the kind of software that requires large amounts of formal, simulated, or physical verification seems to still be necessary, but this is much more difficult to write than a webpage. Expansions in the labor market for those writing C, C++, Rust in the context of operating systems, embedded systems, microcontrollers, drivers, and so forth seems likely. The other option seems to be to leave the stack entirely, and leverage small teams to create niche and targeted applications for small segments of users. There has been some success in this area as well, but requires a much broader skillset than simply being an expert programmer and understanding some computer science. The options seem to be either to start reading Bjarne Stroustrup or Peter Thiel. But the skill ceiling for either path is fairly high, and for the short term I predict a sustained contraction in the software engineering labor market, while people adapt their educations and long-term career goals. Headcounts at FAANG I don't see recovering soon if ever. This has broader implications for a traditional startup route where one earned their stripes at FAANG before launching their own venture, but I digress ...

New top story on Hacker News: Insurers launch cover for losses caused by AI chatbot errors

Insurers launch cover for losses caused by AI chatbot errors
7 by jmacd | 1 comments on Hacker News.


New top story on Hacker News: Absolute Zero: Reinforced Self-Play Reasoning with Zero Data

Absolute Zero: Reinforced Self-Play Reasoning with Zero Data
7 by leodriesch | 2 comments on Hacker News.


Tuesday, 6 May 2025

New top story on Hacker News: Show HN: AnuDB– Backed on RocksDB, 279x Faster Than SQLite in Parallel Workloads

Show HN: AnuDB– Backed on RocksDB, 279x Faster Than SQLite in Parallel Workloads
5 by hashmak_jsn | 0 comments on Hacker News.
We recently benchmarked AnuDB, a lightweight embedded database built on top of RocksDB, against SQLite on a Raspberry Pi. The performance difference, especially for parallel operations, was dramatic. GitHub Links: AnuDBBenchmark: https://ift.tt/sxS5Zvc AnuDB (Core): https://ift.tt/UkIPNnF Why Compare AnuDB and SQLite? SQLite is excellent for many embedded use cases — it’s simple, battle-tested, and extremely reliable. But it doesn't scale well when parallelism or concurrent writes are required. AnuDB, built over RocksDB, offers better concurrency out of the box. We wanted to measure the practical differences using real benchmarks on a Raspberry Pi. Benchmark Setup Platform: Raspberry Pi 2 (ARMv7) Benchmarked operations: Insert, Query, Update, Delete, Parallel AnuDB uses RocksDB and MsgPack serialization SQLite uses raw data, with WAL mode enabled for fairness Key Results Insert: AnuDB: 448 ops/sec SQLite: 838 ops/sec Query: AnuDB: 54 ops/sec SQLite: 30 ops/sec Update: AnuDB: 408 ops/sec SQLite: 600 ops/sec Delete: AnuDB: 555 ops/sec SQLite: 1942 ops/sec Parallel (10 threads): AnuDB: 412 ops/sec SQLite: 1.4 ops/sec (!) In the parallel case, AnuDB was over 279x faster than SQLite. Why the Huge Parallel Difference? SQLite, even with WAL mode, uses global database-level locks. It’s not designed for high-concurrency scenarios. RocksDB (used in AnuDB) supports: Fine-grained locking Concurrent readers/writers Better parallelism using LSM-tree architecture This explains why AnuDB significantly outperforms SQLite under threaded workloads. Try It Yourself Clone the repo: git clone https://ift.tt/sxS5Zvc cd AnuDBBenchmark ./build.sh /path/to/AnuDB /path/to/sqlite ./benchmark Results are saved to benchmark_results.csv. When to Use AnuDB Use AnuDB if: You need embedded storage with high concurrency You’re dealing with telemetry, sensor data, or parallel workloads You want something lightweight and faster than SQLite under load Stick with SQLite if: You need SQL compatibility You value mature ecosystem/tooling Feedback Welcome This is an early experiment. We’re actively developing AnuDB and would love feedback: Is our benchmark fair? Where could we optimize further? Would this be useful in your embedded project?

New top story on Hacker News: Show HN: ProcASM – A general purpose, visual programming lanugage

Show HN: ProcASM – A general purpose, visual programming lanugage
5 by Temdog007 | 1 comments on Hacker News.
I've been working as a software engineer since 2016. I've always had side projects that I would work on outside of my job. At first, it was just web games. But in 2021, I took an interest in programming languages and started making my own. When I got laid off from my job in late 2023 (budget cuts according to my employer), I decided to focus on becoming an independent developer and being able to monetize my own software. Since I was working on programming languages, my plan was to make a commercial grade programming language. Monetizing it would be difficult since there are so many free and open source programming languages out there. The only way I could think to stand out was to make something that hasn't been made before. General purpose programming languages DO exist; Visual programming languages DO exist. As far as I know, general purpose, visual programming languages DO NOT exist. So, that is what I decided to create. I wrote a blog on my website < https://temware.site/html/blogs/procasm_justification.html > talking about how ProcASM works and some justifications on why developers and companies would consider using it. There is documentation < https://procasm.temware.site/documentation.html > describing ProcASM's concepts in more detail. And, there is a manual < https://procasm.temware.site/manual.html > that describes how to use application itself. I have examples on the website < https://procasm.temware.site/procedure_view.html > showcasing how procedures are displayed in ProcASM. The images on that page are procedures, created in ProcASM, that were exported to SVG files from ProcASM. You can try out ProcASM for free in your browser here: < https://procasm.temware.site/demo.html > If you just want to see examples in ProcASM, use the links below to load projects in the demo. Sample Project: < https://procasm.temware.site/demo.html?sampleProject=https%3... > Execute the Procedures: *Fibonacci*, *Test: Fizz Buzz*, and *Guess Number* to get an idea on how ProcASM works. Network Project: < https://procasm.temware.site/demo.html?sampleProject=https%3... > This project contains examples of TCP clients and servers. If your using the browser version, you can load the project and view the procedures. However, you cannot execute any of the procedures in this project since they rely on native dynamic libraries which can't be executed in the browser. If you are using the desktop version, you can execute the procedures: Test TCP Client, Test TCP Server, and Test HTTP Server. This page < https://procasm.temware.site/getting_started.html?show=netwo... > can help you with compiling a dynamic library on you machine. Support Forum Project: < https://procasm.temware.site/demo.html?sampleProject=https%3... > To ensure that ProcASM was suitable for software development, I decided to create something non-trivial with it; the back-end for the support forum < https://forum-procasm.temware.site >. The project was transpiled to C code using ProcASM (available only for the desktop versions). Then, that C code was compiled on a FreeBSD machine to generate an executable. That executable is running on a FreeBSD server. The *Server* procedure is the *main* procedure for the application. The dynamic library is not available. So, you can only view the procedures in this project.

Monday, 5 May 2025

New top story on Hacker News: Show HN: CodeCafé – A real-time collaborative code editor in the browser

Show HN: CodeCafé – A real-time collaborative code editor in the browser
8 by mrktsm__ | 0 comments on Hacker News.
Hey guys! I’ve been working on a web app called CodeCafé—a collaborative, browser-based code editor inspired by VS Code and Replit, but with no downloads, no sign-up, and zero setup. You just open the link and start coding—together. The frontend is built with React and TypeScript, and the backend runs on Java with Spring Boot, which handles real-time editing via WebSockets. For syncing changes, I’m using Redis along with a custom Operational Transformation system (no third-party libraries!!!). The idea came after I found out a local summer school was teaching coding using Google Docs (yes, really). Google Docs is simple and free, but I wanted something that could actually be used for writing and running real code—without the need for any sign-ups or complex setups. That’s how CodeCafé came to life. Right now, the app doesn’t store files anywhere, and you can’t export your work. That’s one of the key features I’m working on currently. If you like what you see, feel free to star the repo to support the project!! Check it out and let me know what you think! GitHub: github.com/mrktsm/codecafe Web App: codecafe.app

New top story on Hacker News: Ghost in the machine? Legend of the 'haunted' N64 video game cartridge

Ghost in the machine? Legend of the 'haunted' N64 video game cartridge
10 by fallinditch | 0 comments on Hacker News.


Tuesday, 29 April 2025

New top story on Hacker News: Generative AI is not replacing jobs or hurting wages at all, say economists

Generative AI is not replacing jobs or hurting wages at all, say economists
39 by pseudolus | 31 comments on Hacker News.


New top story on Hacker News: Ask HN: Is there hope for Microsoft 365 support?

Ask HN: Is there hope for Microsoft 365 support?
18 by joaopbnogueira | 6 comments on Hacker News.
The company I work for (25friday.com) has been hit with what seems to be a keyword blacklist on Microsoft 365 email. In short, if we send out any email to clients using Microsoft 365 as their email provider containing the textual content "25friday.com" anywhere on the email subject, body or readable attachment (e.g. pdf) the emails fall on a "blackhole" and are neither bounced nor reaching the recipient (they are not in spam or quarantine either). As you might imagine this is a huge problem for us as email is our primary means of communication with our clients and we need to be careful to never include any mention of our domain in any email we send to them. For recipients using personal Outlook emails, the emails are received and sent to spam with a spam score of 9 (maximum score). We've reached Microsoft support and they seem as clueless as we are. They have no idea why this is happening and they are unable to provide any information or progress on the ongoing issue. This has been going on for about a month now. A few things we have tried: - We have checked our SPF, DKIM, and DMARC records and they are all set up correctly and passing. - We have checked our email sending reputation and it is good as far as we can tell. - We have tried sending emails from different email addresses and domains, but the issue persists. - We have setup our own Microsoft 365 account to be able to submit false-positive reports on the security portal, but the submissions disappear into the void and we never receive any feedback. - We have tried some deliverability testing tools and they all report that our emails are being blocked by Microsoft 365, but not by any other email providers. - We are not on any known/public blacklists Note that we are using Google Workspaces, but that does not seem to be the issue. The domain itself has been live since 2018 (since the company was founded) and we have never had any issues with email deliverability before. We don't send spam or unsolicited emails. The closest I could think of is a mailing list we have with about 300 subscribers containing mostly client emails but also some emails of people we invite to our events. We send out an approximately monthly newsletter to this list, but we have never had any complaints or issues with it before (we're using Pipedrive for that). Tangential but I believe that it might be related: if I set my website address as 25friday.com on my LinkedIn profile, the link gets overwritten to a LinkedIn error page. My guess is that since LinkedIn is owned by Microsoft, they are sharing the same blacklist. Any tips would be greatly appreciated. We're really affected by this and without any recourse to escalate this issue.

Friday, 25 April 2025

New top story on Hacker News: Privacy folks – what's your take on using LLMs at work?

Privacy folks – what's your take on using LLMs at work?
3 by adeebaslam | 1 comments on Hacker News.
Hey everyone! :wave: I’m building a product called Privacy AI, and I’m trying to learn how people think about data privacy when using AI tools at work — especially in industries like finance, healthcare, or anywhere with sensitive data. If you: - Use tools like ChatGPT, Claude, Gemini, etc. for work - Work in privacy, infosec, compliance, or deal with sensitive data …I’d love to hear how you're handling that today. No pitch, no selling — just looking to learn from real experiences. If you’re open to a quick 20-min chat, drop a comment or shoot me a DM. Really appreciate it

New top story on Hacker News: Avoiding Skill Atrophy in the Age of AI

Avoiding Skill Atrophy in the Age of AI
20 by NotInOurNames | 9 comments on Hacker News.


Wednesday, 9 April 2025

New top story on Hacker News: CSS Naked Day

CSS Naked Day
17 by rpgbr | 4 comments on Hacker News.


New top story on Hacker News: Show HN: I built a Yahoo Messenger-inspired web chat app – pure nostalgia

Show HN: I built a Yahoo Messenger-inspired web chat app – pure nostalgia
6 by lakshikag | 5 comments on Hacker News.
I’ve been feeling a bit nostalgic lately, so I decided to build a little web chat app inspired by Yahoo! Messenger. Right now it’s got group chat rooms. Super simple setup, no email required to register. You can create your own room or hop into one that’s already open. Room owners can customize things like backgrounds and even cursors of their room. Users can format their messages with basic markdown like bold, italics, and color texts (kind of like the old Yahoo! days). I even brought back the classic Yahoo! Messenger emoticons because… well, why not? You can try it out here: https://buzzed.chat (Heads up: it's still pretty barebones, so excuse any bugs you might run into!) I'm thinking of adding a few more features next, like: • Audibles • A buddy list so you can add friends • Private chats between buddies Before I keep building, I wanted to check in and see what people think. Anyone else remember using Yahoo! Messenger back in the day? Any features you’d love to see again? Would genuinely love to hear your thoughts and ideas

New top story on Hacker News: The guide to reduce screen time

The guide to reduce screen time
5 by nullderef | 5 comments on Hacker News.


New top story on Hacker News: Hardening the Firefox Front End with Content Security Policies

Hardening the Firefox Front End with Content Security Policies
15 by evilpie | 0 comments on Hacker News.


Sunday, 16 March 2025

New top story on Hacker News: High-performance computing, with much less code

High-performance computing, with much less code
8 by mpweiher | 0 comments on Hacker News.


New top story on Hacker News: Lynx is the oldest web browser still being maintained

Lynx is the oldest web browser still being maintained
19 by jahnu | 3 comments on Hacker News.
Kudos to the folks keeping it running. https://ift.tt/lcPy3t6

New top story on Hacker News: ASK HN: How to engineer a JavaScript to Python migration?

ASK HN: How to engineer a JavaScript to Python migration?
3 by ninocan | 9 comments on Hacker News.
Context: I was tasked with migrating a legacy workflow system (Broadcom CA Workflow Automation) to Airflow. There are some jobs that contain rather simple JavaScript snippets, and I was trying to design a first prototype that simply takes the JS parts and runs them in a transpiler. In this respect, I found a couple of packages that could be leveraged: - js2py: https://ift.tt/JmgMbwP - mini-racer: https://ift.tt/eCxOY5t Yet, both seem to be abandoned packages that might not be suitable for usage in production. Therefore, I was thinking about parsing and translating Javascript's abstract syntax trees to Python. Whereas a colleague suggested I bring up an LLM pipeline. How much of an overkill that might be? Has anyone else ever dealt with a JavaScript-to-Python migration and could share heads-ups on strategies or pitfalls to avoid?

Monday, 24 February 2025

New top story on Hacker News: Building a BitTorrent client from the ground up in Go

Building a BitTorrent client from the ground up in Go
72 by stevenmh | 11 comments on Hacker News.


New top story on Hacker News: Show HN: RadiaCode – Python Library for RadiaCode-10x Radiation Detectors

Show HN: RadiaCode – Python Library for RadiaCode-10x Radiation Detectors
3 by cdump0 | 0 comments on Hacker News.
Hi HN, I want to show you my project: RadiaCode, a Python library to interface with RadiaCode-10x radiation detectors and spectrometers. With RadiaCode, you can: - Collect real-time radiation measurements - Analyze spectra for insightful data interpretation - Control device settings via USB or Bluetooth - Explore a web interface example for remote monitoring It's available on PyPI, open-sourced under the MIT License, and you can find the code with examples on GitHub.

New top story on Hacker News: Microsoft Cancels Leases for AI Data Centers, Analyst Says

Microsoft Cancels Leases for AI Data Centers, Analyst Says
10 by suraci | 0 comments on Hacker News.


Friday, 21 February 2025

New top story on Hacker News: Show HN: One year of bewCloud (a simpler Nextcloud alternative)

Show HN: One year of bewCloud (a simpler Nextcloud alternative)
7 by BrunoBernardino | 3 comments on Hacker News.
It's been over a year since I started working on bewCloud and 11 months since I posted the first Show HN [1]. Many things changed (check the commits [2] or the video updates [3] for more details), we've got one recurring sponsor, and recently the GitHub repo [4] passed 400 stars! We also just launched a new option to buy access to a managed instance. If you have any suggestions, comments, or recommendations, I'd love to hear about it. Thank you for your attention and kindness. I really appreciate it! [1] https://ift.tt/BfkwY9N [2] https://ift.tt/aHzXKRG [3] https://www.youtube.com/@bewCloud [4] https://ift.tt/xe8Hcd1

New top story on Hacker News: Docker limits unauthenticated pulls to 10/HR/IP from Docker Hub, from March 1

Docker limits unauthenticated pulls to 10/HR/IP from Docker Hub, from March 1
25 by todsacerdoti | 24 comments on Hacker News.


Friday, 31 January 2025

New top story on Hacker News: Casio F91w at 5KM underwater – watches of espionage

Casio F91w at 5KM underwater – watches of espionage
26 by nnnnico | 0 comments on Hacker News.


New top story on Hacker News: Llama.cpp supports Vulkan. why doesn't Ollama?

Llama.cpp supports Vulkan. why doesn't Ollama?
75 by buyucu | 26 comments on Hacker News.


New top story on Hacker News: NSF starts vetting all grants to comply with executive orders

NSF starts vetting all grants to comply with executive orders
46 by rbanffy | 15 comments on Hacker News.


New top story on Hacker News: Show HN: Ldump – serialize any Lua data

Show HN: Ldump – serialize any Lua data
20 by girvel | 2 comments on Hacker News.
Some time ago, I was implementing saves for my LOVE2D game. I wanted to do a full dump of the game state -- which included closures (AI), complex graphs, sets with tables as keys and also fundamentally non-serializable data (coroutines and userdata), that require user-defined serialization/deserialization logic. I went through every Lua serialization library -- none covered all data types/cases. So I wrote my own. It is a polished version, thoroughly annotated, tested and documented. It is made to be as functional and customizable as possible (or at least I did everything I could think of). I would be happy to hear suggestions/corrections for both code and documentation -- even nitpicky ones.

Tuesday, 28 January 2025

New top story on Hacker News: How Much Do Udemy Instructors Make (2024)

How Much Do Udemy Instructors Make (2024)
14 by belter | 7 comments on Hacker News.


New top story on Hacker News: Structured (YC S23) Is Hiring

Structured (YC S23) Is Hiring
1 by amrutha_ | 0 comments on Hacker News.


New top story on Hacker News: Show HN: I Created a Pomodoro Timer

Show HN: I Created a Pomodoro Timer
5 by quantummint | 3 comments on Hacker News.
Core features: Customizable Timers: Adjust work and break durations flexibly. Focus Mode: Background color change to enhance concentration. Smart Notifications: Alerts with sound and notifications when a session ends. Cross-platform Sync: Seamless data sync across devices. It’s free to use, and I’d love to hear your thoughts! I’m looking forward to your feedback, suggestions, or ideas to make it better. Thanks for checking it out!

New top story on Hacker News: US Civil servants are being asked who they voted for in 2024 election

US Civil servants are being asked who they voted for in 2024 election
46 by belter | 24 comments on Hacker News.


Friday, 17 January 2025

New top story on Hacker News: Fern (YC W23) Is Hiring an AI Engineer in NYC

Fern (YC W23) Is Hiring an AI Engineer in NYC
1 by dandevs | 0 comments on Hacker News.


New top story on Hacker News: The Family Bass - Music with an NES

The Family Bass - Music with an NES
7 by rcarmo | 0 comments on Hacker News.


New top story on Hacker News: Ask HN: How can I realistically change careers?

Ask HN: How can I realistically change careers?
7 by throw101010101 | 2 comments on Hacker News.
I’ve spent almost two decades in digital-focused roles, specialising in strategy, user research, and creating frameworks for better customer experiences (ostensibly UX I suppose). While I’ve found the work rewarding, I feel it’s time for a significant career change—potentially outside of this domain entirely. I’m seeking advice from others who have made mid-career transitions: • How did you pinpoint new directions that matched your skills and interests? • What were the most effective ways to reposition your experience in a new field? • Are there any resources or strategies you’d recommend for upskilling or building networks? I've often thought about cybersecurity as something I'd like to specialise in, but it seems like bootcamps and the like aren't worth the money they charge (most advice has been starting at the bottom as an IT helpdesk worker and going from there, but I'm no spring chicken anymore. But I'm not against starting at the very bottom and working my way up). I realise this is quite a broad ask, and apologies for the throwaway. I’d appreciate any insights, especially from those who’ve shifted from established careers to something entirely different. Thanks in advance!