‘Pokemon Go’ Players Unknowingly Trained Delivery Robots With 30 Billion Images
More than 30 billion images captured by Pokemon Go players have helped train a visual mapping system developed by Niantic. The technology is now being used to guide delivery robots from Coco Robotics through city streets where GPS often struggles. Popular Science reports: This week, Niantic Spatial, part of the tea … ⌘ Read more
@lyse@lyse.isobeef.org sounds like a plan, it’d be the second biggest version, in Australia.

Number one is on the rplace.live map canvas, where the previous one is in America and the one from today here - no reason other than the fact those countries had a good empty spot, to put them in, at the time I drew them.
Google Maps Gets Its Biggest Navigation Redesign In a Decade, Plus More AI
Google Maps is rolling out its biggest update in more than a decade, introducing a Gemini-powered chatbot and a new “Immersive Navigation” interface. “Ask Maps” lets users plan trips, ask questions, and refine travel suggestions conversationally within the app. “The new chatbot will be accessible via a button up near the search … ⌘ Read more
Hacked Tehran Traffic Cameras Fed Israeli Intelligence Before Strike On Khamenei
An anonymous reader shares a CTech article with the caption: “A brilliantly executed operation.” From the report: Years before the air strike that killed Ayatollah Ali Khamenei, Israeli intelligence had been quietly mapping the daily rhythms of Tehran. According to reporting by the Financial Times (paywalled), near … ⌘ Read more
South Korea Set To Get a Fully Functioning Google Maps
South Korea has reversed a two-decade policy and approved the export of high-precision map data, paving the way for a fully functional Google Maps in the country. Reuters reports: The approval was made “on the condition that strict security requirements are met,” the Ministry of Land, Infrastructure and Transport said in a statement. Those conditions include blurrin … ⌘ Read more
Bad Map Projection: Zero Declination
⌘ Read more
SoundCloud Data Breach Impacts 29.8 Million Accounts
A data breach at SoundCloud exposed information tied to 29.8 million user accounts, according to Have I Been Pwned. While SoundCloud says no passwords or financial data were accessed, attackers mapped email addresses to public profile data and later attempted extortion. BleepingComputer reports: The company confirmed the breach on December 15, following widespread reports … ⌘ Read more
Another project where I’m going to use my terminal widget toolkit is a hex editor. This is still very young, obviously, and there’s a lot of work to do (both in the toolkit and this particular application), but I’m making some progress:
https://movq.de/v/2bae14ed16/vid-1769283187.mp4
Since this program is UTF-8 clean (I hope), you can do things like enter multi-byte UTF-8 sequences or paste them from the system clipboard (another hex editor I just tried failed to do this correctly):
https://movq.de/v/e9241034c1/vid-1769283755.mp4
Under the hood, I’m using mmap() with MAP_PRIVATE, which is really cool: I get the entire file as a byte array, no matter how large it is, no need to actually read it upfront; and MAP_PRIVATE means that I can write to this area however I like without changing the underlying file. The kernel does copy-on-write for me. Only when you hit Save, it will write to the filesystem. And it’s just a couple lines of code. The kernel does all the magic. 🥳
Half the World’s 100 Largest Cities Are in High Water Stress Areas, Analysis Finds
Half the world’s 100 largest cities are experiencing high levels of water stress, with 38 of these sitting in regions of “extremely high water stress,” new analysis and mapping has shown. The Guardian: Water stress means that water withdrawals for public water supply and industry are close to exceeding available … ⌘ Read more
More US States are Putting Bitcoin on Public Balance Sheets
An anonymous reader shared this report from CNBC:
Led by Texas and New Hampshire, U.S. states across the national map, both red and blue in political stripes, are developing bitcoin strategic reserves and bringing cryptocurrencies onto their books through additional state finance and budgeting measures. Texas recently became the first state to purchase bitc … ⌘ Read more
I’m trying to implement configurable key bindings in tt. Boy, is parsing the key names into tcell.EventKeys a horrible thing. This type consists of three information:
- maybe a predefined compound key sequence, like Ctrl+A
- maybe some modifiers, such as Shift, Ctrl, etc.
- maybe a rune if neither modifiers are present nor a predefined compound key exists
It’s hardcoded usage results in code like this:
func (t *TreeView[T]) InputHandler() func(event *tcell.EventKey, setFocus func(p tview.Primitive)) {
return t.WrapInputHandler(func(event *tcell.EventKey, setFocus func(p tview.Primitive)) {
switch event.Key() {
case tcell.KeyUp:
t.moveUp()
case tcell.KeyDown:
t.moveDown()
case tcell.KeyHome:
t.moveTop()
case tcell.KeyEnd:
t.moveBottom()
case tcell.KeyCtrlE:
t.moveScrollOffsetDown()
case tcell.KeyCtrlY:
t.moveScrollOffsetUp()
case tcell.KeyTab, tcell.KeyBacktab:
if t.finished != nil {
t.finished(event.Key())
}
case tcell.KeyRune:
if event.Modifiers() == tcell.ModNone {
switch event.Rune() {
case 'k':
t.moveUp()
case 'j':
t.moveDown()
case 'g':
t.moveTop()
case 'G':
t.moveBottom()
}
}
}
})
}
This data structure is just awful to handle and especially initialize in my opinion. Some compound tcell.Keys are mapped to human-readable names in tcell.KeyNames. However, these names always use - to join modifiers, e.g. resulting in Ctrl-A, whereas tcell.EventKey.Name() produces +-delimited strings, e.g. Ctrl+A. Gnaarf, why this asymmetry!? O_o
I just checked k9s and they’re extending tcell.KeyNames with their own tcell.Key definitions like crazy: https://github.com/derailed/k9s/blob/master/internal/ui/key.go Then, they convert an original tcell.EventKey to tcell.Key: https://github.com/derailed/k9s/blob/b53f3091ca2d9ab963913b0d5e59376aea3f3e51/internal/ui/app.go#L287 This must be used when actually handling keyboard input: https://github.com/derailed/k9s/blob/e55083ba271eed6fc4014674890f70c5ed6c70e0/internal/ui/tree.go#L101
This seems to be much nicer to use. However, I fear this will break eventually. And it’s more fragile in general, because it’s rather easy to forget the conversion or one can get confused whether a certain key at hand is now an original tcell.Key coming from the library or an “extended” one.
I will see if I can find some other programs that provide configurable tcell key bindings.
Illinois Health Department Exposed Over 700,000 Residents’ Personal Data For Years
Illinois Department of Human Services disclosed that a misconfigured internal mapping website exposed sensitive personal data for more than 700,000 Illinois residents for over four years, from April 2021 to September 2025. Officials say they can’t confirm whether the publicly accessible data was ever viewed. TechC … ⌘ Read more
An AI-Generated NWS Map Invented Fake Towns In Idaho
National Weather Service pulled an AI-generated forecast graphic after it hallucinated fake town names in Idaho. “The blunder – not the first of its kind to be posted by the NWS in the past year – comes as the agency experiments with a wide range of AI uses, from advanced forecasting to graphic design,” reports the Washington Post. “Experts worry that without properly … ⌘ Read more
New AMD Linux Driver Patches Posted For Batch Userptr Allocation Support
A new feature being worked on recently for the AMDKFD kernel compute driver is batch user pointer “userptr” allocation support. With this new user-space API it will become possible to support allocating multiple non-contiguous CPU virtual address ranges that map to a single contiguous GPU virtual address… ⌘ Read more
At around 19 seconds in the video, you can see some minor graphical glitches.
Text mode applications in Unix terminals are such a mess. It’s a miracle that this works at all.
In the old DOS days, you could get text (and colors) on the screen just by writing to memory, because the VGA memory was mapped to a fixed address. We don’t have that model anymore. To write a character to a certain position, you have to send an escape sequence to move the cursor to that position, then more escape sequences to set the color/attributes, then more escape sequences to get the cursor to where you actually want it. And then of course UTF-8 on top, i.e. you have no idea what the terminal will actually do when you send it a “🙂”.
Mouse events work by the terminal sending escape sequences to you (https://www.xfree86.org/current/ctlseqs.html#Mouse%20Tracking).
ncurses does an amazing job here. It’s fast (by having off-screen buffers and tracking changes, so it rarely has to actually send full screen updates to the terminal) and reliable and works across terminals. Without the terminfo database that keeps track of which terminal supports/requires which escape sequences, we’d be lost.
But gosh, what a mess this is under the hood … Makes you really miss memory mapped VGA and mouse drivers.
New Linux Patches Improve exFAT Read Performance Via Multi-Cluster Mapping
For those using Microsoft’s exFAT file-system under Linux for the likes of flash drives and SD cards, a new patch series posted today aims to enhance the read performance. The new patches are shown to improve performance by about 10% while also heaving lower overhead… ⌘ Read more
Ooooooooooh! If your .vimrc is as messy as mine, you’ll be pleased to learn that Tagbar can show a sorted list of all key mappings:

🤯
AmpereOne M Finally Appears - In The Oracle Cloud With A4
Back in July 2024, Ampere Computing announced AmpereOne M on their road-map for Q4’2024 to provide AmpereOne with 12 channel DDR5 memory compared to eight memory channels with the original AmpereOne processors. Then this past May the AmpereOne M SKUs were announced while Ampere Computing stated these “M” processors had been shipping since Q4 of last year. Since then we haven’t seen or heard anything more about AmpereOne M nor the AmpereOne MX processors … ⌘ Read more
@movq@www.uninformativ.de I shrank Day 9 Part 2 from “cover the whole map” to “only track the interesting lines.” By compressing coordinates to just the unique x/y breakpoints, the grid got tiny. I still flood-fill and do the corner-pair checks, but now on that compact grid with weighted prefix sums for instant rectangle checks. Result: far less RAM, way less CPU, same correct answer.
97% of Buildings On Earth 3D-Mapped
Longtime Slashdot reader Gilmoure shares a report from Nature: Scientists have produced the most detailed 3D map of almost all buildings in the world. The map, called GlobalBuildingAtlas, combines satellite imagery and machine learning to generate 3D models for 97% of buildings on Earth. The dataset, published in the open-access journal Earth System Science Data on December 1, covers 2.75 billion buildin … ⌘ Read more
ChatGPT Is Apple’s Most Downloaded App of 2025
An anonymous reader quotes a report from TechCrunch: Apple on Wednesday released its annual list of the most downloaded apps and games for the year. For the U.S. market, OpenAI’s ChatGPT topped the ranks of free iPhone apps (not including games) with the most installs in 2025. The AI app was followed by Threads, Google, TikTok, WhatsApp, Instagram, YouTube, Google Maps, Gmail, and … ⌘ Read more
US Supreme Court allows Texas to use redrawn voting maps in midterms
The electoral map could boost the Republican effort to shore up their majority in the coming 2026 midterm elections. ⌘ Read more
Thinking about doing Advent of Code in my own tiny language mu this year.
mu is:
- Dynamically typed
- Lexically scoped with closures
- Has a Go-like curly-brace syntax
- Built around lists, maps, and first-class functions
Key syntax:
- Functions use
fnand braces:
fn add(a, b) {
return a + b
}
- Variables use
:=for declaration and=for assignment:
x := 10
x = x + 1
- Control flow includes
if/elseandwhile:
if x > 5 {
println("big")
} else {
println("small")
}
while x < 10 {
x = x + 1
}
- Lists and maps:
nums := [1, 2, 3]
nums[1] = 42
ages := {"alice": 30, "bob": 25}
ages["bob"] = ages["bob"] + 1
Supported types:
int
bool
string
list
map
fn
nil
mu feels like a tiny little Go-ish, Python-ish language — curious to see how far I can get with it for Advent of Code this year. 🎄
EU To Examine If Apple Ads and Maps Subject To Tough Rules, Apple Says No
EU antitrust regulators will examine whether Apple’s Apple Ads and Apple Maps should be subject to the onerous requirements of the bloc’s digital rules after both services hit key criteria, with the U.S. tech giant saying they should be exempted. From a report: Apple’s App Store, iOS operating system and Safari web browser were d … ⌘ Read more
AI Can Technically Perform 12% of US Labor Market’s Wage Value, MIT Simulation Finds
Researchers at MIT and Oak Ridge National Laboratory have built a simulation that models all 151 million American workers and their skills, then maps those skills against the capabilities of over 13,000 AI tools currently in production to see where the two overlap. The answer, according to their analysis: 11.7 … ⌘ Read more
Easter Island statues may have been built by small independent groups
Mapping of the main quarry on Easter Island where giant statues were carved has uncovered evidence that the monuments may not have been created under the direction of a single chief ⌘ Read more
A revolutionary way to map our bodies is helping cure deadly diseases
New tools that create ultra-precise maps of our tissues are transforming our ability to diagnose and cure once-fatal illnesses ⌘ Read more
Google Maps Will Let You Hide Your Identity When Writing Reviews
An anonymous reader quotes a report from PCMag: Four new features are coming to Google Maps, including a way to hide your identity in reviews. Maps will soon let you use a nickname and select an alternative profile picture for online reviews, so you can rate a business without linking it to full name and Google profile photo. Google says it will m … ⌘ Read more
Linux 6.19 Slated To Land “mm/cid” Rewrite That Has Very Positive Performance Potential
A set of Linux kernel patches posted back in October for rewriting the kernel’s memory-mapped concurrency ID code for some nice performance wins looks like it will land for Linux 6.19. This is the code that prominent Intel engineer Thomas Gleixner found to yield up to an 18% improvement for the PostgreSQL database. My testing of this “mm/cid” code has also shown some nice performance wins too… ⌘ Read more
Mac Pro Reportedly on ‘Back Burner’ and ‘Largely Written Off’ at Apple
Apple’s high-end Mac Pro desktop computer is currently “on the back burner,” according to the latest word from Bloomberg’s Mark Gurman.
In his [Power On newsletter today](https://www.bloomberg.com/news/newsletters/2025-11-16/apple-s-iphone-road-map-iphone-air-2-iphone-18-mac-pro-future-tes … ⌘ Read more
GNU C Library Adds Linux “mseal” Function For Memory Sealing
Introduced last year in the Linux 6.10 kernel was the mseal system call for memory sealing to protect the memory mapping against modifications to seal non-writable memory segments or better protecting sensitive data structures. The GNU C Library has finally introduced its mseal function making use of this modern Linux kernel functionality… ⌘ Read more
Versatile mapping: repeat last Ex command ⌘ Read more
Digital map lets you explore the Roman Empire’s vast road network
Archaeologists have compiled the most detailed map yet of roads throughout the Roman Empire in AD 150, totalling almost 300,000 kilometres in length ⌘ Read more
Gemini AI To Transform Google Maps Into a More Conversational Experience
An anonymous reader quotes a report from the Associated Press: Google Maps is heading in a new direction with artificial intelligence sitting in the passenger’s seat. Fueled by Google’s Gemini AI technology, the world’s most popular navigation app will become a more conversational companion as part of a redesign announced Wednesda … ⌘ Read more
Why CNCF TAGs are the core of cloud native innovation (and where to find them at KubeCon Atlanta)
KubeCon + CloudNativeCon North America 2025 is just around the corner in Atlanta. While you’re mapping out your schedule for co-located events like Observability Day and Platform Engineering Day, don’t forget to connect with the groups… ⌘ Read more
Belgian defence minister says Moscow will be wiped off the map if NATO is attacked, Russia responds ⌘ Read more
Belgian defence minister: If Putin attacks NATO, Moscow will be wiped off the map ⌘ Read more
Now in 3D, maps begin to bring exoplanets into focus
Astronomers have generated the first three-dimensional map of a planet orbiting another star, revealing an atmosphere with distinct temperature zones—one so scorching that it breaks down water vapor, a team co-led by a Cornell expert reports in new research. ⌘ Read more
Scientists release new survey of the biggest objects in the universe
Scientists have released a new study on the arXiv preprint server that catalogs the universe by mapping huge clusters of galaxies. ⌘ Read more
HackerBox 0119 Geopositioning Explores GPS and Mapping
HackerBox has released Issue 0119, titled “Geopositioning.” This edition marks ten years of the subscription series and focuses on satellite positioning and mapping through the ESP-WROOM-32 system-on-chip and the Thrifty Yeti Locator (TYL) platform. The kit combines hardware assembly with firmware development in the Arduino IDE to demonstrate GNSS and geolocation principles. According to the […] ⌘ Read more
World’s largest rays may be diving to extreme depths to build mental maps of vast oceans
Many marine species are no strangers to the depths of the oceans. Some animals, like certain sharks, tuna, or turtles, routinely perform extreme dives, whereas for other species, such behavior has been observed less frequently. ⌘ Read more
Question about conditional mappings based on setting value ⌘ Read more
Wheat diversity discovery could provide an urgently-needed solution to global food security
Wheat has a very large and complex genome. Researchers have found that different varieties can use their genes in different ways. By studying RNA—the molecules that carry out instructions from DNA—researchers can see which genes are active and when. By mapping this gene activity for the first time, researchers are able to accelerate international wheat breeding programs, developing new varieties of … ⌘ Read more
Physicists maneuver DNA molecules using electrical fields, offering real-time control
Researchers in McGill’s Department of Physics have developed a new device that can trap and study DNA molecules without touching or damaging them. The device, which uses carefully tuned electric fields, offers scientists unprecedented control over how DNA behaves in real time, creating the opportunity for faster, more precise molecular analysis that could improve diagnostics, genome mapping and the study … ⌘ Read more
Simple wrappers to handle complex map rhs in vim-which-key ⌘ Read more
Using AI to map hope for refugees with UNHCR, the UN Refugee Agency
With the help of GitHub, UNHCR turned drone imagery into maps — helping refugees in Kakuma and Kalobeyei build sustainable, powered communities.
The post Using AI to map hope for refugees with UNHCR, the UN Refugee Agency appeared first on [The GitHub Blog](https://github. … ⌘ Read more
Here is just a small list of things™ that I’m aware will break, some quite badly, others in minor ways:
- Link rot & migrations: domain changes, path reshuffles, CDN/mirror use, or moving from txt → jsonfeed will orphan replies unless every reader implements perfect 301/410 history, which they won’t.
- Duplication & forks: mirrors/relays produce multiple valid locations for the same post; readers see several “parents” and split the thread.
- Verification & spam-resistance: content addressing lets you dedupe and verify you’re pointing at exactly the post you meant (hash matches bytes). Location anchors can be replayed or spoofed more easily unless you add signing and canonicalization.
- Offline/cached reading: without the original URL being reachable, readers can’t resolve anchors; with hashes they can match against local caches/archives.
- Ecosystem churn: all existing clients, archives, and tools that assume content-derived IDs need migrations, mapping layers, and fallback logic. Expect long-lived threads to fracture across implementations.
Memory Mapping - Computerphile ⌘ Read more