Searching We.Love.Privacy.Club

Twts matching #writing
Sort by: Newest, Oldest, Most Relevant

ReactOS Celebrates 30 Years
jeditobe writes: ReactOS, the open-source operating system aimed at binary compatibility with Windows, recently marked its 30th anniversary. Launched in 1996, ReactOS has focused on providing a free alternative to Windows, with compatibility for Windows applications and drivers. Though still in development, it has made significant progress in recent years, including improvements to USB support, better hardware compatib … ⌘ Read more

⤋ Read More

DOT Plans To Use Google Gemini AI To Write Regulations
The Trump administration is planning to use AI to write federal transportation regulations, ProPublica reported on Monday, citing the U.S. Department of Transportation records and interviews with six agency staffers. From the report: The plan was presented to DOT staff last month at a demonstration of AI’s “potential to revolutionize the way we draft rulemakings,” a … ⌘ Read more

⤋ Read More

Washington State May Mandate ‘Firearm Blueprint Detection Algorithms’ For 3D Printers
Adafruit managing director Phillip Torrone (also long-time Slashdot reader ptorrone ) writes: Washington State lawmakers are proposing bills (HB 2320 and HB 2321) that would require 3D printers and CNC machines to block certain designs using software-based “firearms blueprint detection algorithms.” In p … ⌘ Read more

⤋ 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. 🥳

⤋ Read More

China Makes Too Many Cars, and the World Is Increasingly OK With It
After years of Western governments raising alarms about Chinese automotive overcapacity and erecting tariff barriers, an unexpected pivot is now underway as major economies cautiously open their markets to Chinese electric vehicles, Bloomberg writes. Beijing itself has started acknowledging the problem at home. Chinese regulators last week w … ⌘ Read more

⤋ Read More

The Microsoft-OpenAI Files
Longtime Slashdot reader theodp writes: GeekWire takes a look at AI’s defining alliance in The Microsoft-OpenAI Files, an epic story drawn from 200+ documents, many made public Friday in Elon Musk’s ongoing suit accusing OpenAI and its CEO Sam Altman of abandoning the nonprofit mission (Microsoft is also a defendant). Musk, who was an OpenAI co-founder, is seeking up to $134 billion in damages. “Previously undisclosed emails, … ⌘ Read more

⤋ Read More

Wikipedia’s Guide to Spotting AI Is Now Being Used To Hide AI
Ars Technica’s Benj Edwards reports: On Saturday, tech entrepreneur Siqi Chen released an open source plugin for Anthropic’s Claude Code AI assistant that instructs the AI model to stop writing like an AI model. Called “Humanizer,” the simple prompt plugin feeds Claude a list of 24 language and formatting patterns that Wikipedia editors have listed as ch … ⌘ Read more

⤋ Read More

cURL Removes Bug Bounties
Ancient Slashdot reader jantangring shares a report from Swedish electronics industry news site Elektroniktidningen (translated to English), writing: “Open source code library cURL is removing the possibility to earn money by reporting bugs, hoping that this will reduce the volume of AI slop reports,” reports etn.se. “Joshua Rogers – AI wielding bug hunter of fame – thinks it’s a great idea.” cURL maintainer Daniel Stenber … ⌘ Read more

⤋ Read More

NYSE Eyes 24/7 Tokenized Stock Trading With Weekend Access and Same-Day Settlement
BrianFagioli writes: The New York Stock Exchange, owned by Intercontinental Exchange, is developing a platform for trading tokenized versions of U.S. listed stocks and ETFs around the clock, pending regulatory approval. The system would combine the NYSE’s existing matching engine with blockchain-based settlement … ⌘ Read more

⤋ Read More

Young College Graduates Suddenly Aren’t Finding Jobs Faster Than Non-College Graduates
U.S. college graduates “have historically found jobs more quickly than people with only a high school degree,” writes Bloomberg.

“But that advantage is becoming a thing of the past, according to new research from the Federal Reserve Bank of Cleveland.”

“Recently, the job-finding rate for young college-edu … ⌘ Read more

⤋ Read More

Hundreds Answer Europe’s ‘Public Call for Evidence’ on an Open Digital Ecosystem Strategy
The European Commission “has opened a public call for evidence on European open digital ecosystems,” writes Help Net Security, part of preparations for an upcoming Communication “that will examine the role of open source in EU’s digital infrastructure.”

The consultation runs from January 6 to Februa … ⌘ Read more

⤋ Read More

Spent basically the entire day (except for the mandatory walk) fighting with Python’s type hints. But, the result is that my widget toolkit now passes mypy --strict.

I really, really don’t want to write larger pieces of software without static typing anymore. With dynamic typing, you must test every code path in your program to catch even the most basic errors. pylint helps a bit (doesn’t need type hints), but that’s really not enough.

Also, somewhere along the way, I picked up a very bad (Python) programming style. (Actually, I know exactly where I picked that up, but I don’t want to point the finger now.) This style makes heavy use of dicts and tuples instead of proper classes. That works for small scripts, but it very quickly turns into an absolute mess once the program grows. Prime example: jenny. 😩

I have a love-hate relationship with Python’s type hints, because they are meaningless at runtime, so they can be utterly misleading. I’m beginning to like them as an additional safety-net, though.

(But really, if correctness is the goal, you either need to invest a ton of time to get 100% test coverage – or don’t use Python.)

⤋ Read More

Acer Sues Verizon, AT&T, and T-Mobile, Alleging Infringment on Acer’s Cellular Networking Patents
Slashdot reader BrianFagioli writes: Acer has filed three separate patent infringement lawsuits against AT&T, Verizon, and T-Mobile, taking the unusual step of hauling the nation’s largest wireless carriers into federal court. The suits, filed in the Eastern District of Texas, claim t … ⌘ Read more

⤋ Read More

Ruby on Rails Creator Says AI Coding Tools Still Can’t Match Most Junior Programmers
AI still can’t produce code as well as most junior programmers he’s worked with, David Heinemeier Hansson, the creator of Ruby on Rails and co-founder of 37 Signals, said on a recent podcast [video link], which is why he continues to write most of his code by hand. Hansson compared AI’s current coding … ⌘ Read more

⤋ Read More
In-reply-to » Btw @movq you've inspired me to try and have a good 'ol crack at writing a bootloader, stage1 and customer microkernel (µKernel) that will eventually load up a Mu (µ) program and run it! 🤣 I will teach Mu (µ) to have a ./bin/mu -B -o ... -p muos/amd64 ... target.

I’ve only got a handful of syscalls working right now. Taking inspiration from the calling convention of the Linux kernel and even made the service/interrupt handler int 0x80h 🤣 I’ve only got read, write, alloc and exit working righ tnow 🥲

⤋ Read More

Code.org: Use AI In an Interview Without Our OK and You’re Dead To Us
theodp writes: Code.org, the nonprofit backed by AI giants Microsoft, Google and Amazon and whose Hour of AI and free AI curriculum aim to make world’s K-12 schoolchildren AI literate, points job seekers to its AI Use Policy in Hiring, which promises dire consequences for those who use AI during interviews or take home assignments without … ⌘ Read more

⤋ Read More

Btw @movq@www.uninformativ.de you’ve inspired me to try and have a good ‘ol crack at writing a bootloader, stage1 and customer microkernel (µKernel) that will eventually load up a Mu (µ) program and run it! 🤣 I will teach Mu (µ) to have a ./bin/mu -B -o ... -p muos/amd64 ... target.

⤋ Read More

Iran’s Internet Shutdown Is Now One of the Longest Ever
Iran has imposed one of the longest nationwide internet shutdowns in its history, cutting more than 92 million people off from connectivity for over a week as mass anti-government protests continue. TechCrunch reports: As of this writing, Iranians have not been able to access the internet for more than 170 hours. The previous longest shutdowns in the country lasted … ⌘ Read more

⤋ Read More

Students Increasingly Choosing Community College or Certificates Over Four-Year Degrees
DesScorp writes: CNBC reports that new data from the National Student Clearinghouse indicates that enrollment growth in four year degree programs is slowing down, while growth in two year and certification programs is accelerating: Enrollments in undergraduate certificate and associate degree programs … ⌘ Read more

⤋ Read More

Amazon Threatens ‘Drastic Action’ After Saks Bankruptcy
Amazon wants a federal judge to reject Saks Global’s bankruptcy financing plan, writing in court papers the beleaguered department store “burned through hundreds of millions of dollars in less than a year” and failed to hold up their agreement. From a report: When Saks acquired Neiman Marcus for $2.7 billion in December 2024, Amazon invested $475 million into the venture … ⌘ Read more

⤋ Read More

Pentagon Device Linked To Havana Syndrome
“Since the United States reopened its embassy in Cuba in 2015, a number of personnel have reported a series of debilitating medical ailments which include dizziness, fatigue, problems with memory, and impaired vision,” writes longtime Slashdot reader smooth wombat. “For ten years, these sudden and unexplained onsets have been studied with no conclusive evidence one way or the other. Now comes … ⌘ Read more

⤋ Read More

Wine 11.0 Released
BrianFagioli writes: Wine 11.0 has officially landed, wrapping up a year of development with more than 6,000 code changes and a broad set of upgrades that touch gaming, desktop behavior, and long-standing architectural work. The biggest milestone is the completion of the new WoW64 model, which is now considered fully supported and allows 32-bit and even 16-bit applications to run in a cleaner way inside 64-bit prefixes. Wine also gains s … ⌘ Read more

⤋ Read More

Even Linus Torvalds Is Vibe Coding Now
Linus Torvalds has started experimenting with vibe coding, using Google’s Antigravity AI to generate parts of a small hobby project called AudioNoise. “In doing so, he has become the highest-profile programmer yet to adopt this rapidly spreading, and often mocked, AI-driven programming,” writes ZDNet’s Steven Vaughan-Nichols. Fro the report: [I]t’s a trivial program called AudioNoise – a recen … ⌘ Read more

⤋ Read More

Should AI Agents Be Classified As People?
New submitter sziring writes: Harvard Business Review’s IdeaCast podcast interviewed McKinsey CEO Bob Sternfels, where he classified AI agents as people. “I often get asked, ‘How big is McKinsey? How many people do you employ?’ I now update this almost every month, but my latest answer to you would be 60,000, but it’s 40,000 humans and 20,000 agents.”

This statement looks to be the opening shots … ⌘ Read more

⤋ Read More

How Markdown Took Over the World
22 years ago, developer and columnist John Gruber released Markdown, a simple plain-text formatting system designed to spare writers the headache of memorizing arcane HTML tags. As technologist Anil Dash writes in a long piece, Markdown has since embedded itself into nearly every corner of modern computing.

Aaron Swartz, then seventeen years old, served as the beta tester before its quiet March 2004 debut. Goo … ⌘ Read more

⤋ Read More

How Many Years Left Until the Hubble Space Telescope Reenters Earth’s Atmosphere?
“The clock is ticking” on the Hubble Space Telescope,
writes the space news site Daily Galaxy, citing estimates from the unofficial “Hubble Reentry Tracker” site (which uses orbital data from the site space-track.org, created by tech integrator SAIC):

While Hubble was initially launched into low Earth orbit at … ⌘ Read more

⤋ Read More

China Tests a Supercritical CO2 Generator in Commercial Operation
“China recently placed a supercritical carbon dioxide power generator into commercial operation,” writes CleanTechnica, “and the announcement was widely framed as a technological breakthrough.”

The system, referred to as Chaotan One, is installed at a steel plant in Guizhou province in mountainous southwest China and is designed to recover … ⌘ Read more

⤋ Read More

AI-Powered Social Media App Hopes To Build More Purposeful Lives
A founder of Twitter and a founder of Pinterest are now working on
“social media for people who hate social media,” writes a Washington Post columnist.

“When I heard that this platform would harness AI to help us live more meaningful lives, I wanted to know more…”

Their bid for redemption is West Co. — the Workshop for Emotional and Spiritual … ⌘ Read more

⤋ Read More

Meta Announces New Smartglasses Features, Delays International Rollout Claiming ‘Unprecedented’ Demand’
This week Meta announced several new features for “Meta Ray-Ban Display” smartglasses:
- A new teleprompter feature for the smart glasses (arriving in a phased rollout)
- The ability to send messages on WhatsApp and Messenger by writing with your finger on any surface. (A … ⌘ Read more

⤋ Read More

CES Worst In Show Awards Call Out the Tech Making Things Worse
Longtime Slashdot reader chicksdaddy writes: CES, the Consumer Electronics Show, isn’t just about shiny new gadgets. As AP reports, this year brought back the fifth annual Worst in Show anti-awards, calling out the most harmful, wasteful, invasive, and unfixable tech at the Las Vegas show. The coalition behind the awards – including Repair.org, iFixi … ⌘ Read more

⤋ Read More

Ultimate Camouflage Tech Mimics Octopus In Scientific First
Researchers at Stanford University have created a programmable synthetic “skin” that can independently change color and texture, “a feat previously only available within the animal kingdom,” reports the Register. From the report: The technique employs electron beams to write patterns and add optical layers that create color effects. When exposed to wate … ⌘ Read more

⤋ Read More

The Gap Between Premium and Budget TV Brands is Quickly Closing
The long-standing hierarchy in the TV market – Sony, Samsung and LG at the top, TCL and Hisense fighting it out in the midrange – is eroding as the budget brands close the performance gap and increasingly lead on technology innovation, The Verge writes. Hisense debuted the first RGB LED TV last year, and TCL’s X11L announced at CES 2026 … ⌘ Read more

⤋ Read More

Dell Walks Back AI-First Messaging After Learning Consumers Don’t Care
Dell’s CES 2026 product briefing, PC Gamer writes, stood out from the relentless AI-focused presentations that have dominated tech events for years, as the company explicitly chose to downplay its AI messaging when announcing a refreshed XPS laptop lineup, new ultraslim and entry-level Alienware laptops, Area-51 desktop refreshes and s … ⌘ Read more

⤋ Read More

I think this is finally a good metaphor to talk about “simple” software:

https://oldbytes.space/@psf/115846939202097661

Distilled software.

I quote in full:

principles of software distillation:

Old software is usually small and new software is usually large. A distilled program can be old or new, but is always small, and is powerful by its choice of ideas, not its implementation size.

A distilled program has the conciseness of an initial version and the refinement of a final version.

A distilled program is a finished work, but remains hackable due to its small size, allowing it to serve as the starting point for new works.

Many people write programs, but few stick with a program long enough to distill it.

I often tried to tell people about “simple” or “minimalistic” software, “KISS”, stuff like that, but they never understand – because everybody has a different idea of “simple”. The term “simple” is too abstract.

This is worth thinking about some more. 🤔

⤋ Read More

2025 Ends With Release of J. R. R. Tolkein’s Unpublished Story
2025’S final months finally saw the publication of J.R.R. Tolkein’s The Bovadium Fragments, writes the Los Angeles Review of Books:

Anyone who has read Tolkien’s letters will know that he is at his funniest when filled with rage, and The Bovadium Fragments is a work brimming with Tolkien’s fury — specifically, ire over mankind’s obsession with … ⌘ Read more

⤋ Read More

Workstation Owner Sadly Marks the End-of-Life for HP-UX
Wednesday marked the end of support for the last and final version of HP-UX, writes OSNews.

They call it “the end of another vestige of the heyday of the commercial UNIX variants, a reign ended by cheap x86 hardware and the increasing popularisation of Linux.”

I have two HP-UX 11i v1 PA-RISC workstations, one of them being my pride and joy: an HP c8000, the last … ⌘ Read more

⤋ Read More

‘Fish Mouth’ Filter Removes 99% of Microplastics From Laundry Waste
“The ancient evolution of fish mouths could help solve a modern source of plastic pollution,” writes ScienceAlert.
“Inspired by these natural filtration systems, scientists in Germany have invented a way to remove 99 percent of plastic particles from water. It’s based on how some fish filter-feed to eat microscopic prey.”

The research team ha … ⌘ Read more

⤋ Read More

Jobs Vulnerable to AI Replacement Actually ‘Thriving, Not Dying Out’, Report Suggests
AI startups now outnumber all publicly traded U.S. companies, according to a year-end note to investors from economists at Vanguard.

And yet that report also suggest the jobs most susceptible to replacement by AI “are actually thriving, not dying out,” writes Forbes:

“The approximately 100 occupations most ex … ⌘ Read more

⤋ Read More

Debian’s Bug Tracker With No Web UI For Editing Bugs Is Very Obscure For 2026
Debian’s maintainer of the Meson build system package is calling attention to the unfortunate state of Debian’s bug tracker in 2026. Editing bug data within Debian’s bug tracker still relies on writing custom-formatted emails and submitting them via your mail client. There still is no modern web UI for managing the Debian bug tracker as it was largely written in the early 90s… ⌘ Read more

⤋ Read More
In-reply-to » On my way to having windows and mouse support:

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.

⤋ Read More

Stewart Cheifet, Computer Chronicles Host, Dies At 87
Pibroch(CiH) writes: According to the obituary linked, Stewart Cheifet of Computer Chronicles fame has died. The obituary states he passed Dec 28, 2025. Cheifet and Digital Research founder Gary Kildall hosted the public television show The Computer Chronicles starting in 1984, and Stewart continued to host the show well into the 1990s. He was well-known for his aff … ⌘ Read more

⤋ Read More
In-reply-to » @lyse You actually have a Markdown parser/renderer in there? Oh dear. I would have been (well, I am) way too lazy for that. 😅

@movq@www.uninformativ.de Well, just a very limited subset thereof:

  1. inline and multiline code blocks using single/double/triple backticks (but no code blocks with just indentation)
  2. markdown links using using [text](url)
  3. markdown media links using ![alt](url)

And that’s it. No bold, italics, lists, quotes, headlines, etc.

Just like mentions, plain URLs, markdown links and markdown media URLs are highlighted and available in the URLs View. They’re also colored differently, similarly to code segments.

I definitely should write some documentation and provide screenshots.

⤋ Read More

NYC Inauguration Bans Raspberry Pi, Flipper Zero Devices
Longtime Slashdot reader ptorrone writes: The January 1, 2026, NYC mayoral inauguration prohibits attendees from bringing specific brand-name devices, explicitly banning Raspberry Pi single-board computers and the Flipper Zero, listed alongside weapons, explosives, and drones. Rather than restricting behaviors or capabilities like signal interference or unauth … ⌘ Read more

⤋ Read More

Things I’ve learned along the way:

  1. Writing self-contained and barely tied up programs didn’t go as well as I’d have thought
  2. Reverse engineering (to put it that way) an open source library
  3. Acceptance of non-Make build systems

⤋ Read More

‘Pull Over and Show Me Your Apple Wallet’
Longtime Slashdot reader theodp writes: MacRumors reports that Apple plans to expand iPhone and Apple Watch driver’s licenses to 7 U.S. states (CT, KY, MS, OK, UT, AR, VA). A recent convert is the State of Illinois, whose website videos demo how you can use your Apple Wallet license to display proof of identity or age the next time you get carded by a cop, bartender, or TSA agent. The new st … ⌘ Read more

⤋ Read More