Tootfinder

Opt-in global Mastodon full text search. Join the index!

@heiseonline@social.heise.de
2026-06-24 16:18:00

Figma: KI-Werkzeuge für Design, Code und Zusammenarbeit
Figma entwickelt Werkzeuge, mit denen Entwickler und Designer gemeinsam Apps und Webseiten erarbeiten, statt anfangs leere Entwürfe später in Code nachzubauen.

@macandi@social.heise.de
2026-07-24 08:24:07

Claude Code erhält Zugriff auf iPhone-Simulator
Im App Store landen immer mehr Apps, die per Prompt entwickelt wurden. Claude Code macht es Interessierten noch ein bisschen einfacher.

@Techmeme@techhub.social
2026-06-24 11:50:56

Rockstar says physical copies of GTA 6 will contain a digital download code, not a disc; physical copies release on November 12, ahead of the November 19 launch (Tom Phillips/IGN)
ign.com/articles/grand-theft-a

@aral@mastodon.ar.al
2026-05-23 22:21:00

Talked to a software engineer at Microsoft working on Copilot Studio today at a social event and he said he was ashamed that he hadn’t written a single line of code in over three months. “I used to take pride in my work.” (They simply create plans in natural language and feed it to the LLM which generates the code. They can’t even do human code reviews anymore as there’s too much code being generated.)
He said a lot of them were waiting for a catastrophic event (something that would ta…

@aka_pugs@mastodon.social
2026-06-23 17:46:52

Manchester Code IEEE Milestone: spectrum.ieee.org/manchester-c
(Used in early Ethernet)

@kubikpixel@chaos.social
2026-06-22 20:10:08

«Ladybird-Browser stoppt öffentliche Code-Beiträge:
Wegen KI-generierter Beiträge schließt das Open-Source-Projekt Ladybird seine öffentlichen Pull-Requests, um die Sicherheit des Browsers zu garantieren.»
Da sehen wir wie KI das Gegenteil von sicherer Produktion ist, wenn es blind als unstrukturiertes Pull-Request eingesetzt wird.
🌐

@inthehands@hachyderm.io
2026-05-22 16:05:14

One last example:
The first LLM code example that really made my eyes pop was early after the release of GPT, when somebody got it to combine Breakout with Conway’s Game of Life (a truly delightful idea). It worked!
Funny thing: the Breakout code and the Life code had a •completely• different style and flavor. Red flag. In about 15 minutes of web searching, I was able to find one of the projects (can’t remember if it was the Breakout or the Life half) which it had copied wholesale, with just a few variable renames. And the other half? It was in Python, but it used dictionaries where it really should have used objects — tons of `thing["prop"]` where it should have said `thing.prop`, and lots of other un-Pythonic stuff besides. It was a machine translate of code from another language, very likely Javascript.
The entire thing was a plagiarized Breakout and a plagiarized Game of Life, one transpiled, and all stuck together in a single run loop. To be fair, figuring out how to (1) run both halves of the logic from a single loop and (2) count the Life cells as Breakout bricks is work I'd cheer on from a second-semester intro CS student! It's not, however, quite what's being sold by these companies.
6/

@fanf@mendeddrum.org
2026-05-19 17:42:02

from my link log —
The earliest Unix code: an anniversary source code release.
computerhistory.org/blog/the-e
saved 2019-10-18

@metacurity@infosec.exchange
2026-05-23 15:09:03

Great scoop, take a bow.
Again, why is *Susie Wiles* in charge of AI decisions? To avoid the chip shortage, Susie Wiles, Trump's chief of staff, has authorized the NSA to continue to use an advanced model made by Anthropic, even though the Pentagon has designated the company a supply chain threat.

@johnleonard@mastodon.social
2026-05-21 12:38:43

Hackers have stolen data from thousands of GitHub's internal code repositories after compromising an employee's device through a malicious extension for Visual Studio Code.

@adulau@infosec.exchange
2026-04-24 15:19:45

Hackathon.lu 2026, held in Luxembourg on 14–15 April 2026, once again showed what makes this event special: it is not just a place to present ideas, but a place where ideas turn into code, releases, integrations, datasets, pull requests, and concrete roadmaps.
Looking across the all project updates, the overall picture is clear. This year’s edition produced more than thirty concrete project outcome threads, spanning threat intelligence, malware analysis, detection engineering, vulnerab…

@joxean@mastodon.social
2026-06-24 10:23:35

This malware is pretty cool, it took me a while to get to the 4th obfuscation layer myself in IDA even when using a deobfuscation plugin myself, mixes its own obfuscated code deep in legitimate "goodware" code, uses lots of MBAs, has anti-VM tricks. High quality malware.
elas…

@Mediagazer@mstdn.social
2026-07-23 20:25:51

ESPN's layoffs cement its new identity, where it prioritizes self-promoting individuals like Pat McAfee, because it thinks that is the only way to break through (Andrew Marchand/The Athletic)
nytimes.com/athletic/74648…

@vyskocilm@witter.cz
2026-04-24 09:08:25

It's funny and sad at the same time to see Claude Code struggling with the same problems I do as a software developer.
The latest incarnation was that it got the design wrong because it could not get through the reflection- and annotation-heavy Java Spring Boot code. Pointing it to the equivalent explicit code in Go made it clear.
My human feedback would be rejected because I am, lazy, grumpy, using neovim and not smart enough to understand the "beauty" of a Spring …

@servelan@newsie.social
2026-05-24 15:45:25

#GiftLink
Trump Is Setting His Sights on Restricting Legal Immigration - The New York Times
nytimes.com/2026/05/23/us/poli

@thomasfuchs@hachyderm.io
2026-06-17 02:07:40

So, I'm still experimenting with locally run LLMs (powered by solar cells!) for writing some inconsequential data mangling stuff for my "vintage cameras" hobby; it's quite interesting how the development cycle with these LLMs sort of drives home that LLMs are completely useless for almost anything they're advertised for, like writing (for humans).
The thing is: coding is the use case that LLMs are by far most suitable for and they still largely suck at it.
There's immense amounts of training data of correctly functioning code, there's tons of documentation, a lot of code is in repositories that include the full history of its development including why stuff was changed in small bits, code itself is the simplest of "human" languages and mathematically non-ambiguous, code can be checked in small bits for correctness by just running it, in many languages simple code snippets can be written to introspect on the code (e.g. find out what methods an object supports, so an LLM can query the language or libraries themselves in addition to the user) and perhaps most importantly: code is always and has always been very similar to other, existing code as most software serves the ever same repetitive use cases, both in detail and on a high level.
YET… using LLMs to code requires countless iterations to get there, both internally in the LLM (to get the code even running in the first place) and together with the user to make it do the right thing. And even when it's "there" the code is mediocre at best, and often veering into appalling.
And this is expected to just work on the first try on much more complex issues like writing for humans? Transcribing doctors? Having legal opinions? Identifying fraud? lol, sure

@memeorandum@universeodon.com
2026-06-23 17:50:38

Social Security Is Running Out of Money, Fast (New York Times)
nytimes.com/2026/06/23/opinion
memeorandum.com/260623/p78#a26

@sauer_lauwarm@mastodon.social
2026-06-23 09:36:59

Vorzüglich, allerdings ohne Zitronensaft besser als mit. #nommention
cooking.nytimes.com/recipes/77

@toxi@mastodon.thi.ng
2026-07-21 15:12:42

With Firefox 153 officially supporting WebAssembly.promising and its counterpart WebAssembly.Suspending[1], I've updated thi.ng/wasm-api to simplify the integration of hybrid JS/WASM async function calls, so you don't have to worry about manually creating these wrappers:

  • Ja…
@poppastring@dotnet.social
2026-07-21 01:18:35

The last time code became “cheap,” we lost more than we realized — mentorship, craftsmanship, and the sense that engineering was a shared discipline.
I wrote about why that matters now more than ever:
poppastring.com/blog/what-we-l

@dennisfaucher@infosec.exchange
2026-05-22 13:23:53

I would like to thank Mythos for my having to perform multi-factor gymnastics every day for every work mobile app:
* Please re-authenticate
* User ID
* BeyondIdentity Challenge (which never works)
* Open BI QR Code
* Screen Shot QR Code
* Open in Work Side Photos app
* Google Lens to read the QR code and turn into a URL
* Open the URL
* Approve BI
* Challenged with my phone's 8 digit PIN
* Challenged by Okta
* Accept the Okta N…

@drewmcmanus@hachyderm.io
2026-04-24 00:58:15

“Even small adjustments, which are easier to both begin and maintain, can have a lasting effect on your health over time.”
nytimes.com/2026/04/23/well/sm

@Techmeme@techhub.social
2026-06-24 11:05:58

How Taiwan's Hsinchu Science Park, home to TSMC, became its wealthiest hub; one neighborhood reported 2023 average household incomes of $146K, 5x the average (New York Times)
nytimes.com/2026/06/24/busines

@v_i_o_l_a@openbiblio.social
2026-06-21 12:22:00

#TIL: "The book store supply chain [#Bookland] wanted to be able to identify individual books in greater detail than was possible with the U.P.C. code. […] The EAN aggreed and assigned them a country code [in 1985]. The code proposed by Bookland with a "978" prefix has now been accep…

page about the Bookland bar code from the book:
Nelson, Benjamin (1997): Punched Cards to Bar Codes. A 200 Year Journey with descriptions fo over 260 codes. Helmers.
photo from the book
Nelson, Benjamin (1997): Punched Cards to Bar Codes. A 200 Year Journey with descriptions fo over 260 codes. Helmers.
@shriramk@mastodon.social
2026-05-24 12:05:25

The fact that Claude Code can do all kinds of agentic things but not *checks watch* check a watch will never not be funny.

The share of people who give a shit about whether a given piece of writing, art, or code was produced with AI is going to fall off a cliff, and that fall has already started.
Five years from now, asking “Is this AI?” will feel about as urgent and meaningful as asking whether a photo was taken on film or digital.
A few specialists will care intensely. Everyone else will have moved on.
I’m not making a values or morality-based call on whether this is a good or bad thing.

@azonenberg@ioc.exchange
2026-06-23 04:10:59

Casually calling abi::__cxa_demangle in user interface and input validation code. As one does.

@aardrian@toot.cafe
2026-06-23 20:12:03

Reading an article shared by a reputable source about accessible scrollable tables and the article indicates words that relate to the code by using color-coded underlines that are not links and my brain broke before I saw all the encoded px and LTR-only styles and yeah fine whatever close tab sigh.

@andres4ny@social.ridetrans.it
2026-04-24 05:11:15

pennywise on loop until this code is fixed

Screenshot of the album cover of Pennywise - Land of the Free?


Next to it, a "play" button.
@aredridel@kolektiva.social
2026-05-24 18:23:34

I swear StrongDM's AI dark factory propaganda is actually just trying to create a market for their product.
Turns out if you let LLM code agents run amok, you need a whole API gateway to control what they do.
Guess what StrongDM sells.

@davidaugust@mastodon.online
2026-05-24 01:11:51

🤔
#USpol #satire

An RSVP card with Trump's handwritten signature, response options for "Accepts," "Regrets," or Will be at false flag" (which is marked), a line for the number of guests attending, and a section for dietary restrictions. The text includes "Please respond by May 5th" and a QR code for online reply to Bettinna Anderson and Donald Trump Jr. The card is decorated with floral illustrations.
@metacurity@infosec.exchange
2026-04-24 14:26:24

It's finally Friday, but don't kick back for the weekend until you've checked out today's Metacurity for the most crucial cybersecurity developments you should know, including
--China’s hackers hide in plain sight through hijacked home routers, allies warn,
--US charges two accused of running a major scam compound,
--White House accuses China of stealing AI property on 'industrial scale,'
--Stuxnet-like code was used in the mid-2000s,
--He…

@publicvoit@graz.social
2026-07-23 16:20:43

Members of #Codeberg decided to ban repositories that uses #ai:
"You must not share projects that mostly consist of code written by "generative AI"-tools [...]. Such projects having an unclear copyright status [...] and furthermore have little safeguards to ensure that they do not include h…

@datascience@genomic.social
2026-06-23 10:00:01

Polars is a lightning fast DataFrame library/in-memory query engine with parallel execution and cache efficiency. And now you can use is with the tidyverse syntax: #rstats

@frankel@mastodon.top
2026-06-20 09:16:44

#Softwaredevelopment & #IA: De l'artisan du #code au superviseur de l'IA - une histoire déjŠ vécue dans l’aviation civile

@Mediagazer@mstdn.social
2026-06-24 07:05:56

How CAA is repositioning its marginal creator division to an urgent bet as it signs big names, poaches creator-focused agents, and attends Cannes Lions (Brooks Barnes/New York Times)
nytimes.com/20…

@memeorandum@universeodon.com
2026-06-24 01:35:39

Mark Zuckerberg Directed Meta to Create a Prediction Markets App (New York Times)
nytimes.com/2026/06/23/technol
memeorandum.com/260623/p134#a2

@tiotasram@kolektiva.social
2026-04-24 11:03:24

Idea: statically typed language (or Python type checker?) Where types aren't declared, but can only be assigned by providing tests/examples that use that type. Examples could provide explicit type info where necessary, but code could not.
If it's not documented with an example, it's not safe to use with those types.

@ripienaar@devco.social
2026-07-23 21:07:17

I spend most time working with Claude on refinishing plans, researching, questioning and just figuring things out.
Here’s the output of one session, about a hour or so including time to exhaustively confirm via scratch code every JetStream feature beheviourc etc.
This turned into 4 phases of implementation each done in clear contexts
Very happy with the extend and depth of this. Thought I would share maybe helps someone to see that

@Techmeme@techhub.social
2026-07-23 10:45:38

The Senate's Clarity Act, a crypto industry-backed bill set for a vote this summer, is mired in debate over rules to stop Trump from selling digital currencies (David Yaffe-Bellany/New York Times)
nytimes.com/2026/07/22/t…

@ddrake@mathstodon.xyz
2026-05-24 11:29:01

🧵 2/3
This makes sense: Mythos (we are told) is very, very good at analyzing a code base, identifying multiple bugs, corner cases, vulnerabilities, and then arranging many of those to devise a new, very serious exploit.
If it can do that, surely it can...analyze mathematical literature, identify lemmas, theorems, examples and counterexamples, and arrange and combine those together to prove a new, insightful theorem.
(continued)

@Carwil@mastodon.online
2026-05-24 15:34:00

A new, searchable map of ICE detention facilities charting their detention levels since 2010.
This page incorporates official ICE data and data released under FOIA to the Deportation Data Project.
carwilb.github.io/posts/ice-de

A map depicted the continental United States with scores of circles representing 15 types of detention facilities and circles sized based on peak population.
A popup statistical summary of the Denver Contract Detention Facility.

Text:
Denver Contract Detention Facility ICE + DDP
Aurora, CO
Type: Private Migrant Detention Center
Active I First: FY10 I Last: FY26
ADP: 1,226 (FY26)
DDP peak: 1,462 (FY26)
DETLOC (Detention Locator Code): DENICDF

A bar chart depicts annual population for the Fiscal Years from 2010 to 2026, with 2018 omitted.

FY10: 414
FY11: 1415
and so on through…
FY24: 1,021
FY25: 1,181
FY26: 1,243
@grumpybozo@toad.social
2026-07-22 18:59:06

RE: infosec.exchange/@llorenzin/11
Remarkable that gadgets which are designed to work as universal cheat code generators for everyone would cheat.

@bencurthoys@mastodon.social
2026-05-24 17:21:11

From Facebook...

Someone mentioned earlier that the National Rail three-letter code for Poole Station was ‘POO,’ and so naturally I’ve spent the last hour with my eleven-year-old trying to come up with the most obscene combinations of stations imaginable. So far we’ve got:

Shiplake -> Tonbridge -> Nitshill
SHI - TON - NIT

Wanborough -> Kingussie
WAN - KIN

Burgess Hill -> Gerrards Cross
BUG - GER

Penarth -> Islip -> Ulleskelf
PEN - ISP - ULL

Alness -> Bishop’s Stortford -> Kintbury
ASS - BIS - KIT

Dolgella…
@kazys@mastodon.social
2026-07-22 14:32:07

I made a little app to put our two cats, Ajman and Winnie on my Mac. It can monitor your claude code and codex notifications or, you can just enjoy their antics. Coded with Claude Code and OpenAI Codex (it used dozens of runs of the pet hatcher to make all of their poses).
software.is-lost.org/

@fanf@mendeddrum.org
2026-07-22 17:42:04

from my link log —
Hardening Rust code for production.
corrode.dev/blog/hardening-rus
saved 2026-07-22 dotat.at/:/TWY…

@michabbb@social.vivaldi.net
2026-07-24 05:46:09

🔧 Ships as a language server (harper-ls), a JavaScript library, a Rust crate, browser extensions and editor plugins: VS Code, Neovim, Zed, Obsidian, WordPress block editor, Chrome, Firefox and a macOS desktop app that works in every text field system-wide.

@heiseonline@social.heise.de
2026-05-18 10:44:00

Play-System-Update: Quick Share ermöglicht Datentransfer per QR-Code zu iPhones
Google verteilt ein neues Play-System-Update, mit dem Android-Nutzer Inhalte per QR-Code schnell mit iPhones teilen können.

@kubikpixel@chaos.social
2026-07-21 16:55:36

«Data Broking — Apps für US-Militär beinhalten chinesischen und russischen Code:
Fast 40 Prozent der untersuchten Apps sammelten mehr Daten, als sie in den App-Stores angaben»
Wie jetzt, die haben das erst jetzt bemerkt?! Ach so, wenn ein Anderer dich aushorcht ist es schlimm aber wenn selber dann easy normalo!1!! Es sind einfach alle online Produkte.
🤷

@hacksilon@infosec.exchange
2026-04-24 13:48:44

I‘m kind of annoyed that the #PrivacyGuy article on the #Claude extension bridge preprovisioning (which I consider overblown) gets so much airtime on here, when there is actually relevant research on the train wreck that is the chrome extension itself. It allows anyone with local code execution …

@sperbsen@discuss.systems
2026-06-23 14:14:32

RE: discuss.systems/@activegroupgm
Wir haben lang nachgedacht und diskutiert - ich bin den Kolleg:innen unendlich dankbar, daß wir uns einig sind, was den Umgang mit KI-generiertem Code betrifft.
Vielen Dank an

@gwire@mastodon.social
2026-04-24 11:50:58

As part of the API-augmenting of the UK state - this is the code for the "Digital Waste Tracking" that they're making mandatory for registered waste handlers.
github.com/DEFRA/waste-trackin

@jeang3nie@social.linux.pizza
2026-05-21 03:40:42

Writing some Java code for a college course and it was suggested to use java.util.Date. So I'm writing tests for my code and need to create a Date in the past, which lead to my looking at the source code for the Date class. Wow. Just, damn, this made some interesting assumptions.
There is a basic constructor which uses the current date. Plus a full constructor which lets you to specify the year, month, and day. You can set the year via the 'setYear' method. Those latter two…

@Techmeme@techhub.social
2026-05-23 22:10:49

For publishers, pirated audiobooks made with AI on YouTube are a growing issue: removal is cumbersome, and some are hiring tech companies to take them down (Alexandra Alter/New York Times)
nytimes.com/2026/05/21/books/a

@memeorandum@universeodon.com
2026-06-22 19:15:32

Alan Greenspan, Fed Chairman Through Prosperity and Crisis, Dies at 100 (Richard W. Stevenson/New York Times)
nytimes.com/2026/06/22/us/alan
memeorandum.com/260622/p72#a26

@Techmeme@techhub.social
2026-05-24 17:15:36

A look at the scourge of smartphone thefts in London, as victims describe receiving texts threatening them into unlinking Apple IDs from stolen iPhones (New York Times)
nytimes.com/2026/05/23/world/e

@frankel@mastodon.top
2026-06-24 16:34:08

The Java Geek Weekly special "pneumonia during a heatwave" 🥵🤒 edition is out.
Get it before it's too late!
blog.frankel.ch/java-geek-week

@memeorandum@universeodon.com
2026-06-24 12:55:41

Mamdani-Backed Candidates Sweep in NYC Democratic Primaries (Nicholas Fandos/New York Times)
nytimes.com/2026/06/24/nyregio
memeorandum.com/260624/p29#a26

@Techmeme@techhub.social
2026-07-23 10:11:43

The European Commission fines Google €890M under the DMA for illegally undercutting competition through its search dominance and Google Play developer rules (New York Times)
nytimes.com/2026/07/23/busine…

@vyskocilm@witter.cz
2026-05-23 07:52:19

> They're gonna say that the future is all AI... until they get the bill.
Well said, KronisLV. Well said!
news.ycombinator.com/item?id=4

@Techmeme@techhub.social
2026-06-24 02:15:50

The NSA was red-teaming Mythos 5 before losing access amid the Anthropic dispute; the tests showed Mythos identified cybersecurity flaws in classified systems (New York Times)
nytimes.com/2026/06/23/us/p…

@memeorandum@universeodon.com
2026-05-23 16:10:46

HUD Moves to Limit Assistance Animals for Disabled Tenants (New York Times)
nytimes.com/2026/05/22/us/poli
memeorandum.com/260523/p10#a26

@michabbb@social.vivaldi.net
2026-06-24 08:50:55

🛠️ Under the hood it still uses the #AWS #CDK, so you can drop back to standard AWS infrastructure at any time
💡 Why it matters: for the first time AWS is building a framework optimized not primarily for humans, but also for coding agents like Claude Code, Codex & Cursor. The core idea — AI …

@fanf@mendeddrum.org
2026-07-23 20:42:04

from my link log —
ECC and DDR5 RAM.
etbe.coker.com.au/2026/07/19/e
saved 2026-07-22 dotat.at/:/5D32P.htm…

@Mediagazer@mstdn.social
2026-07-22 15:41:07

France becomes the first European country to pass a law banning social media access for users under 15, which could go into effect as soon as September 1 (Mark Landler/New York Times)
nytimes.com/2026/07/21/world/e

@Techmeme@techhub.social
2026-05-22 21:55:51

Sources: WH approved a $9B request to acquire advanced AI chips for spy agencies; Anthropic is finalizing a classified contract for NSA to keep using its tools (New York Times)
nytimes.com/2026/05/22/us/poli

@kubikpixel@chaos.social
2026-06-18 19:10:03

«Critical Copilot vulnerability allowed hackers to steal 2FA code from users:
SearchLeak exploit shows why the industry’s approach to LLM security fails over and over.»
WTF: What is intelligent now and how to tackle what? Certainly not the usual popular AI for IT security.
☠️

@frankel@mastodon.top
2026-05-23 09:07:56

#Java records & compact constructors
mikemybytes.com/2022/02/16/jav

@memeorandum@universeodon.com
2026-05-23 12:50:45

San Diego Shooter So Alarmed Police in 2025, They Seized Father's Guns (New York Times)
nytimes.com/2026/05/21/us/san-
memeorandum.com/260523/p3#a260

@metacurity@infosec.exchange
2026-05-20 13:50:35

It feels like Friday, but it’s only Wednesday — so don’t miss today’s Metacurity, covering the most important infosec developments you need to know, including
--GitHub says malicious VS Code extension compromised 3,800 internal repositories,
--White House release of EO on cyber and AI safety is imminent,
--Microsoft took down malware service Fox Tempest,
--A bug in a Huawei enterprise router caused Luxembourg telecoms outage last year,
--Mini Shai-Hulud malware r…

@heiseonline@social.heise.de
2026-07-13 05:48:03

Claude Code auf dem Desktop bekommt einen eingebauten Browser
Anthropic gibt Claude Code auf dem Desktop einen eingebauten Browser. Das Frontier-Modell Fable 5 wird erneut verlängert – es bleibt bis zum 19. Juli im Abo.

@Techmeme@techhub.social
2026-06-23 22:05:49

Sources: the Trump administration is pressing Meta to submit its AI models for voluntary review; Meta is the only major US AI developer without an agreement (New York Times)
nytimes.com/2026/06/23/busines

@memeorandum@universeodon.com
2026-05-23 00:10:57

Green Card Seekers Must Leave U.S. to Apply, Trump Administration Says (New York Times)
nytimes.com/2026/05/22/us/poli
memeorandum.com/260522/p42#a26

@Mediagazer@mstdn.social
2026-06-22 04:20:30

People Inc., a major food content creator, is ramping up social media video production that emphasizes human-made recipes and testing to stand out from AI slop (New York Times)
nytimes.com/2026/06/20/busines

@memeorandum@universeodon.com
2026-06-23 17:10:41

America's Thirst for Gasoline May Not Recover After Iran War (Lydia DePillis/New York Times)
nytimes.com/2026/06/23/busines
memeorandum.com/260623/p73#a26

@Mediagazer@mstdn.social
2026-07-21 22:57:20

Nielsen: the World Cup final drew 38.9M viewers on Fox, and 22M on Telemundo; taken together, the US audience size rivaled that of NFL playoff games (Dan Shanoff/The Athletic)

@memeorandum@universeodon.com
2026-05-23 19:30:49

Trump Administration Chips Away at Last Traces of Broad Inquiry Into Jan. 6 (Alan Feuer/New York Times)
nytimes.com/2026/05/23/us/poli
memeorandum.com/260523/p19#a26

@heiseonline@social.heise.de
2026-07-16 15:58:03

Nach Aufregung über Daten-Upload: SpaceXAI macht Code von Grok Build öffentlich
Nachdem am Wochenende entdeckt wurde, dass Grok Build ganze Git-Repositories der User in einen Cloud-Speicher geschickt hat, verspricht SpaceXAI Transparenz.

@metacurity@infosec.exchange
2026-05-21 11:58:39

It’s a huge day in AI cyber policy, so don’t miss this morning's Metacurity, covering the cybersecurity developments everyone will be talking about tomorrow, including
--Trump prepares to sign AI cyber order today amid Mythos alarm,
--Cybercom to speed AI tools use,
--Hacker accessed GitHub repos via TanStack-compromised Nx Console VS Code extension,
--Ukraine cops bust 18-year-old for running infostealer op,
--S. Korean cops bust 32 for stealing bigwigs' …

@memeorandum@universeodon.com
2026-05-23 22:50:52

Trump Is Setting His Sights on Restricting Legal Immigration (Hamed Aleaziz/New York Times)
nytimes.com/2026/05/23/us/poli
memeorandum.com/260523/p25#a26

@frankel@mastodon.top
2026-05-19 17:06:20

#ReverseEngineering Android #malware with #ClaudeCode

@kubikpixel@chaos.social
2026-06-15 04:35:01

AI is code – and can't be prompted into being smarter
The author of Java property-testing tool jqwik did not want AI coding agents using his project. So he told them not to.
Then he went one step further: he added a message to the tool's output telling those agents to delete jqwik tests and code. […]
🧑‍💻

@memeorandum@universeodon.com
2026-06-24 15:40:49

Trump Refuses to Sign Housing Bill Until Unpopular Voting Restrictions Pass Congress (New York Times)
nytimes.com/2026/06/24/us/poli
memeorandum.com/260624/p60#a26

@heiseonline@social.heise.de
2026-05-03 16:36:00

Claude-Code-Leck: 8100 Löschanträge und die Geburtsstunde von Claw-Code
Ein menschlicher Fehler bei Anthropic enthüllt die Architektur autonomer KI-Agenten und löst eine hitzige Debatte über das Copyright an KI-generiertem Code aus.

@Techmeme@techhub.social
2026-05-24 00:10:48

Crypto companies prepare for the threat that quantum computers could hack core industry security, including breaking the critical code underpinning Bitcoin (Financial Times)
ft.com/content/99c1c1e7-1a1c-4

@Techmeme@techhub.social
2026-07-21 20:40:53

France becomes the first European country to pass a law banning social media access for users under 15, potentially going into effect as soon as September 1 (Mark Landler/New York Times)
nytimes.com/2026/07/21/world/e…

@Mediagazer@mstdn.social
2026-06-21 12:20:29

In 2025, Article 19 documented 69 cases of Mexican officials' use of lawsuits and other legal tools against journalists, more than triple the number in 2024 (New York Times)
nytimes.com/20…

@Techmeme@techhub.social
2026-05-21 19:01:21

Gavin Newsom signs an EO mandating state agencies work with the AI industry and others to study subsidies for companies that don't replace workers with AI (Cecilia Kang/New York Times)
nytimes.com/2026/05/21/technol

@Techmeme@techhub.social
2026-07-23 17:35:46

GitHub plans a two-tier bug bounty system, cutting rewards for public reports and boosting payouts for an invite-only group, amid an AI-powered submission surge (Carly Page/The Register)
theregister.com/devops/2026/07

@Techmeme@techhub.social
2026-06-24 10:15:56

Q&A with AWS CEO Matt Garman on the parallels between early AWS and AI, Quick, AI coding, Amazon's $200B capex in 2026, hiring entry-level staff, and more (Casey Newton/Platformer)
platformer.news/matt-garman-aw

@memeorandum@universeodon.com
2026-06-22 15:25:30

The Deadly Rise of Giant Trucks and S.U.V.s (New York Times)
nytimes.com/interactive/2026/0
memeorandum.com/260622/p42#a26

@memeorandum@universeodon.com
2026-05-22 16:25:57

There's a Way to Stop Trump's I.R.S. Slush Fund (Jamie Raskin/New York Times)
nytimes.com/2026/05/22/opinion
memeorandum.com/260522/p19#a26

@memeorandum@universeodon.com
2026-06-21 20:40:31

Where Billionaires Summer, a Gardener Died in the Snow (New York Times)
nytimes.com/2026/06/21/realest
memeorandum.com/260621/p43#a26

@Techmeme@techhub.social
2026-05-14 20:01:31

Sources: Microsoft plans to remove most of its Claude Code licenses and push its developers toward GitHub Copilot CLI, after previously pushing Claude Code (Tom Warren/The Verge)
theverge.com/tech/930447/micro

@Techmeme@techhub.social
2026-06-20 23:15:54

A look at "humanizer" and "autotyper" apps that help students evade AI-detection software by slowly auto-typing essays and making AI text sound less robotic (Dana Goldstein/New York Times)
nytimes.com/2026/06/…

@Techmeme@techhub.social
2026-05-20 21:26:05

Filing: SpaceX reports 2025 revenue of $18.7B, up 33% YoY, a $4.9B loss, vs. a $791M profit in 2024, and $20.7B in capital expenditures, up from $11.2B (New York Times)
nytimes.com/2026/05/20/technol

@Techmeme@techhub.social
2026-07-20 23:55:16

Google's AI Search is endangering the open web; Cloudflare: between June 2025 and April 2026, human traffic to sites of businesses in many industries fell ~40% (Kate Conger/New York Times)
nytimes.com/2026/07/20/technol…

@Techmeme@techhub.social
2026-05-21 11:15:59

Bluesky and Clemson researchers detail a novel Russian influence campaign that hijacked legitimate, influential accounts to spread pro-Kremlin propaganda (Steven Lee Myers/New York Times)
nytimes.com/2026/…

@Techmeme@techhub.social
2026-07-21 17:30:57

Block launches Buzz, an open source collaboration workspace on Nostr protocol for humans and AI agents to share messages, code repositories, workflows, and more (Block)
block.xyz/inside/introducing-b

@Techmeme@techhub.social
2026-05-22 02:20:46

Socket: TeamPCP, the gang claiming GitHub's repositories breach, also executed 20 "waves" of supply chain attacks recently, compromising 500 pieces of software (Wired)
wired.com/story/teampcp-softwa