
arstechnica.com
Roblox must make changes after failing to block adults creeping on kidshttps://arstechnica.com/tech-policy/2026/08/weak-roblox-safeguards-failed-to-stop-adults-contacting-kids-regulator-says/Roblox is first platform to submit to independent audits under the Online Safety Act.Aug 20, 2026 5:14 PM
excusemyfrench.org
Show HN: Excuse My French – an Open Source French-learning apphttps://excusemyfrench.org/hi HN! Many years ago (in 2018) I wrote a simple French-learning exercise generator in Javascript for my wife. I was looking for a way to generate as many exercises as possible for her to practice. The idea was being able to generate a huge combination of sentences and being able to transform them deterministically based on French grammar rules. The generation and transformation is rule-based (no LLMs back then).For example, we generate (using rule-based) :> Je mange une pommethen we ask the engine to transform it to past and replace the pronoun:> Je l'ai mangéeThen we compare with the user's answer.I recently picked the project back up, thanks to AI coding tools and some free time I improved the UI, added more conventional bits (flashcards, dictation, progress tracking, etc). I kept the core of it: the rule-based sentence generator, because it allows to generate extremely fast locally and in a controlled way.I pushed this new version on the same repository : https://github.com/CelebioAug 20, 2026 3:54 PM
github.com
Launch HN: Vendo (YC S26) – Let users build features on top of your producthttps://github.com/runvendo/vendoHi HN, we’re Yousef & Nour, founders of Vendo (https://vendo.run). Vendo lets users create new features inside the software they already use. A user describes the dashboard, workflow, or small app they need, and Vendo builds it on top of the product’s existing data, API, and interface.Demo: https://www.youtube.com/watch?v=VdpHehY64lsWe built Vendo because every SaaS eventually faces the same problem: every customer needs something slightly different. One wants a new report and another needs a workflow that only makes sense for their team. These requests either sit on the roadmap, become one-off engineering work, or force the customer into spreadsheets and external tools. We wanted the user to be able to create the missing feature themselves, without leaving the product.Here is how it works:- npx vendo init reads the product's API surface, theme, routes, and more. These are used so that the apps Vendo creates (1) look on-brand and native and (2) have the ability to read data and performAug 20, 2026 3:29 PM

nasa.gov
NASA Selects University Teams to Help Advance Aviation Researchhttps://www.nasa.gov/aeronautics/nasa-selects-university-teams-to-help-advance-aviation-research/NASA has selected four university teams to help the agency transform the future of aviation through projects ranging from high-supersonic propulsion systems to low-noise routes for small aircraft flying through cities. The agency made awards through its University Leadership Initiative, which offers student teams the opportunity to contribute to real-world flight research that advances NASA’s goals in aeronautics. […]Aug 20, 2026 2:57 PM

abcnews.com
IndyCars set to race on streets of nation's capital. Here's what to knowhttps://abcnews.com/Sports/weekends-indycar-race-streets-nations-capital/story?id=135743374President Donald Trump is transforming the streets around the National Mall in Washington, D.C., this weekend into an IndyCar motorsports mecca for the first time.Aug 20, 2026 2:49 PM
pub.doub.ly
Show HN: Check if any of the $656M in unclaimed royalties at The MLC is yourshttps://pub.doub.ly/Hi HN, I built this. Quick background on why it exists:When music is streamed on digital streaming platforms (think Spotify, Apple Music, Pandora), there are two separate royalty streams: one for the recording, paid through your distributor (DistroKid, TuneCore, CDBaby), and one for the underlying work (generally known as publishing). The work side's mechanical royalties are collected by The MLC, a nonprofit that was created by the 2018 Music Modernization Act (MMA). If you haven't registered your songs with The MLC, there are issues with your metadata, or about half a dozen other reasons, that money will never reach you, it just collects in a big pile we call the "black box".That pile is big. The MLC's own dashboard currently shows over $656M is held (themlc.com/blanket-royalties), and the biggest problem is the MMA dictates that The MLC cannot hold that money indefinitely. At some point, by law, The MLC must distribute this big pile of cash, and since they don't know who it's supposeAug 20, 2026 2:38 PM

science.nasa.gov
NASA Data Feeds River Forecasts as Snow Drought Effects Lingerhttps://science.nasa.gov/centers-and-facilities/goddard/nasa-river-forecasts-snow-drought/NASA Earth science data is supporting machine-learning forecasts that inform decisions about water, power, and public safety in Washington state.Aug 20, 2026 2:12 PM
news.ycombinator.com
Show HN: LilScript makes JavaScript libraries smallerhttps://news.ycombinator.com/item?id=49374554https://yeargun.github.io/lilscript/LilScript is a typed, compression-first language that compiles into js and sometimes into exec(will be more stable in future). The compiler mangles, reshapes the program into optimized js that happens to be 5-15% smaller (after gzip/br compression or raw) compared to the best performing JS toolchains like oxc/esbuild/terser/..## What has been proven to work with LilScript?- makes VSCode's core js modules 20% smaller on average- makes the world's most performant & small markdown rendering npm library, marked, 5-7% smaller and 10% faster- and many more demos.. works with pretty much any js/ts library## How it is compressing js finer than vite/oxc/terser/esbuild/..### 1. By changing the app.``` class Vector { float x; float y; init(float x, float y) { this.x = x; this.y = y; } float lengthSquared() { return this.x * this.x + this.y * this.y; } }int[] values = [1, 2, 3, 4]; auto doubled = values.map((int value) => value * 2); int sum = 0; for (int i = 0;Aug 20, 2026 1:50 PM
scibly.com
Show HN: Open-source tool turning company knowledge into Duolingo-like courseshttps://www.scibly.com/de/My buddy and I have been working on a side project for the past few months called Scibly.The idea is pretty simple:Companies already have an incredible amount of knowledge sitting in PDFs, documentation, internal wikis, etc. The problem is turning all of that information into something employees can actually learn from and retain.For this reason we decided to build Scibly, a tool that automatically turns boring company knowledge into interactive, Duolingo-like (but better) learning experiences.Today, we decided to open-source the whole thing.We're still pretty inexperienced when it comes to open source, so we'd genuinely love to hear your feedback, whether that's about the product, the idea, the codebase, or how we're approaching the project.Short product demo: https://www.youtube.com/watch?v=TcpLUNBRhQwGithub: https://github.com/scibly-dev/sciblyWould love to hear what you guys think!Aug 20, 2026 1:11 PM
simedw.com
Show HN: I trained a 125M model to autocomplete piano on-devicehttps://simedw.com/2026/08/20/midi-autocomplete/I trained a 125M-parameter transformer to autocomplete piano performances in real time (~108 notes/sec on an iPhone 15).The idea is basically GitHub Copilot or Tabnine, except instead of prompting it with code, you prompt it by playing a few notes on a MIDI piano. The model then continues what you played, entirely on-device.The app is free if anyone wants to try it. Happy to answer questions about the model, training, Core ML, or the many things that didn't work.Aug 20, 2026 12:04 PM
protobuf.com
Show HN: Protobuf.com, a visual, interactive guide to Protocol Buffershttps://protobuf.com/Protobuf is a fairly simple format, but the way people are first introduced to it often doesn't speak to them. That is how it was for me at first. I tried to address that in two ways: simple visual diagrams where a picture does the work better than prose, and interaction so you can get a feel for the language and how it behaves without installing anything.Some parts of the guide run a real Protobuf compiler, bufbuild/protocompile, in the browser through WASM. It's the same compiler the buf CLI uses.Feedback welcome.Disclosure: I work at Buf, and Buf owns the domain. The guide started as a side project before I joined.Aug 20, 2026 10:53 AM
bing.com
Topps Has A Lot Of Explaining To Do After Releasing This Fernando Mendoza Rookie Cardhttp://www.bing.com/news/apiclick.aspx?ref=FexRss&aid=&tid=6a88d17e66214f3ea26ce25f7f707a74&url=https%3A%2F%2Fwww.yardbarker.com%2Fnfl%2Farticles%2Ftopps_has_a_lot_of_explaining_to_do_after_releasing_this_fernando_mendoza_rookie_card%2Fs1_17759_44198980&c=1162726650517265720&mkt=en-usA Topps trading card of Fernando Mendoza has gone viral for all the wrong reasons. The photo on the card looks nothing like the former Indiana quarterback.Aug 20, 2026 3:43 AM
aiomniu.top
Show HN: AI Resume Screening – Looking for feedback from recruitershttps://aiomniu.top/services/resume-screeningIn addition to the resume creation tool we mentioned in our previous post, we've also developed an AI-powered resume screening tool to complement our overall ecosystem. This tool aims to help recruitment teams efficiently review hundreds of resumes without relying on keyword matching.This tool helps teams:- Batch upload and parse PDF resumes- Compare candidates with job descriptions- Review candidates' skills, experience, project experience, and industry fit- Provide candidate fit analysis and scoring ranges- Export results as a CSV fileTo better meet the requirements of the European and American markets, candidate contact information is encrypted by default when uploading data. We do not provide judgments on unsuitable or unrecommended candidates. Artificial intelligence can only be used as an aid, not a replacement for HR judgment. We oppose all forms of professional discrimination.We are currently offering Beta testing access to 100 HR professionals, recruiters, hiring managers, andAug 20, 2026 2:17 AM
lutefish.com
Show HN: Lutefish Stream (Play Music over Internet)https://lutefish.com/Hey all, Disclaimer: I work on embedded software for Lutefish.tldr: If you have good internet and you live within 500 miles of somebody (and ISPs are feeling benevolent that day) you can play music together over the internet (for real tho).I know you've probably seen "make music over the internet but for real this time" presented from a handful of places over the years. We designed a PCB from scratch to tightly couple the audio and networking layers as close as we possibly could, and we are able to get latency numbers as low as 28ms using custom protocol (which allows for seemingly real-time performance with bandmates over the internet).Before you ask, no, it is not an audio interface also (we're working on it). Think of it more like, "point-to-point sound cards with a lot of control over your mix".Don't really know how to do self promotion, but we have devices for sale for $250 usually (rando $200 flash sales sometimes) and there's a $10 / month subscription (2 months free w/ purchaseAug 20, 2026 1:36 AM

foxnews.com
Harvard agrees to $53M settlement with families after donated body parts were stolen, sold on black markethttps://www.foxnews.com/us/harvard-agrees-53m-settlement-families-donated-body-parts-stolen-sold-black-marketHarvard University agreed to pay $53 million to settle lawsuits after former morgue manager Cedric Lodge stole and sold donated human remains.Aug 20, 2026 12:41 AM
sports.yahoo.com
Islam Makhachev Is a Top-5 UFC GOAT, Says Henry Cejudohttps://sports.yahoo.com/articles/islam-makhachev-top-5-ufc-003851502.htmlFormer UFC double champion Henry Cejudo thinks that Islam Makhachev has now entered the top five of the UFC GOAT list.Makhachev defeated Ian Machado Garry via unanimous decision in the main event of UFC 330 to win his 17th straight fight in the Octagon, setting a record for the longest win streak in UFC history.With […] The post Islam Makhachev Is a Top-5 UFC GOAT, Says Henry Cejudo appeared first...Aug 20, 2026 12:38 AM
sports.yahoo.com
Milwaukee Bucks lottery pick named biggest steal in 2026 NBA Drafthttps://sports.yahoo.com/articles/milwaukee-bucks-lottery-pick-named-003441193.htmlFormer Arizona guard Brayden Burries was recently voted as the biggest steal from the 2026 NBA Draft.Aug 20, 2026 12:34 AM
sports.yahoo.com
New Oklahoma State coach Eric Morris shoots and kills an armadillo in his yardhttps://sports.yahoo.com/articles/oklahoma-state-coach-eric-morris-002243820.htmlMorris, the former North Texas coach hired to revive a struggling program in Stillwater, described his overnight encounter with the armored mammal during a session with reporters this week. It was the first encounter with an armadillo for Morris, who said it “was crushing my yard, my flower beds, digging everything up.” Morris made quick work of the animal and gave new meaning to “Pistols Firing...Aug 20, 2026 12:22 AM

spacenews.com
Hypersonic missile startup Castelion raises $1 billionhttps://spacenews.com/hypersonic-missile-startup-castelion-raises-1-billion/Company founded by former SpaceX executives aims to produce a low-cost hypersonic weapon and a broader portfolio of longer-range strike and missile defense weapons The post Hypersonic missile startup Castelion raises $1 billion appeared first on SpaceNews.Aug 19, 2026 11:12 PM

variety.com
‘Lucky’ Creators on Deciding Who Dies in the Finale, Why the Show Really Is Over and Not Knowing About Drew Starkey’s ‘Avid’ Fandom ‘Until We Killed Him’https://variety.com/2026/tv/news/lucky-creators-finale-deaths-killing-drew-starkey-anya-taylor-joy-1236838325/SPOILER ALERT: This interview contains major spoilers from “All Good Things,” the finale of Apple TV’s “Lucky.” Luciana “Lucky” Armstrong (Anya Taylor-Joy) has just pulled off one last con on the most important person left in her life: her formerly incarcerated father, John (Timothy Olyphant). In the series finale of “Lucky,” the titular con artist […]Aug 19, 2026 11:00 PM