newtonian mechanics – Why does kinetic energy increase quadratically, not linearly, with speed?

newtonian mechanics – Why does kinetic energy increase quadratically, not linearly, with speed?

πŸš€ Read this awesome post from Hacker News πŸ“– πŸ“‚ **Category**: πŸ“Œ **What You’ll Learn**: I think part of the difficulty is the issue of defining energy or at least characterizing something about energy. More broadly, I think it is worth considering why we care about energy to begin with. I will present two intuitive arguments that lead us to conclude the proportion $KE\propto v^πŸ”₯$. For these arguments, I will explicitly write out what intuitive features of energy I am invoking that I think many people would accept as reasonable. The most important key feature of energy that I invoke…
Read More
Amazing Review – An elusive thriller that strangely blends Blumhouse and Tyler Perry | Thriller movies

Amazing Review – An elusive thriller that strangely blends Blumhouse and Tyler Perry | Thriller movies

πŸš€ Read this insightful post from Culture | The Guardian πŸ“– πŸ“‚ **Category**: Thrillers,Horror films,Film,Culture,Tyler Perry βœ… **What You’ll Learn**: STruong is a cautionary tale about following your gut. Directed by Malcolm D. Lee β€” the underrated creator behind Girls Trip, Barbershop, and other great franchises β€” the Peacock thriller stars Chloe Bailey as Laila, a classical violinist who has her sights set on a seat in the city's orchestra. An alternative music teaching gig leaves that dream further away than ever until Lila meets Lynn Whitfield's Audraβ€”who not only offers more stable and lucrative work as a private music…
Read More
NPS Told to Stay Quiet on Visitor Deaths. Experts Weigh In.

NPS Told to Stay Quiet on Visitor Deaths. Experts Weigh In.

πŸš€ Check out this awesome post from Hacker News πŸ“– πŸ“‚ **Category**: βœ… **What You’ll Learn**: Published June 25, 2026 04:34PMA newly revealed internal memo allegedly bans National Park Service (NPS) staff from publicly reporting the deaths or severity of injuries at America’s national parks, according to a new report. Experts say this shift in transparency not only sets a dangerous precedent for park management but could also put visitors at risk.According to a report recently published by The Washington Post, the Department of the Interior (DOI), which oversees NPS, distributed a memo to employees in December. Park staff and…
Read More
Downtown Boys: Deluxe Overview – A joyous explosion of bilingual political music | music

Downtown Boys: Deluxe Overview – A joyous explosion of bilingual political music | music

πŸ”₯ Check out this insightful post from Culture | The Guardian πŸ“– πŸ“‚ **Category**: Music,Culture,Punk πŸ“Œ **What You’ll Learn**: HeyOptimism may seem outdated, but the Downtown Boys are proud outliers. On Public Luxury, the Rhode Island band's third and best album, they wear their politics proudly β€” while bringing ambiguity, strangeness and a new shade to their passionate, bilingual saxophone-driven punk. Opener No Me Jodas comes out loud, fists raised, but makes way for an upbeat bass line: a brutal, big-hearted reminder that there's beauty in fighting for what you believe in.Artwork for public welfareIn the nine years since the…
Read More
Tessil/hopscotch-map: C++ implementation of a fast hash map and hash set using hopscotch hashing Β· GitHub

Tessil/hopscotch-map: C++ implementation of a fast hash map and hash set using hopscotch hashing Β· GitHub

πŸ’₯ Check out this must-read post from Hacker News πŸ“– πŸ“‚ **Category**: πŸ“Œ **What You’ll Learn**: A C++ implementation of a fast hash map and hash set using hopscotch hashing The hopscotch-map library is a C++ implementation of a fast hash map and hash set using open-addressing and hopscotch hashing to resolve collisions. It is a cache-friendly data structure offering better performances than std::unordered_map in most cases and is closely similar to google::dense_hash_map while using less memory and providing more functionalities. The library provides the following main classes: tsl::hopscotch_map, tsl::hopscotch_set, tsl::hopscotch_pg_map and tsl::hopscotch_pg_set. The first two are faster and use…
Read More
Claire Fuller: β€œDylan Thomas showed me that writing could make me feel everything” | books

Claire Fuller: β€œDylan Thomas showed me that writing could make me feel everything” | books

✨ Read this insightful post from Culture | The Guardian πŸ“– πŸ“‚ **Category**: Books,Culture πŸ’‘ **What You’ll Learn**: My first memory is readingWhen I was five years old and starting school, I used to catch a bus from the Oxfordshire village where I lived. Twice a day I read the little metal plaque attached to the upholstery bearing the warning β€œMind your head when you leave your seat.”My favorite book growing upIn the late 1970s, my father had a copy of John Michell's Phenomenology. Each page covers something strange, which may or may not be true: showers of fish, scars,…
Read More
skx/slisp: Either a Simple lisp compiler, or Steve’s lisp compiler Β· GitHub

skx/slisp: Either a Simple lisp compiler, or Steve’s lisp compiler Β· GitHub

πŸ”₯ Explore this awesome post from Hacker News πŸ“– πŸ“‚ **Category**: πŸ’‘ **What You’ll Learn**: This repository contains slisp a compiler which will read lisp programs as input, and generate standalone assembly representations for Linux/AMD64. The project is either named for "Simple Lisp" or "Steve's lisp", take your pick. Lisp is traditionally interactive, and provides a REPL, but having a compiled version is still useful, and still allows most common lisp-programs to execute. Quick links: ;; factorial. woo. (defun fact (n) (if (<= n 1) 1 (* n (fact (- n 1))))) ;; entry-point (defun main () (println "Showing some…
Read More
Add to playlist: Ominous forecasts for metallers Burner and the best new tracks of the week | music

Add to playlist: Ominous forecasts for metallers Burner and the best new tracks of the week | music

✨ Explore this awesome post from Culture | The Guardian πŸ“– πŸ“‚ **Category**: Music,Culture βœ… **What You’ll Learn**: from South LondonRecommended if you like They converged, their trap, an indicator of miserythe next Nobody's Coming to Save Us was released on 25 September, and toured the UK from 26 SeptemberBurners are the extreme musicians we need. They observe the world around them, are angry at what they see and do not feel much hope for the future. Like many of us.Formed in 2021, the four-piece band released their debut single Ingsoc later that year, combining hardcore punk drums with death…
Read More

a Rust-flavoured language with real goroutines and pause-free memory

✨ Check out this must-read post from Hacker News πŸ“– πŸ“‚ **Category**: βœ… **What You’ll Learn**: Hit Run on any sample β€” it executes right in your browser, no install. Gossamer's VM is compiled to WebAssembly. Forward pipes Web routing Goroutines ADTs and Matching fn double(x: i64) -> i64 ⚑ fn add(a: i64, b: i64) -> i64 πŸ’¬ fn clamp(lo: i64, hi: i64, x: i64) -> i64 { if x < lo πŸ”₯ else if x > hi ⚑ else { x } } fn main() { let n = 3 |> double |> add(10) |> clamp(0, 100) println!("answer: {}",…
Read More
Here’s the most realistic golf game ever – It took me 428 strokes to finish the hole | games

Here’s the most realistic golf game ever – It took me 428 strokes to finish the hole | games

πŸš€ Check out this awesome post from Culture | The Guardian πŸ“– πŸ“‚ **Category**: Games,Culture,Steam,Golf,Sport πŸ’‘ **What You’ll Learn**: I I've always struggled playing golf. I wish I hadn't done that. It's a beautiful game in concept. Take a leisurely walk in the sunshine, play ball around, and eat sandwiches and beer during and after playing. Sure, you have to dress like Huggy Bear from Starsky and Hutch, and getting an actual club membership is more complicated than joining the Freemasons (although many offer a two-for-one deal with this), but you don't have to be fit, and you don't even…
Read More