Вастрик
👉 vas3k.ru
Веду блог о технологиях, пишу код, отвратительно путешествую и фотографирую это
Hacker News Hacker News
последний пост 3 часа назад
Gemini API File Search is now multimodal
Gemini API File Search is now multimodal Gemini API File Search is now multimodal

Today, we are expanding the Gemini API’s File Search tool.

You can now build retrieval-augmented generation (RAG) systems with multimodal data and custom metadata.

Whether you are prototyping a weekend project or scaling a production application for thousands of users, your RAG systems can now natively process and better organize your text and visual data.

Powered by the Gemini Embedding 2 model, the tool understands native image data, providing your agents contextual awareness.

Think of a creative agency trying to dig up a specific visual asset.

3 часа назад @ blog.google
Show HN: Building a web server in assembly to give my life (a lack of) meaning
Show HN: Building a web server in assembly to give my life (a lack of) meaning Show HN: Building a web server in assembly to give my life (a lack of) meaning

ymawky -- web server in ARM assemblyThis is ymawky (yuh maw kee), a web server written entirely in ARM64 assembly.

ymawky is a syscall-only, no libc, fork-per-connection web server written by hand.

Running./ymawky to start running the web server on 127.0.0.1:8080 .to start running the web server on .

./ymawky [port] to start running the web server on 127.0.0.1:[port]to start running the web server on ./ymawky [literally-any-character-other-than-0-9] to start running the web server on 127.0.0.1:8080 in debug mode.

This is a web server written entirely by-hand in ARM64 assembly as a fun project.

3 часа назад @ github.com
Sparse Cholesky Elimination Tree
Sparse Cholesky Elimination Tree

Sparse Cholesky Elimination TreeHere I derive the elimination tree for the (right-looking) sparse Cholesky algorithm for computing A = LL^T for lower triangular L and sparse matrices A .

Factor the pivot L [ k ][ k ] = sqrt ( A [ k ][ k ]); // 2.

for ( int j = k + 1 ; j < n ; ++ j ) { for ( int i = j ; i < n ; ++ i ) { // lower triangle only L [ i ][ j ] -= L [ i ][ k ] * L [ j ][ k ]; } } }The implied order and loop structure results in a task DAG.

void symbolic_cholesky ( int n , int ** A_row , int * A_row_len , int * parent , int * mark , vector_int * L_col ) { for ( int k = 0 ; k < n ; ++ k ) { mark [ k ] = - 1 ; vector_clear ( & L_col [ k ]); // Include the diagonal.

Computing the Elim…

4 часа назад @ reidatcheson.com
France Moves to Break Encrypted Messaging
France Moves to Break Encrypted Messaging

Comments

8 часов назад @ reclaimthenet.org
Getting Arrested in Japan
Getting Arrested in Japan Getting Arrested in Japan

RULESRules inside a Japanese detention center are EXTENSIVE and strictly enforced without exception, controlling even the smallest details of daily life.

You are expected to follow instructions exactly, including how you sit, move, and even when you are allowed to speak.

More than the food beiing bad it was just not enough my stomach growled pretty much all day every day especially all night.

USEFULJAPANESE WORDS & PHRASES:Even if you speak Japanese the vocabulary used in this situation could be unfamiliar to you.

Here are some common words and phrases used in the detention facility.

8 часов назад @ sundaicity.com
Rust but Lisp
Rust but Lisp Rust but Lisp

dy powf 2.0 )) sqrt )) (fn main () () ( let p1 (new Point (x 0.0 ) (y 0.0 ))) ( let p2 (new Point (x 3.0 ) (y 4.0 ))) (println! "

("no") } (impl Point (fn new (...) ...)) impl Point { fn new(...) ... } (trait Display (fn fmt (...) Result)) trait Display { fn fmt(...) -> Result; } (new Point (x 1.0) (y 2.0)) Point { x: 1.0, y: 2.0 } (.

("{}", x) } (lambda (x y) (+ x y)) |x, y| { x + y } (pub fn foo () i32 42) pub fn foo() -> i32 { 42 } (pub (crate) mod m (fn f () () ())) pub(crate) mod m { fn f() {} } (use std::collections::HashMap) use std::collections::HashMap; (const MAX usize 1024) const MAX: usize = 1024; (rust "let x: i32 = 42; x") let x: i32 = 42; xBinary operators ( + , - , * , / , =…

8 часов назад @ github.com
FreeBSD: Local Privilege Escalation via Execve()
FreeBSD: Local Privilege Escalation via Execve()

Comments

10 часов назад @ freebsd.org
I Caught the Car
I Caught the Car

I caught the car 22 Apr 2026I started my first software job out of college in July of 2023.

In January 2026, two and a half years later, I secured my second promotion, earning the title of Senior Software Engineer.

Bad goalsLet's analyze this goal: Earn the title of senior software engineer within two years of starting my career.

What's a Senior Engineer to a non-believerGood job kid - you made Senior Engineer.

You may have felt good, or proud, in these moments - but did you feel happy?

10 часов назад @ undecidability.net
Surfel-based global illumination on the web
Surfel-based global illumination on the web Surfel-based global illumination on the web

Blogpost Surfel-based global illumination on the web Can we use WebGPU to compute real-time global illumination with surface patches called surfels?

Global illumination from year 380,000 to year 400 million was easy peasy, finalColor = vec4(0,0,0,0).

We can shade 50k surfels effectively to get global illumination, even if the screen has 2 million pixels, caching that expensive work over time.

So the integrator does a mixture:with probability pGuide , sample from the guiding grid,, sample from the guiding grid, otherwise sample cosine hemisphere.

The EndWe've traveled from the birth of photons in stars to real-time global illumination running in your browser.

11 часов назад @ juretriglav.si
"Dirty Frag" (CVE-2026-43284): The Second Linux Root Exploit in Eight Days
"Dirty Frag" (CVE-2026-43284): The Second Linux Root Exploit in Eight Days "Dirty Frag" (CVE-2026-43284): The Second Linux Root Exploit in Eight Days

Dirty Frag is the informal name for a chained exploit that combines two Linux kernel vulnerabilities: CVE-2026-43284 and CVE-2026-43500.

The root cause of CVE-2026-43284 lies in how the Linux kernel handles network packet memory in the IPsec/ESP path.

Both vulnerabilities turn long-lived in-place processing optimizations into deterministic root primitives: Copy Fail through userspace crypto, Dirty Frag through IPsec receive.

An interesting factor of Dirty Frag is that chaining the two sub-vulnerabilities (CVE-2026-43284 and CVE-2026-43500) covers each other’s blind spots.

Step 3: Combine with Copy Fail remediationIf you have not yet addressed Copy Fail (CVE-2026-31431), treat both vulnerabi…

11 часов назад @ copahost.com
Bun ported to Rust in 6 days
Bun ported to Rust in 6 days Bun ported to Rust in 6 days

there will be a blog post about this.

on what this means for bun, benchmarks, memory usage, maintainability going forward, and also the literal process of doing this (it wasn’t just “claude, rewrite bun in rust.

make no mistakes”) this is a 960,000 LOC rewrite, the code truly works, passing the test suite on Linux and soon other platforms.

e2e I started working on this 6 days ago.

this would’ve been a massive amount of work by hand.

11 часов назад @ xunroll.com
Meta's Embrace of A.I. Is Making Its Employees Miserable
Meta's Embrace of A.I. Is Making Its Employees Miserable

Please enable JS and disable any ad blocker

12 часов назад @ nytimes.com
Show HN: I made a Clojure-like language in Go, boots in 7ms
Show HN: I made a Clojure-like language in Go, boots in 7ms Show HN: I made a Clojure-like language in Go, boots in 7ms

This is a bytecode compiler and VM for a language closely resembling Clojure, a Clojure dialect, if you will.

Most idiomatic code reads, runs, and behaves the same — but a non-trivial Clojure project will likely need some adjustments before it runs unmodified.

Go structs roundtrip as records, Go channels are first-class let-go channels, and Go functions are callable from let-go code.

NewLetGo ( "myapp" ) // Expose Go values and functions to let-go c . Def ( "x" , 42 ) c . Def ( "greet" , func ( name string ) string { return "Hello, " + name }) v , _ := c . Run ( `(greet "world")` ) fmt .

Chan ) c . Def ( "in" , inch ) c . Def ( "out" , outch ) c . Run ( `(go (loop [i (<!

12 часов назад @ github.com
Zed Editor Theme-Builder
Zed Editor Theme-Builder Zed Editor Theme-Builder

: ( meeting : Meeting ) => void38 onEscapeAttempt ?

ReactElement {52 const [ meetings , setMeetings ] = React .

warn ( "Developer sanity depleted" )70 }71 } , 60000 )72 ​73 return ( ) => clearInterval ( interval )74 } , [ ] )75 ​76 // Callback for creating meetings77 const handleCreateMeeting = React .

randomUUID ( ) ,88 title : title || "Meeting about meetings" ,89 couldHaveBeenAnEmail : true ,90 attendees ,91 snacksProvided : requiresSnacks ,92 actuallyStartsOnTime : "never" , // This causes the error93 }94 ​95 setMeetings ( ( prev ) => [ ... prev , newMeeting ] )96 onMeetingCreate ?.

id } className = "py-3" >157 < span className = "font-medium" > { meeting .

13 часов назад @ zed.dev
CPanel's Black Week: 3 New Vulnerabilities Patched After Attack on 44k Servers
CPanel's Black Week: 3 New Vulnerabilities Patched After Attack on 44k Servers CPanel's Black Week: 3 New Vulnerabilities Patched After Attack on 44k Servers

If you run a server with cPanel or WHM, you need to read this carefully.

On May 8, 2026 — just ten days after the cPanel CVE-2026-41940 authentication bypass was used to compromise 44,000 web hosting servers and deploy ransomware — cPanel quietly released a second emergency security patch.

This is the second Technical Security Release (TSR) in 10 days from cPanel.

Before diving into the vulnerabilities, a quick note for context: cPanel uses a standardized process called a Technical Security Release (TSR) when a security patch is ready.

The cPanel ransomware attack exposed over 44,000 servers.

13 часов назад @ copahost.com
Hacker News Hacker News
последний пост 3 часа назад
I’ve banned query strings
I’ve banned query strings

I’ve banned query strings 🗓️ 2026-05-08 •I don’t like people adding tracking stuff to URLs.

Still less do I like people adding tracking stuff to my URLs.

So I’ve decided to try a blanket ban for this site: no unauthorised query strings.

At present I don’t use any query strings.

If I ever start using any query strings, I’ll allow only known parameters.

14 часов назад @ chrismorgan.info
I Will Not Add Query Strings to Your URLs
I Will Not Add Query Strings to Your URLs I Will Not Add Query Strings to Your URLs

I mentioned earlier that I was not entirely convinced that adding a referral query string was a good thing to do.

So I implemented the referral query string feature anyway.

Later, with a little time to breathe and some hindsight, I could articulate why adding referral query strings to a working URL was such a bad idea.

Appending referral query strings to URLs bypasses those controls.

ConclusionIn the end, I decided to remove the referral query string feature from Wander Console.

14 часов назад @ susam.net
Introduction to Beaver Triples
Introduction to Beaver Triples Introduction to Beaver Triples

Typically, you are the friend in the friend group that pays for everyone else's meals.

We can draw a rectangle and get a rectangle with dimensions x x y with areas xy.

Second, suppose that [a] and [b] are being reused across two different multiplications, (x, y) and (x', y').

Then, we can see that d'-d = x'-x and e'-e = y'-y, revealing relationships between secret values x, x', y, y'.

These relationships contradict the fact that opening d, d', e, and e' shouldn't reveal anything meaningful about x, x', y, and y'.

14 часов назад @ stoffelmpc.com
The context window has been shattered: Subquadratic debuts a 12M token window
The context window has been shattered: Subquadratic debuts a 12M token window The context window has been shattered: Subquadratic debuts a 12M token window

Every frontier model in 2026 advertises a context window of at least a million tokens, but almost none of them are actually great at making use of all of that information.

At this point, a million tokens seems to be the maximum for the context window that the major frontier labs are offering.

Subquadratic is making this model available through an API — which will feature a 12-million-token context window — as well as a coding agent (SubQ Code) and a deep research tool (SubQ Search).

They keep most layers efficient and retain a few dense attention layers for retrieval.

The 50-million-token context window target is set for Q4.

15 часов назад @ thenewstack.io
PipeDream on the Acorn Archimedes
PipeDream on the Acorn Archimedes PipeDream on the Acorn Archimedes

Like RISC OS itself, PipeDream also requires certain shifts in thinking to not lose a finger to its sharp edges.

Lotus positionAs a spreadsheet, PipeDream performs far more admirably, even if certain conventions have been eschewed in favor of its new vision.

Now it lives on in RISC OS PipeDream.

The PipeDream package available for installation in RISC OS package manager is not the version I'm using for this article.

This is all maintained by lone developer Stewart Swales, someone intimately involved in the RISC OS and PipeDream history.

15 часов назад @ stonetools.ghost.io
First, the FBI Searched Her Home. Then, She Won a Pulitzer.
First, the FBI Searched Her Home. Then, She Won a Pulitzer.

Please enable JS and disable any ad blocker

15 часов назад @ nytimes.com
Apple is increasing my cortisol levels
Apple is increasing my cortisol levels Apple is increasing my cortisol levels

Apple is increasing my cortisol levelsDate: 2026-05-09I'm creating a simple developer utility to make managing Claude Code profiles (e.g.

It works just fine for distributing Linux software (same deal, after chmod +x ).

Technically, you can ask your users to override it manually, in the terminal:Most developers might be willing to do that.

I'll just enroll in their Apple Developer Program, sign the executable and be on my way, right?

Giving Apple money, and failingWait, they want how much money for the account?

15 часов назад @ blog.kronis.dev
Show HN: Create flashcards with Space CLI
Show HN: Create flashcards with Space CLI Show HN: Create flashcards with Space CLI

Bring your own AICreate flashcards from your terminal .

Create, search, and export decks straight from the shell.

Reviewing still happens in the Space app.

Install the Space app on Mac, Windows or Linux first.

The CLI reads the database it keeps on your machine.

15 часов назад @ getspace.app
The FCC Wants Your ID Before You Get a Phone Number
The FCC Wants Your ID Before You Get a Phone Number

Comments

16 часов назад @ reclaimthenet.org
GrapheneOS fixes Android VPN leak Google refused to patch
GrapheneOS fixes Android VPN leak Google refused to patch GrapheneOS fixes Android VPN leak Google refused to patch

GrapheneOS has released a new update that fixes a recently disclosed Android VPN bypass vulnerability capable of leaking a user’s real IP address.

The leak happens even when Android’s “Always-On VPN” and “Block connections without VPN” protections were enabled.

In its latest release, GrapheneOS says it has “disable[d] registerQuicConnectionClosePayload optimization to fix VPN leak,” effectively neutralizing the attack vector on supported Pixel devices.

Because system_server operates with elevated networking privileges and is exempt from VPN routing restrictions, the packet bypassed Android’s VPN lockdown protections entirely.

The researcher noted that stock Android users could temporarily m…

16 часов назад @ cyberinsider.com
Show HN: Mochi.js: bun-native high-fidelity browser automation library
Show HN: Mochi.js: bun-native high-fidelity browser automation library Show HN: Mochi.js: bun-native high-fidelity browser automation library

Where Playwright and Puppeteer leave fingerprints, mochi.js leaves nothing measurable.

🧬 Relational consistency engine Every fingerprint surface — canvas, WebGL, audio, fonts, MediaDevices, WebGPU — derives from a single (profile, seed) pair through a 48-rule DAG.

🎯 Behavioral synthesis humanClick / humanType / humanScroll synthesize from biomechanical models — Bezier paths with overshoot+correction, Fitts-law movement times, lognormal digraph delays.

📐 Probe-Manifest harness Captured baselines from real devices live in the repo.

Every PR diffs the live session's Probe Manifest against the baseline; Zero-Diff is a CI gate.

16 часов назад @ mochijs.com
The Intolerable Hypocrisy of Cyberlibertarianism
The Intolerable Hypocrisy of Cyberlibertarianism The Intolerable Hypocrisy of Cyberlibertarianism

Comments

16 часов назад @ matduggan.com
Read Programming as Theory Building
Read Programming as Theory Building Read Programming as Theory Building

Posted on May 9, 2026When I finished reading Peter Naur’s Programming as Theory Building my first thought was “How come nobody ever told me to read this?” I ended up reading it multiple times, as I attempted to collect my thoughts on why it makes so much sense.

I think Naur’s “theory” is that term when it comes to writing good code and creating maintainable software.

In summary, Programming as Theory Building suggests that the program code, documentation and other products are secondary to what programming really is about: Building an understanding, or a mental model, of the program, its requirements, and how they relate to everything around it.

If you look at programming as the…

17 часов назад @ codeutopia.net
Internet Archive Switzerland
Internet Archive Switzerland

Comments

18 часов назад @ internetarchive.ch
Internet Archive Switzerland
Internet Archive Switzerland Internet Archive Switzerland

Thirty years ago, Brewster Kahle founded the Internet Archive with an ambitious goal: Universal Access to All Knowledge.

Today, that mission continues to grow with an exciting new chapter: the launch of the Internet Archive Switzerland, a non-profit foundation based in St. Gallen.

The Internet Archive Switzerland, online at https://internetarchive.ch/, is a newly-formed Swiss non-profit foundation that will operate independently within its national context.

With a UNESCO conference planned for November 2026 in Paris, Internet Archive Switzerland is taking a concrete step to explore how endangered archives can be protected.

Internet Archive Switzerland joins a growing group of mission-aligne…

18 часов назад @ blog.archive.org
Lobsters Lobsters
последний пост 1 час назад
Unlocking sudoku's secrets (2025)
Unlocking sudoku's secrets (2025) Unlocking sudoku's secrets (2025)

So the top-left region of the sudoku board would be connected like this:We then propose the vertex colouring problem: Does there exist a 9-colouring of our sudoku graph?

However, computing a Gröbner basis of this system yields \begin{align*} y^2-3y+2 &= 0,\\ x+y-3&=0, \end{align*} where the first equation involves only $y$.

A well-known theorem in Gröbner basis theory explains that the Gröbner basis puts a given system into triangular form.

A process known as Buchberger’s algorithm computes the Gröbner basis for a given ideal and term order.

This algorithm also guarantees the existence of a Gröbner basis for a given ideal and term order.

1 час назад @ chalkdustmagazine.com
Flipping the bozo bit on flips the learning off
Flipping the bozo bit on flips the learning off Flipping the bozo bit on flips the learning off

I’m too young to have seen Bozo the Clown myself, but I’m old enough to get the references“Flipping the bozo bit” is an expression from the software world.

This is what flipping the bozo bit is.

I also want to call out the technical term for this phenomenon, which is a cousin of flipping the bozo bit.

Ironically, after the chemical fire at the Ameircan plant, other workers at that very same plant also exhibited distancing through differencing.

When this process of learning moved past the obstacle of distancing through differencing in this case, the organizational response changed.

3 часа назад @ surfingcomplexity.blog
On DOS, floppies, NetBSD and nostalgia
On DOS, floppies, NetBSD and nostalgia On DOS, floppies, NetBSD and nostalgia

JavaScript requiredIt seems JavaScript is either blocked or disabled in your web browser.

We totally get that.

However, this page will not work without it.

If you are concerned about the security and privacy (or lack thereof) of JavaScript web applications, you might want to review the source code of the instance you are trying to access, or look for security audits.

Your options

3 часа назад @ exquisite.tube
Abstract Machines for Logic Programs
Abstract Machines for Logic Programs Abstract Machines for Logic Programs

k >> plus 0 _ P |----> k << P k >> plus (s N) _ (s P) |----> k; _ >> plus N _ P k; _ << P |----> k << P(We actually don't need a stack at all here, but we include it for uniformity.)

; _ ; _ ; _ >> plus 0 _ 1 |----> .

; _ ; _ ; _ << 1 |---->4 .

k >> plus _ _ N |----> k << 0,N k >> plus _ _ (s P) |----> k; s _, _ >> plus _ _ P k; s _, _ << N , M |----> k << s N , MThis machine is nondeterministic.

>> plus _ _ 3 . ; s _ , _ >> plus _ _ 2 . ; s _ , _ ; s _ , _ >> plus _ _ 1 . ; s _ , _ ; s _ , _ << 0 , 1 . ; s _ , _ << 1 , 1 .

4 часа назад @ chrisistyping.bearblog.dev
Aurora: A Leverage-Aware Optimizer for Rectangular Matrices
Aurora: A Leverage-Aware Optimizer for Rectangular Matrices Aurora: A Leverage-Aware Optimizer for Rectangular Matrices

Then tr ( M ⊤ M ) = tr ( I n ) = n and tr ( M ⊤ M ) = tr ( M M ⊤ ) = ∑ i = 1 m ∥ M i , ⋅ ∥ 2 2 = m \text{tr}(\mathcal{M}^\top\mathcal{M}) = \text{tr}(I_n) = n \quad \text{and} \quad \text{tr}(\mathcal{M}^\top\mathcal{M}) = \text{tr}(\mathcal{M}\mathcal{M}^\top) = \sum_{i=1}^m \|\mathcal{M}_{i, \cdot}\|_2^2 = m tr(M⊤M)=tr(In​)=nandtr(M⊤M)=tr(MM⊤)=∑i=1m​∥Mi,⋅​∥22​=m Together, these facts imply that m = n m = n m=n, contradicting our assumption that M \mathcal{M} M is tall.

Let M ∈ R m × n M \in \mathbb{R}^{m \times n} M∈Rm×n with m > n m > n m>n and thin SVD M = U r Σ V ⊤ M = U_r \Sigma V^\top M=Ur​ΣV⊤.

Since D = diag ⁡ ( λ ) D = \operatorname{diag}(\lambda) D=diag(λ),diag ⁡ ( P D P ) = ( P ∘…

5 часов назад @ blog.tilderesearch.com
Three Cultures of Math
Three Cultures of Math

Math as a SportThis is how math is portrayed in popular culture.

If math is a sport, using AI is the ultimate doping and there is no way to ban it.

When AI eats the sport, the public won’t see it as “one culture of math is dying” — they’ll see math itself is dying.

Math as an economic activityThis is how math is sold to funding agencies.

The problem: the thing that would save math from the AI disaster is often undervalued in math circles, and completely unintelligible to an outsider.

6 часов назад @ rkirov.github.io
Getting LLMs Drunk to Find Remote Linux Kernel OOB Writes (and More)
Getting LLMs Drunk to Find Remote Linux Kernel OOB Writes (and More) Getting LLMs Drunk to Find Remote Linux Kernel OOB Writes (and More)

TLDR: the grossly overengineered, self-orchestrating team of vulnerability-hunting agents detailed below has discovered 20+ CVEs over the past few months, including CVE-2026-31432 and CVE-2026-31433: two remote, unauthenticated OOB writes in the Linux kernel’s ksmbd.

It seemed like an easier lift for (local) LLMs in terms of context size, harnessing complexity, and intelligence required.

CVE-2026-34980 and CVE-2026-34990 are the two CUPS issues that chain into unauthenticated remote attacker -> unprivileged RCE -> root file (over)write , as detailed in Spooler Alert: Remote Unauth’d RCE-to-root Chain in CUPS.

This allowed local unprivileged attackers to a) back up LUKS headers and b) brick …

9 часов назад @ heyitsas.im
Where Have All the Complex Windows Malware and Their Analyses Gone?
Where Have All the Complex Windows Malware and Their Analyses Gone? Where Have All the Complex Windows Malware and Their Analyses Gone?

The Satiation of Windows and the Pivot to CloudAnother critical factor in the decline of complex Windows malware is simply that we have reached a point of diminishing returns.

The Geopolitical Filter and the Ghosting of Western ToolkitsThere is also a glaring double standard in the world of public threat intelligence.

It often neglects the reality that non-Western entities might also be using their complex malware for similar purposes — tracking high-level threats or managing national security interests.

Junior analysts, increasingly reliant on automated sandbox scores, are prone to missing the “stealth” masterpieces — malware specifically engineered to stay dormant during automated…

11 часов назад @ r136a1.dev
Laptops all have built-in security tokens these days
Laptops all have built-in security tokens these days Laptops all have built-in security tokens these days

I’ve been a fan of security tokens for a decade now and have accrued quite a collection.

Laptops and smartphones all have built-in security tokens these days!

This post is about how I use security tokens, and how I configured my laptop’s secure element to replace my yubikey collection.

Fancier security tokens add a biometric flourish with a built-in fingerprint reader, but the real value is stopping attackers from making progress with purely remote access.

So when you buy a security token, you really commit to buying at least two security tokens unless you want to risk locking yourself out of your various accounts.

11 часов назад @ ahelwer.ca
ACME CA Comparison
ACME CA Comparison ACME CA Comparison

ACME CA Comparison¶As more public certificate authorities hop on the ACME bandwagon, it is important to understand the details and limitations of their implementations.

ACME CA Info¶Wildcard names (if supported) count towards Subject Alternative Name (SAN) limits.

ACME Spec and Feature Support¶Some of the features in the ACME protocol are optional.

Note Multi-perspective validation is not part of the ACME protocol but is an important security feature for the integrity of domain validation.

SXG Support is also not part of the ACME protocol but is a notable feature among free ACME CAs.

11 часов назад @ poshac.me
Notes on using GNU Emacs' Tramp system in an unusual shell environment
Notes on using GNU Emacs' Tramp system in an unusual shell environment

You're using a suspiciously old browserYou're probably reading this page because you've attempted to access some part of my blog (Wandering Thoughts) or CSpace, the wiki thing it's part of.

Unfortunately you're using a browser version that my anti-crawler precautions consider suspicious, most often because it's too old (most often this applies to versions of Chrome).

Unfortunately, as of early 2025 there's a plague of high volume crawlers (apparently in part to gather data for LLM training) that use a variety of old browser user agents, especially Chrome user agents.

If this is in error and you're using a current version of your browser of choice, you can contact me at my current place at t…

12 часов назад @ utcc.utoronto.ca
Fixing QuickLook (2023)
Fixing QuickLook (2023) Fixing QuickLook (2023)

Alright, let's try that again:$ lldb -n FinderProcess 4040 stoppedthread #1, queue = 'com.apple.main-thread', stop reason = signal SIGSTOP    frame #0 : 0x000000018df1bf54 libsystem_kernel.dylib ` mach_msg2_trap + 8libsystem_kernel.dylib`mach_msg2_trap:-> 0x18df1bf54 <+8> : retlibsystem_kernel.dylib`macx_swapon:    0x18df1bf58 <+0> : mov    x16, #-0x30    0x18df1bf5c <+4> : svc    #0x80    0x18df1bf60 <+8> : retTarget 0: (Finder) stopped.

Let's see what's in this panel:(lldb) po [$x0 recursiveDescription][ AÂ Â Â Â w ] h=--- v=--- NSNextStepFrame 0x12cea29b0 f=(0,0,370,223) b=(-) => <_NSViewBackingLayer: 0x600003f7fcf0>[ AÂ Â Â Â w ] h=-&- v=-&- QLPreviewBackgroundVi…

12 часов назад @ foon.uk
Yggdrasil Network as an Embedded Go Library
Yggdrasil Network as an Embedded Go Library Yggdrasil Network as an Embedded Go Library

GenerateSelfSignedCertificate (); err != nil { return nil , err } return core .

MapNetwork ( "127.0.0.1" , network ); err != nil { return err } if err := manager .

RegisterTransport ( metered ); err != nil { return err } serverCore , err := newCore ( manager ) if err != nil { return err } defer serverCore .

Close () return nil , nil , err } return vt , adapter , nil } Enter fullscreen mode Exit fullscreen modeNow create one VTun for each Core:serverVT , serverAdapter , err := newVTun ( "server" , serverCore ) if err != nil { return err } defer serverAdapter .

Accept () if err != nil { serverErr <- err return } defer conn . Close () buf := make ([] byte , 64 ) n , err := conn . Read ( buf ) …

13 часов назад @ dev.to
Hacking Time: Spoofing Atomic Clocks with Audio Harmonics
Hacking Time: Spoofing Atomic Clocks with Audio Harmonics Hacking Time: Spoofing Atomic Clocks with Audio Harmonics

It’s simply impossible for a phone’s audio pipeline to play a 60 kHz tone.

Audio Harmonics and Voice CoilsInstead of attempting to play a smooth 60 kHz tone, the Clock Wave app outputs a harsh 20 kHz square wave at maximum volume.

It ignores the loud 20 kHz audio and "feels" only the faint 60 kHz magnetic echo, successfully decoding the time data hidden within.

Rest the speaker of the smartphone directly against the bezel of the wall clock to overcome the near-field drop-off.

A close-up demonstration of the Clock Wave app transmitting a radio signal to synchronize a wall-mounted atomic clock.

13 часов назад @ josephhall.org
My Agentic Trust Issues: From Prompt Injection to Supply-Chain Compromise on gemini-cli
My Agentic Trust Issues: From Prompt Injection to Supply-Chain Compromise on gemini-cli My Agentic Trust Issues: From Prompt Injection to Supply-Chain Compromise on gemini-cli

When the agent reads the issue, the prompt injection takes control of the agent.

When the agent reads the issue, the prompt injection takes control of the agent.

The triage workflow on gemini-cli had the same prompt injection entry point, but the exploitation path to full repository compromise required several additional steps.

System prompts are not a reliable security boundary against prompt injection, and defeating the prompt would not change the underlying vulnerability or its impact.

Any issues: opened trigger without an author_association gate is a prompt injection surface.

13 часов назад @ pillar.security
Techmeme Techmeme
последний пост 55 минут назад
NetBlocks: Iran's 70+ day internet blackout is "the longest recorded national internet shutdown in a connected society", as businesses warn of layoffs, closures (Golnar Motevalli/Bloomberg)
NetBlocks: Iran's 70+ day internet blackout is "the longest recorded national internet shutdown in a connected society", as businesses warn of layoffs, closures (Golnar Motevalli/Bloomberg) NetBlocks: Iran's 70+ day internet blackout is "the longest recorded national internet shutdown in a connected society", as businesses warn of layoffs, closures (Golnar Motevalli/Bloomberg)

Golnar Motevalli / Bloomberg:

NetBlocks: Iran's 70+ day internet blackout is “the longest recorded national internet shutdown in a connected society”, as businesses warn of layoffs, closures — Iran's record internet blackout is taking a heavy toll on private businesses, with owners and industry officials warning …

55 минут назад @ techmeme.com
An analysis of US DOL data: the IT sector's unemployment rate rose from 3.6% in March to 3.8% in April, as the sector shed 13,000 jobs amid AI uncertainty (Belle Lin/Wall Street Journal)
An analysis of US DOL data: the IT sector's unemployment rate rose from 3.6% in March to 3.8% in April, as the sector shed 13,000 jobs amid AI uncertainty (Belle Lin/Wall Street Journal) An analysis of US DOL data: the IT sector's unemployment rate rose from 3.6% in March to 3.8% in April, as the sector shed 13,000 jobs amid AI uncertainty (Belle Lin/Wall Street Journal)

Belle Lin / Wall Street Journal:

An analysis of US DOL data: the IT sector's unemployment rate rose from 3.6% in March to 3.8% in April, as the sector shed 13,000 jobs amid AI uncertainty — The job market for information-technology workers remains murky as tech companies shed personnel — The unemployment rate …

1 час назад @ techmeme.com
Paris-based Lithosquare, which uses AI to speed the discovery of critical mineral and metal deposits, raised a $25M seed led by World Fund and Kindred Capital (Rahul Raj/EU-Startups)
Paris-based Lithosquare, which uses AI to speed the discovery of critical mineral and metal deposits, raised a $25M seed led by World Fund and Kindred Capital (Rahul Raj/EU-Startups) Paris-based Lithosquare, which uses AI to speed the discovery of critical mineral and metal deposits, raised a $25M seed led by World Fund and Kindred Capital (Rahul Raj/EU-Startups)

Rahul Raj / EU-Startups:

Paris-based Lithosquare, which uses AI to speed the discovery of critical mineral and metal deposits, raised a $25M seed led by World Fund and Kindred Capital — Lithosquare, a Paris-based startup that deploys Geology AI and geologist-led intelligence to amplify and accelerate the discovery …

1 час назад @ techmeme.com
Reserv, which provides software and AI-powered claims processing tech for property and casualty insurers, raised a $125M Series C led by KKR (FinTech Global)
Reserv, which provides software and AI-powered claims processing tech for property and casualty insurers, raised a $125M Series C led by KKR (FinTech Global) Reserv, which provides software and AI-powered claims processing tech for property and casualty insurers, raised a $125M Series C led by KKR (FinTech Global)

FinTech Global:

Reserv, which provides software and AI-powered claims processing tech for property and casualty insurers, raised a $125M Series C led by KKR — Reserv, an AI-native third-party administrator (TPA) and claims technology provider for the property and casualty (P&C) insurance sector, has closed a $125m Series C funding round.

1 час назад @ techmeme.com
MoonPay acquires DFlow, a platform that facilitates trading on the Solana blockchain, sources say for $100M in stock; DFlow had raised $7.5M across two rounds (Jack Kubinec/Fortune)
MoonPay acquires DFlow, a platform that facilitates trading on the Solana blockchain, sources say for $100M in stock; DFlow had raised $7.5M across two rounds (Jack Kubinec/Fortune) MoonPay acquires DFlow, a platform that facilitates trading on the Solana blockchain, sources say for $100M in stock; DFlow had raised $7.5M across two rounds (Jack Kubinec/Fortune)

Jack Kubinec / Fortune:

MoonPay acquires DFlow, a platform that facilitates trading on the Solana blockchain, sources say for $100M in stock; DFlow had raised $7.5M across two rounds — The crypto payment and infrastructure firm MoonPay has acquired DFlow, a platform that facilitates trading on the Solana blockchain.

1 час назад @ techmeme.com
Sydney-based AI data center operator IREN agrees to acquire Mirantis, which offers Kubernetes management and cloud infrastructure software, for $625M in stock (Shane Snider/Data Center Knowledge)
Sydney-based AI data center operator IREN agrees to acquire Mirantis, which offers Kubernetes management and cloud infrastructure software, for $625M in stock (Shane Snider/Data Center Knowledge) Sydney-based AI data center operator IREN agrees to acquire Mirantis, which offers Kubernetes management and cloud infrastructure software, for $625M in stock (Shane Snider/Data Center Knowledge)

Shane Snider / Data Center Knowledge:

Sydney-based AI data center operator IREN agrees to acquire Mirantis, which offers Kubernetes management and cloud infrastructure software, for $625M in stock — The $625 million deal adds Kubernetes and enterprise ops to help turn deployed GPUs into usable, revenue-generating AI infrastructure.

1 час назад @ techmeme.com
Google seems to require Google Play Services for passing next-gen reCAPTCHA on Android, denying de-Googled Android phones and creating surveillance issues (Rick Findlay/Reclaim The Net)
Google seems to require Google Play Services for passing next-gen reCAPTCHA on Android, denying de-Googled Android phones and creating surveillance issues (Rick Findlay/Reclaim The Net) Google seems to require Google Play Services for passing next-gen reCAPTCHA on Android, denying de-Googled Android phones and creating surveillance issues (Rick Findlay/Reclaim The Net)

Rick Findlay / Reclaim The Net:

Google seems to require Google Play Services for passing next-gen reCAPTCHA on Android, denying de-Googled Android phones and creating surveillance issues — Google has tied its next-generation reCAPTCHA system to Google Play Services on Android, meaning anyone running a de-Googled phone …

2 часа назад @ techmeme.com
Execs at Palantir, whose stock is up ~16x since its AI platform's 2023 debut, often decry other AI as slop, as competition from frontier AI labs stiffens (Heather Somerville/Wall Street Journal)
Execs at Palantir, whose stock is up ~16x since its AI platform's 2023 debut, often decry other AI as slop, as competition from frontier AI labs stiffens (Heather Somerville/Wall Street Journal) Execs at Palantir, whose stock is up ~16x since its AI platform's 2023 debut, often decry other AI as slop, as competition from frontier AI labs stiffens (Heather Somerville/Wall Street Journal)

Heather Somerville / Wall Street Journal:

Execs at Palantir, whose stock is up ~16x since its AI platform's 2023 debut, often decry other AI as slop, as competition from frontier AI labs stiffens — Investors and some employees see a real threat of the company ceding business to AI models — Palantir Technologies owes …

4 часа назад @ techmeme.com
FCC passed an anti-robocall proposal requiring telecoms, including VoIP providers, to verify user identities before activating service, raising privacy fears (Ken Macon/Reclaim The Net)
FCC passed an anti-robocall proposal requiring telecoms, including VoIP providers, to verify user identities before activating service, raising privacy fears (Ken Macon/Reclaim The Net) FCC passed an anti-robocall proposal requiring telecoms, including VoIP providers, to verify user identities before activating service, raising privacy fears (Ken Macon/Reclaim The Net)

Ken Macon / Reclaim The Net:

FCC passed an anti-robocall proposal requiring telecoms, including VoIP providers, to verify user identities before activating service, raising privacy fears — The era of the anonymous phone number could be ending. On April 30, the Federal Communications Commission unanimously approved …

7 часов назад @ techmeme.com
How SpaceMob, an online community of ~50,000, has fueled a meme-stock-like rally in satellite networking company AST, which is up ~6,000% over a 22-month period (Bloomberg)
How SpaceMob, an online community of ~50,000, has fueled a meme-stock-like rally in satellite networking company AST, which is up ~6,000% over a 22-month period (Bloomberg) How SpaceMob, an online community of ~50,000, has fueled a meme-stock-like rally in satellite networking company AST, which is up ~6,000% over a 22-month period (Bloomberg)

Bloomberg:

How SpaceMob, an online community of ~50,000, has fueled a meme-stock-like rally in satellite networking company AST, which is up ~6,000% over a 22-month period — Championed by a guru known simply as the Kook, the satellite company AST has become one of the world's most expensive stocks.

10 часов назад @ techmeme.com
LayerZero apologizes for Kelp DAO exploit response, says single-verifier setup was deficient; Dune: in April, ~47% of LayerZero OApps had the same default setup (Zack Abrams/The Block)
LayerZero apologizes for Kelp DAO exploit response, says single-verifier setup was deficient; Dune: in April, ~47% of LayerZero OApps had the same default setup (Zack Abrams/The Block) LayerZero apologizes for Kelp DAO exploit response, says single-verifier setup was deficient; Dune: in April, ~47% of LayerZero OApps had the same default setup (Zack Abrams/The Block)

Zack Abrams / The Block:

LayerZero apologizes for Kelp DAO exploit response, says single-verifier setup was deficient; Dune: in April, ~47% of LayerZero OApps had the same default setup — Quick Take — LayerZero published a blog post Friday apologizing for poor communication in the three weeks since the $292 million Kelp DAO exploit.

12 часов назад @ techmeme.com
Anthropic, OpenAI, and other AI firms met with Hindu, Sikh, and Greek Orthodox leaders to draft principles on how to infuse models with ethics and morality (Krysta Fauria/Associated Press)
Anthropic, OpenAI, and other AI firms met with Hindu, Sikh, and Greek Orthodox leaders to draft principles on how to infuse models with ethics and morality (Krysta Fauria/Associated Press) Anthropic, OpenAI, and other AI firms met with Hindu, Sikh, and Greek Orthodox leaders to draft principles on how to infuse models with ethics and morality (Krysta Fauria/Associated Press)

Krysta Fauria / Associated Press:

Anthropic, OpenAI, and other AI firms met with Hindu, Sikh, and Greek Orthodox leaders to draft principles on how to infuse models with ethics and morality — As concerns mount over artificial intelligence and its rapid integration into society, tech companies are increasingly turning …

14 часов назад @ techmeme.com
GM agrees to pay $12.75M to resolve a California investigation into claims that it illegally sold the location and driving data of OnStar subscribers to brokers (David Shepardson/Reuters)
GM agrees to pay $12.75M to resolve a California investigation into claims that it illegally sold the location and driving data of OnStar subscribers to brokers (David Shepardson/Reuters) GM agrees to pay $12.75M to resolve a California investigation into claims that it illegally sold the location and driving data of OnStar subscribers to brokers (David Shepardson/Reuters)

David Shepardson / Reuters:

GM agrees to pay $12.75M to resolve a California investigation into claims that it illegally sold the location and driving data of OnStar subscribers to brokers — GM (GM.N) has agreed to pay $12.75 million to resolve a California investigation into allegations that the Detroit automaker illegally sold …

15 часов назад @ techmeme.com
Sources: ByteDance plans to increase its 2026 capex to more than $30B, up at least 25% from a preliminary plan, amid the AI boom and rising memory chip costs (South China Morning Post)
Sources: ByteDance plans to increase its 2026 capex to more than $30B, up at least 25% from a preliminary plan, amid the AI boom and rising memory chip costs (South China Morning Post) Sources: ByteDance plans to increase its 2026 capex to more than $30B, up at least 25% from a preliminary plan, amid the AI boom and rising memory chip costs (South China Morning Post)

South China Morning Post:

Sources: ByteDance plans to increase its 2026 capex to more than $30B, up at least 25% from a preliminary plan, amid the AI boom and rising memory chip costs — TikTok owner ByteDance is ramping up its spending on artificial intelligence infrastructure, boosting its planned capital expenditure …

16 часов назад @ techmeme.com
OpenAI, Anthropic, and Google's enterprise push with PE firms poses a new competitive threat to India's IT industry, as services become increasingly automatable (Moneycontrol)
OpenAI, Anthropic, and Google's enterprise push with PE firms poses a new competitive threat to India's IT industry, as services become increasingly automatable (Moneycontrol) OpenAI, Anthropic, and Google's enterprise push with PE firms poses a new competitive threat to India's IT industry, as services become increasingly automatable (Moneycontrol)

Moneycontrol:

OpenAI, Anthropic, and Google's enterprise push with PE firms poses a new competitive threat to India's IT industry, as services become increasingly automatable — On Wall Street, the announcements sounded like the next phase of the artificial intelligence (AI) boom: frontier model companies …

18 часов назад @ techmeme.com
Techmeme Techmeme
последний пост 55 минут назад
Sales of PC motherboards are expected to fall 25%+ YoY in 2026, as PC users delay their upgrades amid AI-driven price surges for memory, storage, and processors (Jowi Morales/Tom's Hardware)
Sales of PC motherboards are expected to fall 25%+ YoY in 2026, as PC users delay their upgrades amid AI-driven price surges for memory, storage, and processors (Jowi Morales/Tom's Hardware) Sales of PC motherboards are expected to fall 25%+ YoY in 2026, as PC users delay their upgrades amid AI-driven price surges for memory, storage, and processors (Jowi Morales/Tom's Hardware)

Jowi Morales / Tom's Hardware:

Sales of PC motherboards are expected to fall 25%+ YoY in 2026, as PC users delay their upgrades amid AI-driven price surges for memory, storage, and processors — Fewer people are buying parts and building new PCs from scratch. … Motherboard sales are now collapsing amid unprecedented shortages fueled …

21 час назад @ techmeme.com
A profile of Anthropic CFO Krishna Rao, who tends to take a conservative approach to revenue projections and has chosen to raise less money than is available (Kate Clark/Wall Street Journal)
A profile of Anthropic CFO Krishna Rao, who tends to take a conservative approach to revenue projections and has chosen to raise less money than is available (Kate Clark/Wall Street Journal) A profile of Anthropic CFO Krishna Rao, who tends to take a conservative approach to revenue projections and has chosen to raise less money than is available (Kate Clark/Wall Street Journal)

Kate Clark / Wall Street Journal:

A profile of Anthropic CFO Krishna Rao, who tends to take a conservative approach to revenue projections and has chosen to raise less money than is available — Krishna Rao is navigating unprecedented growth, compute constraints and the idiosyncratic Amodeis

1 day назад @ techmeme.com
Palo Alto Networks says in its testing, three weeks of frontier AI-assisted analysis matched a full year of manual penetration testing, with broader coverage (Sam Rubin/Palo Alto Networks Blog)
Palo Alto Networks says in its testing, three weeks of frontier AI-assisted analysis matched a full year of manual penetration testing, with broader coverage (Sam Rubin/Palo Alto Networks Blog) Palo Alto Networks says in its testing, three weeks of frontier AI-assisted analysis matched a full year of manual penetration testing, with broader coverage (Sam Rubin/Palo Alto Networks Blog)

Sam Rubin / Palo Alto Networks Blog:

Palo Alto Networks says in its testing, three weeks of frontier AI-assisted analysis matched a full year of manual penetration testing, with broader coverage — For the last several months, we have had early, unbounded access to the latest frontier AI models.

1 day назад @ techmeme.com
Anthropic details how it improved Claude's safety training after finding agentic misalignment in older models, such as Opus 4 blackmailing engineers (Anthropic)
Anthropic details how it improved Claude's safety training after finding agentic misalignment in older models, such as Opus 4 blackmailing engineers (Anthropic) Anthropic details how it improved Claude's safety training after finding agentic misalignment in older models, such as Opus 4 blackmailing engineers (Anthropic)

Anthropic:

Anthropic details how it improved Claude's safety training after finding agentic misalignment in older models, such as Opus 4 blackmailing engineers — Last year, we released a case study on agentic misalignment. In experimental scenarios, we showed that AI models from many different …

1 day назад @ techmeme.com
OpenAI president Greg Brockman's journal has emerged as a star witness in the Musk v. Altman trial; Brockman says he stopped writing about OpenAI in it in 2023 (Ben Cohen/Wall Street Journal)
OpenAI president Greg Brockman's journal has emerged as a star witness in the Musk v. Altman trial; Brockman says he stopped writing about OpenAI in it in 2023 (Ben Cohen/Wall Street Journal) OpenAI president Greg Brockman's journal has emerged as a star witness in the Musk v. Altman trial; Brockman says he stopped writing about OpenAI in it in 2023 (Ben Cohen/Wall Street Journal)

Ben Cohen / Wall Street Journal:

OpenAI president Greg Brockman's journal has emerged as a star witness in the Musk v. Altman trial; Brockman says he stopped writing about OpenAI in it in 2023 — The journal of OpenAI president Greg Brockman is now a character in the company's battle with the world's richest man …

1 day, 1 hour назад @ techmeme.com
Source: Mistral AI and TML's founding member Devendra Chaplot, who was considered a marquee hire when he joined xAI in March, exited xAI after roughly a month (The Information)
Source: Mistral AI and TML's founding member Devendra Chaplot, who was considered a marquee hire when he joined xAI in March, exited xAI after roughly a month (The Information) Source: Mistral AI and TML's founding member Devendra Chaplot, who was considered a marquee hire when he joined xAI in March, exited xAI after roughly a month (The Information)

The Information:

Source: Mistral AI and TML's founding member Devendra Chaplot, who was considered a marquee hire when he joined xAI in March, exited xAI after roughly a month — Cursor is already starting to make its presence known at SpaceX's AI unit, just weeks after Elon Musk's firm got an option to buy the coding startup for $60 billion.

1 day, 1 hour назад @ techmeme.com
NHTSA says the 2026 Tesla Model Y is the first car model to pass the agency's new ADAS tests; Tesla conducted the tests and submitted the results to the NHTSA (Kirsten Korosec/TechCrunch)
NHTSA says the 2026 Tesla Model Y is the first car model to pass the agency's new ADAS tests; Tesla conducted the tests and submitted the results to the NHTSA (Kirsten Korosec/TechCrunch) NHTSA says the 2026 Tesla Model Y is the first car model to pass the agency's new ADAS tests; Tesla conducted the tests and submitted the results to the NHTSA (Kirsten Korosec/TechCrunch)

Kirsten Korosec / TechCrunch:

NHTSA says the 2026 Tesla Model Y is the first car model to pass the agency's new ADAS tests; Tesla conducted the tests and submitted the results to the NHTSA — The National Highway Traffic Safety Administration (NHTSA) said Tuesday that the later release 2026 Tesla Model Y is the first vehicle …

1 day, 1 hour назад @ techmeme.com
Beijing-based humanoid robotics company Robotera raised over $200M led by SF Group, after raising ~$146M in March at a ~$1.47B valuation (Du Zhihang/Caixin Global)
Beijing-based humanoid robotics company Robotera raised over $200M led by SF Group, after raising ~$146M in March at a ~$1.47B valuation (Du Zhihang/Caixin Global) Beijing-based humanoid robotics company Robotera raised over $200M led by SF Group, after raising ~$146M in March at a ~$1.47B valuation (Du Zhihang/Caixin Global)

Du Zhihang / Caixin Global:

Beijing-based humanoid robotics company Robotera raised over $200M led by SF Group, after raising ~$146M in March at a ~$1.47B valuation — Chinese humanoid-robot startup Robot Era has raised more than $200 million in a new funding round led by SF Express, as investors pour capital …

1 day, 4 hours назад @ techmeme.com
Honeywell's Quantinuum files for a US IPO, reporting a $136.6M net loss on revenue of $5.2M for the three months ended March 31; sources: it could raise $1.5B+ (Carmen Reinicke/Bloomberg)
Honeywell's Quantinuum files for a US IPO, reporting a $136.6M net loss on revenue of $5.2M for the three months ended March 31; sources: it could raise $1.5B+ (Carmen Reinicke/Bloomberg) Honeywell's Quantinuum files for a US IPO, reporting a $136.6M net loss on revenue of $5.2M for the three months ended March 31; sources: it could raise $1.5B+ (Carmen Reinicke/Bloomberg)

Carmen Reinicke / Bloomberg:

Honeywell's Quantinuum files for a US IPO, reporting a $136.6M net loss on revenue of $5.2M for the three months ended March 31; sources: it could raise $1.5B+ — Quantinuum Inc., a quantum computing company backed by Honeywell International Inc., filed for a US initial public offering …

1 day, 4 hours назад @ techmeme.com
Trump Media and Technology Group reports Q1 net sales up 6% YoY to $871,200 and a $405.9M net loss; DJT is down 35% so far in 2026 for a market cap of ~$2.47B (Todd Spangler/Variety)
Trump Media and Technology Group reports Q1 net sales up 6% YoY to $871,200 and a $405.9M net loss; DJT is down 35% so far in 2026 for a market cap of ~$2.47B (Todd Spangler/Variety) Trump Media and Technology Group reports Q1 net sales up 6% YoY to $871,200 and a $405.9M net loss; DJT is down 35% so far in 2026 for a market cap of ~$2.47B (Todd Spangler/Variety)

Todd Spangler / Variety:

Trump Media and Technology Group reports Q1 net sales up 6% YoY to $871,200 and a $405.9M net loss; DJT is down 35% so far in 2026 for a market cap of ~$2.47B — Trump Media and Technology Group, operator of the social media platform Truth Social, reported a massive net loss for the first three months …

1 day, 6 hours назад @ techmeme.com
The FCC says foreign-made routers and drones can now receive software updates at least until 2029, extending its earlier 2027 cutoff (Michael Kan/PCMag)
The FCC says foreign-made routers and drones can now receive software updates at least until 2029, extending its earlier 2027 cutoff (Michael Kan/PCMag) The FCC says foreign-made routers and drones can now receive software updates at least until 2029, extending its earlier 2027 cutoff (Michael Kan/PCMag)

Michael Kan / PCMag:

The FCC says foreign-made routers and drones can now receive software updates at least until 2029, extending its earlier 2027 cutoff — The FCC's bans on foreign-made Wi-Fi routers and drones initially included an expiration date on software updates, but the commission has now extended the cutoff from 2027 to 2029.

1 day, 6 hours назад @ techmeme.com
Sources: WH is preparing to order US agencies to partner with AI companies on cybersecurity; the EO wouldn't require pre-release model testing by the government (Bloomberg)
Sources: WH is preparing to order US agencies to partner with AI companies on cybersecurity; the EO wouldn't require pre-release model testing by the government (Bloomberg) Sources: WH is preparing to order US agencies to partner with AI companies on cybersecurity; the EO wouldn't require pre-release model testing by the government (Bloomberg)

Bloomberg:

Sources: WH is preparing to order US agencies to partner with AI companies on cybersecurity; the EO wouldn't require pre-release model testing by the government — The Trump administration is preparing to order US agencies to partner with artificial intelligence companies to protect networks …

1 day, 8 hours назад @ techmeme.com
EU warns that VPNs are being used to bypass online age-verification systems, calling their use "a loophole in the legislation that needs closing" (Alex Lekander/CyberInsider)
EU warns that VPNs are being used to bypass online age-verification systems, calling their use "a loophole in the legislation that needs closing" (Alex Lekander/CyberInsider) EU warns that VPNs are being used to bypass online age-verification systems, calling their use "a loophole in the legislation that needs closing" (Alex Lekander/CyberInsider)

Alex Lekander / CyberInsider:

EU warns that VPNs are being used to bypass online age-verification systems, calling their use “a loophole in the legislation that needs closing” — The European Parliamentary Research Service (EPRS) has warned that virtual private networks (VPNs) are increasingly being used …

1 day, 9 hours назад @ techmeme.com
Impressions of China's AI ecosystem after visiting many leading AI labs there, and the similarities and differences in working on LLMs in China and the West (Nathan Lambert/Interconnects AI)
Impressions of China's AI ecosystem after visiting many leading AI labs there, and the similarities and differences in working on LLMs in China and the West (Nathan Lambert/Interconnects AI) Impressions of China's AI ecosystem after visiting many leading AI labs there, and the similarities and differences in working on LLMs in China and the West (Nathan Lambert/Interconnects AI)

Nathan Lambert / Interconnects AI:

Impressions of China's AI ecosystem after visiting many leading AI labs there, and the similarities and differences in working on LLMs in China and the West — Lessons from my trip to talk to most of the leading AI labs in China. … Audio playback is not supported on your browser. Please upgrade.

1 day, 9 hours назад @ techmeme.com
Sources: Apollo Global and Blackstone are among private credit lenders in talks with Broadcom over a ~$35B financing deal to fund the development of AI chips (Bloomberg)
Sources: Apollo Global and Blackstone are among private credit lenders in talks with Broadcom over a ~$35B financing deal to fund the development of AI chips (Bloomberg) Sources: Apollo Global and Blackstone are among private credit lenders in talks with Broadcom over a ~$35B financing deal to fund the development of AI chips (Bloomberg)

Bloomberg:

Sources: Apollo Global and Blackstone are among private credit lenders in talks with Broadcom over a ~$35B financing deal to fund the development of AI chips — Apollo Global Management Inc. and Blackstone Inc. are among private credit lenders involved in talks with chipmaker Broadcom Inc …

1 day, 10 hours назад @ techmeme.com
GitHub Trending GitHub Trending
последний пост 4 часа назад
InsForge/InsForge
InsForge/InsForge InsForge/InsForge

InsForge gives your coding agent database, auth, storage, compute, hosting, and AI gateway to ship full-stack apps end-to-end.

Configure primitives: Deploy edge functions, run database migrations, create storage buckets, set up auth providers, and configure other backend resources directly.

SetupYou can run InsForge locally using Docker Compose.

Or run from source:# Run with Docker git clone https://github.com/insforge/insforge.git cd insforge cp .env.example .env docker compose -f docker-compose.prod.yml up2.

Manage them with:docker compose -f docker-compose.prod.yml --env-file .env.project1 -p project1 ps # status docker compose -f docker-compose.prod.yml --env-file .env.project1 -p proje…

4 часа назад @ github.com
decolua/9router
decolua/9router decolua/9router

Install globally:npm install -g 9router 9router🎉 Dashboard opens at http://localhost:201282.

Connect a FREE provider (no signup needed):Dashboard → Providers → Connect Kiro AI (free Claude unlimited) or OpenCode Free (no auth) → Done!

Think of it as a "savings tracker" showing how much you're saving by using free models or routing through 9Router!

The current FREE providers (Kiro, OpenCode Free, Vertex) are genuinely free with no hidden charges.

OpenCode Free (No auth, auto-fetch models) Dashboard → Connect OpenCode Free → No login required (passthrough proxy) → Models auto-fetched from opencode.ai/zen/v1/models Pro Tip: Fastest setup.

1 day, 4 hours назад @ github.com
browserbase/skills
browserbase/skills browserbase/skills

Browserbase SkillsA set of skills for enabling Claude Code to work with Browserbase through browser automation and the official bb CLI.

Add marketplace Enter the marketplace source: browserbase/skills Press enter to select the browse plugin Hit enter again to Install now Restart Claude Code for changes to take effectUsageOnce installed, you can ask Claude to browse or use the Browserbase CLI:"Go to Hacker News, get the top post comments, and summarize them ""QA test http://localhost:3000 and fix any bugs you encounter""Order me a pizza, you're already signed in on Doordash""Use bb to list my Browserbase projects and show the output as JSON"to list my Browserbase projects and show the output…

1 day, 4 hours назад @ github.com
fspecii/ace-step-ui
fspecii/ace-step-ui fspecii/ace-step-ui

ACE-Step UIThe Ultimate Open Source Suno AlternativeSeamless integration with ACE-Step 1.5 - The Open Source AI Music Generation ModelDemo • Why ACE-Step • Features • Installation • Usage • Contributing🎬 DemoGenerate professional AI music with a Spotify-like interface - 100% free and local🚀 Why ACE-Step UI?

ACE-Step 1.5 is the open source Suno killer that runs locally on your own GPU - and ACE-Step UI gives you a beautiful, professional interface to harness its full power.

Start ACE-Step UI (in another terminal) cd ace-step-ui start.batLinux / macOS - One-Click Start (Easiest!)

Start ACE-Step UI (in another terminal) cd ace-step-ui start.batOpen http://localhost:3000 and start creating!

⭐ I…

2 days, 4 hours назад @ github.com
cocoindex-io/cocoindex
cocoindex-io/cocoindex cocoindex-io/cocoindex

Star us ❤️ → · · ·CocoIndex turns codebases, meeting notes, inboxes, Slack, PDFs, and videos into live, continuously fresh context for your AI agents and LLM apps to reason over effectively — with minimal incremental processing.

text )) @ coco .

fn async def main ( src ): table = await postgres .

items (), table ) coco .

React — for data engineeringSee the React ↔ CocoIndex mental model →Incremental engine for long-horizon agentsData transformation for any engineer, designed for AI workloads —with a smart incremental engine for always-fresh, explainable data.

2 days, 4 hours назад @ github.com
LearningCircuit/local-deep-research
LearningCircuit/local-deep-research LearningCircuit/local-deep-research

Local Deep Research🚀 What is Local Deep Research?

Supply Chain Security: Docker images are signed with Cosign, include SLSA provenance attestations, and attach SBOMs.

Detailed Architecture → | Security Policy → | Security Review Process →🔒 Privacy & DataLocal Deep Research contains no telemetry, no analytics, and no tracking.

AcknowledgementsLocal Deep Research is built on the work of many open-access initiatives, academic databases, and open-source projects.

If Local Deep Research is useful to you, consider giving back to the open-access ecosystem that makes it possible:📄 LicenseMIT License - see LICENSE file.

2 days, 4 hours назад @ github.com
openai/symphony
openai/symphony openai/symphony

SymphonySymphony turns project work into isolated, autonomous implementation runs, allowing teams to manage work instead of supervising coding agents.

In this demo video, Symphony monitors a Linear board for work and spawns agents to handle the tasks.

The agents complete the tasks and provide proof of work: CI status, PR review feedback, complexity analysis, and walkthrough videos.

Symphony is the next step -- moving from managing coding agents to managing work that needs to get done.

Use our experimental reference implementationCheck out elixir/README.md for instructions on how to set up your environment and run the Elixir-based Symphony implementation.

2 days, 4 hours назад @ github.com
anthropics/financial-services
anthropics/financial-services anthropics/financial-services

Each ships as a Cowork plugin and as a Claude Managed Agent template you deploy via /v1/agents .

Each ships as a Cowork plugin as a Claude Managed Agent template you deploy via .

Vertical plugins — the underlying skills, slash commands, and data connectors, bundled by FSI vertical.

Each agent plugin is self-contained — it bundles the skills it uses, so installing the agent is all you need.

For Managed Agent deployment — agent.yaml , leaf-worker subagents, steering-event examples, and per-agent security notes — see managed-agent-cookbooks/.

2 days, 4 hours назад @ github.com
Flowseal/zapret-discord-youtube
Flowseal/zapret-discord-youtube Flowseal/zapret-discord-youtube

Saved searches Use saved searches to filter your results more quicklyWe read every piece of feedback, and take your input very seriously.

Secure your code as you buildCode security Secure your code as you buildYou signed in with another tab or window.

You signed out in another tab or window.

Reload to refresh your session.

You switched accounts on another tab or window.

3 days, 4 hours назад @ github.com
docusealco/docuseal
docusealco/docuseal docusealco/docuseal

DocuSealOpen source document filling and signingDocuSeal is an open source platform that provides secure and efficient digital document signing and processing.

Create PDF forms to have them filled and signed online on any device with an easy-to-use, mobile-optimized web tool.

FeaturesPDF form fields builder (WYSIWYG)12 field types available (Signature, Date, File, Checkbox etc.)

We specialize in working with various industries, including Banking, Healthcare, Transport, Real Estate, eCommerce, KYC, CRM, and other software products that require bulk document signing.

By leveraging DocuSeal, we can assist in reducing the overall cost of developing and processing electronic documents while ensu…

3 days, 4 hours назад @ github.com
1jehuang/jcode
1jehuang/jcode 1jehuang/jcode

Supported built-in login flowsClaude ( jcode login --provider claude )( ) OpenAI / ChatGPT / Codex ( jcode login --provider openai )( ) Google Gemini ( jcode login --provider gemini )( ) GitHub Copilot ( jcode login --provider copilot )( ) Azure OpenAI ( jcode login --provider azure )( ) Alibaba Cloud Coding Plan ( jcode login --provider alibaba-coding-plan )( ) Fireworks ( jcode login --provider fireworks )( ) MiniMax ( jcode login --provider minimax )( ) LM Studio ( jcode login --provider lmstudio )( ) Ollama ( jcode login --provider ollama )( ) Custom OpenAI-compatible endpoint ( jcode login --provider openai-compatible )For custom OpenAI-compatible endpoints, jcode now prompts for the A…

3 days, 4 hours назад @ github.com
lukilabs/craft-agents-oss
lukilabs/craft-agents-oss lukilabs/craft-agents-oss

It uses the Claude Agent SDK and the Pi SDK side by side—building on what we found great and improving areas where we've desired improvements.

Google OAuth Setup (Gmail, Calendar, Drive, YouTube, Search Console)Google integrations require you to create your own OAuth credentials.

ArchitectureCraft Agents uses two agent backends:Claude — powered by the Claude Agent SDK, which natively supports custom base URLs and provider routing.

Pi — powered by the Pi SDK, which handles Google AI Studio, ChatGPT Plus (Codex OAuth), GitHub Copilot OAuth, and OpenAI API key connections.

Third-Party LicensesThis project uses the Claude Agent SDK, which is subject to Anthropic's Commercial Terms of Service.

4 days, 3 hours назад @ github.com
zed-industries/zed
zed-industries/zed zed-industries/zed

ZedWelcome to Zed, a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.

InstallationOn macOS, Linux, and Windows you can download Zed directly or install Zed via your local package manager (macOS/Linux/Windows).

Is the error failed to satisfy license requirements for a dependency?

If so, first determine what license the project has and whether this system is sufficient to comply with this license's requirements.

If so, first determine what license the project has and whether this system is sufficient to comply with this license's requirements.

4 days, 3 hours назад @ github.com
virattt/dexter
virattt/dexter virattt/dexter

Dexter 🤖Dexter is an autonomous financial research agent that thinks, plans, and learns as it works.

Think Claude Code, but built specifically for financial research.

Table of Contents👋 OverviewDexter takes complex financial questions and turns them into clear, step-by-step research plans.

It runs those tasks using live market data, checks its own work, and refines the results until it has a confident, data-backed answer.

📱 How to Use with WhatsAppChat with Dexter through WhatsApp by linking your phone to the gateway.

4 days, 3 hours назад @ github.com
iamgio/quarkdown
iamgio/quarkdown iamgio/quarkdown

\end { center } \begin { figure }[!h] \centering \begin { subfigure }[b] \includegraphics [width=0.3 \linewidth ]{img1.png} \end { subfigure } \begin { subfigure }[b] \includegraphics [width=0.3 \linewidth ]{img2.png} \end { subfigure } \begin { subfigure }[b] \includegraphics [width=0.3 \linewidth ]{img3.png} \end { subfigure } \end { figure } .tableofcontents # Section ## Subsection 1 .

Requirements: Java 17 or higher(Only for PDF export) Node.js, npm, Puppeteer.

Alternatively, you may manually create a .qd source file and start from there.

If you would like to familiarize yourself with Quarkdown instead, quarkdown repl lets you play with an interactive REPL mode.

--pdf : produces a PDF f…

4 days, 3 hours назад @ github.com
Технологии
Reddit: /r/technology/ Reddit: /r/technology/
последний пост 3 часа назад
Google readies AI Ultra Lite Gemini tier and explicit usage-limits for all Gemini users
Google readies AI Ultra Lite Gemini tier and explicit usage-limits for all Gemini users Google readies AI Ultra Lite Gemini tier and explicit usage-limits for all Gemini users

submitted by /u/PaiDuck [link] [comments]

3 часа назад @ reddit.com
Former IT contractor convicted for wiping 96 US government databases
Former IT contractor convicted for wiping 96 US government databases Former IT contractor convicted for wiping 96 US government databases

submitted by /u/Plastic_Ninja_9014 [link] [comments]

3 часа назад @ reddit.com
FCC reverses course, allows software updates for foreign-made drones and routers until 2029 — agency says blocking security patches could create cybersecurity risks
FCC reverses course, allows software updates for foreign-made drones and routers until 2029 — agency says blocking security patches could create cybersecurity risks FCC reverses course, allows software updates for foreign-made drones and routers until 2029 — agency says blocking security patches could create cybersecurity risks

submitted by /u/lurker_bee [link] [comments]

5 часов назад @ reddit.com
Fintech startup Parker files for bankruptcy
Fintech startup Parker files for bankruptcy Fintech startup Parker files for bankruptcy

submitted by /u/lurker_bee [link] [comments]

5 часов назад @ reddit.com
Dua Lipa Files $15 Million Suit Against Samsung for Using Her Face to Sell TVs
Dua Lipa Files $15 Million Suit Against Samsung for Using Her Face to Sell TVs Dua Lipa Files $15 Million Suit Against Samsung for Using Her Face to Sell TVs

submitted by /u/yourfavchoom [link] [comments]

5 часов назад @ reddit.com
New Pill Lowers Stubborn Blood Pressure and Protects the Kidneys
New Pill Lowers Stubborn Blood Pressure and Protects the Kidneys New Pill Lowers Stubborn Blood Pressure and Protects the Kidneys

submitted by /u/_Dark_Wing [link] [comments]

6 часов назад @ reddit.com
Nvidia has already committed $40B to equity AI deals this year
Nvidia has already committed $40B to equity AI deals this year Nvidia has already committed $40B to equity AI deals this year

submitted by /u/Logical_Welder3467 [link] [comments]

6 часов назад @ reddit.com
Internet Archive Launches New Foundation in Switzerland
Internet Archive Launches New Foundation in Switzerland

submitted by /u/Sad-Watercress-2240 [link] [comments]

7 часов назад @ reddit.com
A data center drained 30M gallons of water unnoticed — until residents complained about low water pressure
A data center drained 30M gallons of water unnoticed — until residents complained about low water pressure

submitted by /u/idkbruh653 [link] [comments]

7 часов назад @ reddit.com
ABC refuses to capitulate to U.S President admin, fights FCC probe into 'The View' | FCC chair Brendan Car hasn’t been able to bully ABC and owner Disney into submission.
ABC refuses to capitulate to U.S President admin, fights FCC probe into 'The View' | FCC chair Brendan Car hasn’t been able to bully ABC and owner Disney into submission. ABC refuses to capitulate to U.S President admin, fights FCC probe into 'The View' | FCC chair Brendan Car hasn’t been able to bully ABC and owner Disney into submission.

submitted by /u/ControlCAD [link] [comments]

7 часов назад @ reddit.com
College student hacks Taiwan high-speed rail line with software defined radios, stopping four trains
College student hacks Taiwan high-speed rail line with software defined radios, stopping four trains College student hacks Taiwan high-speed rail line with software defined radios, stopping four trains

submitted by /u/rkhunter_ [link] [comments]

8 часов назад @ reddit.com
Kevin O’Leary’s proposed 9GW "hyperscale" AI data center in Utah will consume double the state's entire electricity usage and generate the waste heat of 23 atom bombs a day.
Kevin O’Leary’s proposed 9GW "hyperscale" AI data center in Utah will consume double the state's entire electricity usage and generate the waste heat of 23 atom bombs a day. Kevin O’Leary’s proposed 9GW "hyperscale" AI data center in Utah will consume double the state's entire electricity usage and generate the waste heat of 23 atom bombs a day.

submitted by /u/AnnualEmbarrassed176 [link] [comments]

10 часов назад @ reddit.com
Multiple universities forced to reschedule final exams after Canvas cyber incident
Multiple universities forced to reschedule final exams after Canvas cyber incident Multiple universities forced to reschedule final exams after Canvas cyber incident

submitted by /u/sudo_overcoffee [link] [comments]

11 часов назад @ reddit.com
Lithium deposit valued at over $1.5 trillion discovered in the U.S.
Lithium deposit valued at over $1.5 trillion discovered in the U.S. Lithium deposit valued at over $1.5 trillion discovered in the U.S.

submitted by /u/_Dark_Wing [link] [comments]

11 часов назад @ reddit.com
Fears grow that age verification coming to VPNs as a British research firm labels them a 'loophole' — one app developer saw downloads surge by 1,800% in just the first month after the UK's Online Safety Act took effect
Fears grow that age verification coming to VPNs as a British research firm labels them a 'loophole' — one app developer saw downloads surge by 1,800% in just the first month after the UK's Online Safety Act took effect Fears grow that age verification coming to VPNs as a British research firm labels them a 'loophole' — one app developer saw downloads surge by 1,800% in just the first month after the UK's Online Safety Act took effect

submitted by /u/Plastic_Ninja_9014 [link] [comments]

11 часов назад @ reddit.com
Pinboard: Popular Pinboard: Popular
последний пост 1 day назад
CARA 2.0 — Aaed Musa
CARA 2.0 — Aaed Musa CARA 2.0 — Aaed Musa

Single Leg Design - The Easy PartNaturally, after building a single joint, it only makes sense to design a single leg.

I also love the fact that most quads don’t use this design, making CARA super unique.

The total weight of the single leg was 1.47 kg (3.24 lbs).

One thing I wanted to investigate with CARA 2.0’s leg design was the upper-to-lower link ratio of the 5-bar linkage.

A question I often get asked is “how do you learn to derive IK equations?” While it may look difficult, it’s not.

1 day назад @ aaedmusa.com
‘HELLO BOSS’: Inside the Chinese Realtime Deepfake Software Powering Scams Around the World
‘HELLO BOSS’: Inside the Chinese Realtime Deepfake Software Powering Scams Around the World ‘HELLO BOSS’: Inside the Chinese Realtime Deepfake Software Powering Scams Around the World

“Oh my god.

Oh my god,” I yelled as I looked at my own face on someone else’s body.

It was all there: my five o’clock shadow, my goofy grin, even the bags under my eyes.

I was on a Microsoft Teams call interacting with this deepfake version of myself in realtime.

My deepfake pinched his cheek, covered his nose, and stroked his chin, all without the illusion breaking.

1 day назад @ 404media.co
Ask HN: We just had an actual UUID v4 collision... | Hacker News
Ask HN: We just had an actual UUID v4 collision... | Hacker News 1 day назад @ news.ycombinator.com
Pi-Zero RAM Website
Pi-Zero RAM Website Pi-Zero RAM Website

Serving a Website on a Raspberry Pi Zero Running Entirely in RAM2026-05-08My micro site, zero.btxx.org, is being served to the public internet from a Raspberry Pi Zero v1.3 running Alpine Linux.

My Raspberry Pi Zero silently running in my cold-storage room (with two extra Pis for moral support).

Serving zero.btxx.orgThis is even more impressive considering the Pi Zero only has 512MB of total memory, ~40MB of which is tied up running Alpine Linux.

If you’re interested in running your own website off a Pi Zero, follow along!

We will be using socat to direct internet traffic to our local Raspberry Pi Zero.

1 day назад @ btxx.org
Wiki Builder: A Claude Code Plugin for Building LLM Knowledge Bases | DAIR.AI Academy Blog | DAIR.AI Academy
Wiki Builder: A Claude Code Plugin for Building LLM Knowledge Bases | DAIR.AI Academy Blog | DAIR.AI Academy Wiki Builder: A Claude Code Plugin for Building LLM Knowledge Bases | DAIR.AI Academy Blog | DAIR.AI Academy

That friction is the reason I built Wiki Builder, a small open-source Claude Code plugin that takes the LLM-knowledge-base workflow and turns it into a one-command setup.

What Wiki Builder DoesWiki Builder is a skill you install once into Claude Code.

A wiki on agent memory looks different from a wiki on a single arXiv paper, and both look different from a knowledge base profiling a company.

Last week I used Wiki Builder to bootstrap the Agentic Engineering Wiki, a community-driven reference for developers building AI agents.

bash " ${CLAUDE_PLUGIN_ROOT} /skills/wiki-builder/scripts/init_wiki.sh" \ agent-memory \ --title "Agent Memory" \ --flavor researchWhy I Like Building This WayMost too…

1 day назад @ academy.dair.ai
agents need control flow, not more prompts | brian’s thoughts
agents need control flow, not more prompts | brian’s thoughts agents need control flow, not more prompts | brian’s thoughts

agents need control flow, not more prompts07 May, 2026Thesis: reliable agents tackling complex tasks need deterministic control flow encoded in software, not increasingly elaborate prompt chainsIf you’ve ever resorted to MANDATORY or DO NOT SKIP, you’ve hit the ceiling of prompting.

Imagine a programming language where statements are suggestions and functions return “Success” while hallucinating.

While useful for narrow tasks, prompts are non-deterministic, weakly specified, and difficult to verify.

We need deterministic scaffolds: explicit state transitions and validation checkpoints that treat the LLM as a component, not the system.

In a system prone to silent failure, an agent without ag…

1 day назад @ bsuh.bearblog.dev
Hovercraft—a virtual presentation camera for Mac
Hovercraft—a virtual presentation camera for Mac Hovercraft—a virtual presentation camera for Mac

Sandwich Vision · macOSRecorded in Zoom.

The slide window is the camera output, not a screen share.

Pick Hovercraft as your camerain Zoom or wherever.

Reach up, pinch the air,pull the window where you want it.

The slide sits next to it.

1 day назад @ sandwich.vision
Appearing Productive in the Workplace | Hacker News
Appearing Productive in the Workplace | Hacker News Appearing Productive in the Workplace | Hacker News 1 day назад @ news.ycombinator.com
Scroll-Driven Animations • Josh W. Comeau
Scroll-Driven Animations • Josh W. Comeau Scroll-Driven Animations • Josh W. Comeau

Instead of focusing on an individual element, scroll progress timelines are concerned with the scroll’s overall progress.

< p > Read more on < a href = "https://www.lipsum.com/>Lipsum.com Resize editor.

The element we want to animate is not a descendant of the element we want to track:Copy to clipboard < main > < div class = " left col " > < div class = " square " > < div class = " right col " > < p class = " content " > ← A square appears!

Fortunately, the lovely folks at the CSSWG foresaw this issue, and they gave us an escape hatch: the timeline-scope property.

I’m adding the timeline-scope declaration to because it’s the nearest shared ancestor.

1 day назад @ joshwcomeau.com
Using safe-area-inset to build mobile-safe layouts | Polypane
Using safe-area-inset to build mobile-safe layouts | Polypane Using safe-area-inset to build mobile-safe layouts | Polypane

If you don't want your floating chat button to end up sitting behind the home indicator, where it's unreachable, you need to account for the safe area inset.

Environment variables for safe area insetsWith the safe-area-inset environment variables, you can make your layout adapt to the current device's safe area and avoid those bugs.

Polypane's device emulation supports safe area insetsPolypane is the first and only desktop browser to emulate safe area insets.

Every device in Polypane has correct safe area inset values for both portrait and landscape orientations.

Overlay Show safe inset areas inset vs max-inset inset max-insetWhen to use which really depends on your situation.

1 day назад @ polypane.app
Introduction | Meshtastic
Introduction | Meshtastic Introduction | Meshtastic

On this pageIntroductionMeshtastic® is a project that enables you to use inexpensive LoRa radios as a long range off-grid communication platform in areas without existing or reliable communications infrastructure.

Meshtastic utilizes LoRa, a long-range radio protocol, which is widely accessible in most regions without the need for additional licenses or certifications, unlike ham radio operations.

These radios are designed to rebroadcast messages they receive, forming a mesh network.

This setup ensures that every group member, including those at the furthest distance, can receive messages.

Additionally, Meshtastic radios can be paired with a single phone, allowing friends and family to send…

1 day назад @ meshtastic.org
The "AI Job Apocalypse" Is a Complete Fantasy
The "AI Job Apocalypse" Is a Complete Fantasy The "AI Job Apocalypse" Is a Complete Fantasy

If there is a fixed amount of useful work that needs doing, then if AI does more, humans must do less.

Here’s the thing, though: precedent (and intuition) shows that when the cost of a powerful input falls, the economy does not politely stand still.

With the caveat that it’s early (for better or for worse), the weight of the data does not support the doomer claim.

“While anxiety over the effects of AI on today’s labor market is widespread, our data suggests it remains largely speculative.

But, the AI job apocalypse story only works if you assume human wants and ideas suddenly freeze at the exact moment intelligence gets cheap.

1 day назад @ a16z.news
The map that keeps Burning Man honest
The map that keeps Burning Man honest The map that keeps Burning Man honest

This is Black Rock City, home to the infamous Burning Man event.

At the end, they're left with a remarkable accounting of what 70,000 people left behind: The MOOP Map.

The Burning Man 2025 MOOP MapIndicates effort and time spent on MOOP cleanup across Black Rock City.

"The MOOP Map is about shared responsibility in our use of the land," said DA.

The "MOOP Map shame thread" on Reddit calls out individual camps that perform poorly.

1 day назад @ not-ship.com
Natural Language Autoencoders
Natural Language Autoencoders Natural Language Autoencoders

Our method, Natural Language Autoencoders (NLAs), converts an activation into natural-language text we can read directly.

We make three copies of this language model:The target model is a frozen copy of the original language model that we extract activations from.

The NLA consists of the AV and AR, which, together, form a round trip: original activation → text explanation → reconstructed activation.

And more importantly, as we show in our paper, the text explanations become more informative as well.

More broadly, we are excited about NLAs as an example of a general class of techniques for producing human-readable text explanations of language model activations.

1 day назад @ anthropic.com
Behind the Scenes Hardening Firefox with Claude Mythos Preview - Mozilla Hacks - the Web developer blog
Behind the Scenes Hardening Firefox with Claude Mythos Preview - Mozilla Hacks - the Web developer blog Behind the Scenes Hardening Firefox with Claude Mythos Preview - Mozilla Hacks - the Web developer blog

Two weeks ago we announced that we had identified and fixed an unprecedented number of latent security bugs in Firefox with the help of Claude Mythos Preview and other AI models.

Suddenly, the bugs are very goodJust a few months ago, AI-generated security bug reports to open source projects were mostly known for being unwanted slop.

The introduction of agentic harnesses that can reliably detect security issues has completely changed this.

In Firefox 150, there were three internal rollups: CVE-2026-6784 (154 bugs), CVE-2026-6785 (55 bugs), and CVE-2026-6786 (107 bugs).

We fixed a total of 423 security bugs in releases in April.

1 day назад @ hacks.mozilla.org
Changelog Changelog
последний пост 1 week, 3 days назад
Bitwarden CLI compromised
Bitwarden CLI compromised Bitwarden CLI compromised

Changelog News!

The software newsletter that's also a podcastThe software world moves fast... keep up the easy way!

Let us track changes & Jerod will let you know what's up each Monday.

1 week, 3 days назад @ changelog.com
Exploring with agents
Exploring with agents Exploring with agents

WorkOS – Auth for CLI with AuthKit from WorkOS — Bring secure browser-based login to your terminal apps using the OAuth Device Flow, with the same polished AuthKit experience plus SSO, MFA, and passkeys.

Get an exclusive offer: up to 22% off NordLayer yearly plans plus 10% on top with the coupon code changelog-10-NORDLAYER .

When agents help developers write code in minutes, validation becomes your bottleneck.

RWX gives agents programmatic control, sub-second cached builds, and semantic outputs they can act on.

Fly.io – The home of Changelog.com — Deploy your apps close to your users — global Anycast load-balancing, zero-configuration private networking, hardware isolation, and instant Wire…

2 weeks, 1 day назад @ changelog.com
Astral has been acquired by OpenAI
Astral has been acquired by OpenAI Astral has been acquired by OpenAI

Changelog News!

The software newsletter that's also a podcastThe software world moves fast... keep up the easy way!

Let us track changes & Jerod will let you know what's up each Monday.

1 month, 1 week назад @ changelog.com
From Tailnet to platform
From Tailnet to platform From Tailnet to platform

Server ErrorOops!

Looks like the server had a hiccup.

Try reloading the page to see if the issue has cleared up.

In the meantime, enjoy some clips!

1 month, 4 weeks назад @ changelog.com
Big change brings big change
Big change brings big change Big change brings big change

Changelog News!

The software newsletter that's also a podcastThe software world moves fast... keep up the easy way!

Let us track changes & Jerod will let you know what's up each Monday.

2 months назад @ changelog.com
Finale & Friends
Finale & Friends Finale & Friends

Augment Code – Adam loves “Auggie” – Augment Code’s CLI that brings Augment’s context engine and powerful AI reasoning anywhere your code goes.

From building alongside you in the terminal to any part of your development workflow.

Squarespace – Turn your expertise into a business with the all-in-one platform for websites, services, and getting paid.

Use code CHANGELOG to save 10% on your first website purchase.

Notion – Custom Agents that automate the busywork so your team can focus on real work.

2 months, 1 week назад @ changelog.com
Opus 4.5 changed everything
Opus 4.5 changed everything Opus 4.5 changed everything

Augment Code – Adam loves “Auggie” – Augment Code’s CLI that brings Augment’s context engine and powerful AI reasoning anywhere your code goes.

From building alongside you in the terminal to any part of your development workflow.

Squarespace – Turn your expertise into a business with the all-in-one platform for websites, services, and getting paid.

Use code CHANGELOG to save 10% on your first website purchase.

Notion – Custom Agents that automate the busywork so your team can focus on real work.

2 months, 1 week назад @ changelog.com
The mythical agent-month
The mythical agent-month The mythical agent-month

Changelog News!

The software newsletter that's also a podcastThe software world moves fast... keep up the easy way!

Let us track changes & Jerod will let you know what's up each Monday.

2 months, 2 weeks назад @ changelog.com
Selling SDKs in the era of many Claudes
Selling SDKs in the era of many Claudes Selling SDKs in the era of many Claudes

Steve Ruiz joins us for a deep-dive on tldraw (a very good free whiteboard) and the business he’s built selling SDKs that help others build very good whiteboards (and more) with tldraw’s high-performance web canvas.

Along the way, we discuss the excitement/fear we share about keeping our agents busy, how SDK and infra companies are affected differently by agentic software than SaaS companies, how Steve is approaching the coming era of internal tooling, what will happen when we equip LLMs with an infinite canvas, and more.

2 months, 2 weeks назад @ changelog.com
All the Claw things
All the Claw things All the Claw things

Changelog News!

The software newsletter that's also a podcastThe software world moves fast... keep up the easy way!

Let us track changes & Jerod will let you know what's up each Monday.

2 months, 3 weeks назад @ changelog.com
Han shot first
Han shot first Han shot first

Namespace – Speed up your development and testing workflows using your existing tools.

Tiger Data – Postgres for Developers, devices, and agents The data platform trusted by hundreds of thousands from IoT to Web3 to AI and more.

Fly.io – The home of Changelog.com — Deploy your apps close to your users — global Anycast load-balancing, zero-configuration private networking, hardware isolation, and instant WireGuard VPN connections.

Push-button deployments that scale to thousands of instances.

Check out the speedrun to get started in minutes.

2 months, 3 weeks назад @ changelog.com
Building the machine that builds the machine
Building the machine that builds the machine Building the machine that builds the machine

Namespace – Speed up your development and testing workflows using your existing tools.

(Much) faster GitHub actions, Docker builds, and more.

Tiger Data – Postgres for Developers, devices, and agents The data platform trusted by hundreds of thousands from IoT to Web3 to AI and more.

Fly.io – The home of Changelog.com — Deploy your apps close to your users — global Anycast load-balancing, zero-configuration private networking, hardware isolation, and instant WireGuard VPN connections.

Check out the speedrun to get started in minutes.

2 months, 3 weeks назад @ changelog.com
Vouch for an open source web of trust
Vouch for an open source web of trust Vouch for an open source web of trust

Changelog News!

The software newsletter that's also a podcastThe software world moves fast... keep up the easy way!

Let us track changes & Jerod will let you know what's up each Monday.

2 months, 4 weeks назад @ changelog.com
It's a renaissance woman's world
It's a renaissance woman's world It's a renaissance woman's world

Tiger Data – Postgres for Developers, devices, and agents The data platform trusted by hundreds of thousands from IoT to Web3 to AI and more.

Namespace – Speed up your development and testing workflows using your existing tools.

(Much) faster GitHub actions, Docker builds, and more.

At an unbeatable price.

3 months назад @ changelog.com
Setting Docker Hardened Images free
Setting Docker Hardened Images free Setting Docker Hardened Images free

Tiger Data – Postgres for Developers, devices, and agents The data platform trusted by hundreds of thousands from IoT to Web3 to AI and more.

Namespace – Speed up your development and testing workflows using your existing tools.

(Much) faster GitHub actions, Docker builds, and more.

Get an exclusive offer: up to 22% off NordLayer yearly plans plus 10% on top with the coupon code changelog-10-NORDLAYER .

Try it risk-free with a 14-day money-back guarantee at nordlayer.com/thechangelogFly.io – The home of Changelog.com — Deploy your apps close to your users — global Anycast load-balancing, zero-configuration private networking, hardware isolation, and instant WireGuard VPN connections.

3 months назад @ changelog.com
ZDNet ZDNet
последний пост 19 часов назад
The best 85-inch TVs in 2026: Expert recommended
The best 85-inch TVs in 2026: Expert recommended

Upgrading your home theater with a big-screen TV can help create a more cinematic experience at home, and we tested the best from Samsung, Sony, and more.

19 часов назад @ zdnet.com
Samsung watches can predict if you're about to faint - but there are big caveats
Samsung watches can predict if you're about to faint - but there are big caveats Samsung watches can predict if you're about to faint - but there are big caveats

ZDNET's key takeawaysSamsung's Galaxy Watch may predict fainting episodes.

The company has announced its Galaxy Watch may be able to predict a fainting episode or blackout before it happens.

Samsung revealed this week that a joint clinical study with Chung-Ang University Gwangmyeong Hospital in Korea validated the Galaxy Watch 6's ability to predict vasovagal syncope, or VVS.

This is where Samsung is positioning the Galaxy Watch and an early warning system as potentially making a difference.

Also: Samsung's Galaxy Watch 8 got me off my couch and running againSealove noted the study population was also highly specific.

20 часов назад @ zdnet.com
Best VPN services 2026: Expert tested and recommended
Best VPN services 2026: Expert tested and recommended Best VPN services 2026: Expert tested and recommended

This makes it my top pick overall in 2026 as the best VPN on the market today.

Review: Proton VPN Who it's for: Proton offers a free VPN service that is supported by paid users.

Mullvad VPN Best VPN alternative for user privacy ZDNET Mullvad is open-source, promoting transparency and security, and it is known for stringently upholding user privacy, with a rapidly growing customer base.

Windscribe Best free VPN alternative ZDNET Windscribe is an alternative free VPN with up to 10GB of free data per month.

Read More Show Expert Take Show lessWe hope you've found our guide to the best VPNs of 2026 useful.

21 час назад @ zdnet.com
I lost my Roku remotes constantly until I found this simple fix
I lost my Roku remotes constantly until I found this simple fix

From simply asking to using the app to secret buttons, there are several ways to find a lost remote.

21 час назад @ zdnet.com
Don't connect your smart plug to these 5 household devices - an expert warns
Don't connect your smart plug to these 5 household devices - an expert warns

While smart plugs are very convenient, here are some things you should never plug into them.

1 day, 11 hours назад @ zdnet.com
Worried about the nationwide Canvas data breach? Take these 6 steps now
Worried about the nationwide Canvas data breach? Take these 6 steps now Worried about the nationwide Canvas data breach? Take these 6 steps now

Instructure says data was stolen; what Canvas users should do next.

If a victim fails to comply, the information stolen from them may be published.

ShinyHunters has threatened to leak data on approximately 275 million students from 8,800 academic institutions if its demands are not met.

If the ransomware group releases stolen data and manages to grab credentials, those credentials may be made public.

Have I Been Pwned: It's too early for this data breach and any subsequent data leak to be recorded on Have I Been Pwned, but we recommend visiting this website frequently to check whether you have been involved in any online data breaches.

1 day, 13 hours назад @ zdnet.com
Windows rivals to MacBook Neo are arriving - but can you handle their shortcomings?
Windows rivals to MacBook Neo are arriving - but can you handle their shortcomings? Windows rivals to MacBook Neo are arriving - but can you handle their shortcomings?

ZDNET's key takeawaysThe MacBook Neo raised the bar for the budget PC market.

Apple's $599 MacBook Neo was a shock to the Windows PC market -- and that's a good thing.

Also: We compared the MacBook Neo to its closest Windows and Chromebook rivals: by the specsYou can bet that Microsoft is working on a follow-up.

We've already identified a handful of Windows PCs (and Chromebooks) that could rival the MacBook Neo, but how do they actually hold up?

Also: The case for buying a MacBook Neo right now - especially for studentsOne thing is certain: The MacBook Neo has pushed PC and Chromebook manufacturers to set a new standard for budget devices, and this is great news for consumers.

1 day, 13 hours назад @ zdnet.com
Another airline tightens its portable battery rules - what to know before your next flight
Another airline tightens its portable battery rules - what to know before your next flight Another airline tightens its portable battery rules - what to know before your next flight

Key takeawaysAmerican Airlines passengers are limited to two portable chargers.

Portable chargers must be visible or within reach for the flight.

In addition to following the new guidelines to keep portable chargers visible or within reach, these devices may not be recharged aboard the aircraft.

What to keep in mindIf you're traveling soon, it's wise to verify your airline's portable power policies before your departure.

Portable power banks we recommendNeed a recommendation for a portable power bank?

1 day, 14 hours назад @ zdnet.com
Dell vs. Lenovo: I've tested dozens of laptops from both brands, and here's my pick
Dell vs. Lenovo: I've tested dozens of laptops from both brands, and here's my pick Dell vs. Lenovo: I've tested dozens of laptops from both brands, and here's my pick

Also: Lenovo ThinkPad vs. Apple MacBook: Which is the better laptop for you?

Dell laptops tend to cater more toward creative professionals and consumers who value polished design.

You want a laptop with the best displaysI have found that Dell laptops are generally better for creative workflows.

You value aestheticsKyle Kucharski/ZDNETAdmittedly, I am biased here, but I think Dell laptops have more striking designs overall.

However, when it comes to first impressive and visual appeal, Dell laptops tend to stand out more.

1 day, 17 hours назад @ zdnet.com
Roku apps loading slow? 9 quick fixes I try before blaming my Wi-Fi
Roku apps loading slow? 9 quick fixes I try before blaming my Wi-Fi

If your Roku is lagging, with apps struggling to open, it might not be your Wi-Fi. Here's what I do to fix performance.

2 days, 5 hours назад @ zdnet.com
Google Maps vs. Apple Maps: I compared two of the best navigation apps - here's my pick
Google Maps vs. Apple Maps: I compared two of the best navigation apps - here's my pick Google Maps vs. Apple Maps: I compared two of the best navigation apps - here's my pick

Eventually, it became obvious that Apple Maps was my backup maps app, the one I'd accidentally open instead of Google Maps.

Is Google Maps or Apple Maps better?

Navigation with intelligent routing Winner: Google Maps, for defaulting to the best, fastest route Apple Maps is genuinely good at turn-by-turn navigation now.

Also: I found a free Google Maps alternative that doesn't track me But Apple Maps now supports offline maps, too.

Google Maps is more like a Swiss Army knife packed with 47 different tools, while Apple Maps keeps things simple.

2 days, 5 hours назад @ zdnet.com
I started clearing my Roku cache, and it fixed my biggest TV complaint
I started clearing my Roku cache, and it fixed my biggest TV complaint

Clearing my Roku cache takes less than a minute. When I remember to do it, my system runs like new.

2 days, 11 hours назад @ zdnet.com
ReMarkable Paper Pure vs. Amazon Kindle Scribe: I've written on both E Ink tablets - this one wins
ReMarkable Paper Pure vs. Amazon Kindle Scribe: I've written on both E Ink tablets - this one wins ReMarkable Paper Pure vs. Amazon Kindle Scribe: I've written on both E Ink tablets - this one wins

ReMarkable just announced its new digital paper tablet for note-taking and sketching, called the Paper Pure.

It comes to market at the same $399 starting price as one of its biggest competitors, Amazon's Kindle Scribe.

It's also the same starting price of $399 as the Paper Pure, and the closest in features.

Conversely, the Kindle Scribe gets bright -- up to 110 nits, one of the brightest digital paper tablets I've tested.

The ReMarkable Paper Pure, on the other hand, is a minimalist device with a distraction-free aesthetic and a focus on productivity.

2 days, 12 hours назад @ zdnet.com
Lost your Roku remote? Here are four ways you can still control your TV
Lost your Roku remote? Here are four ways you can still control your TV

You can still watch your favorite shows even if your Roku remote has disappeared. Here's how.

2 days, 12 hours назад @ zdnet.com
Hundreds of readers bought this E Ink tablet - and I highly recommend it
Hundreds of readers bought this E Ink tablet - and I highly recommend it Hundreds of readers bought this E Ink tablet - and I highly recommend it

We gather data from the best available sources, including vendor and retailer listings as well as other relevant and independent reviews sites.

And we pore over customer reviews to find out what matters to real people who already own and use the products and services we’re assessing.

When you click through from our site to a retailer and buy a product or service, we may earn affiliate commissions.

Neither ZDNET nor the author are compensated for these independent reviews.

Our editors thoroughly review and fact-check every article to ensure that our content meets the highest standards.

2 days, 13 hours назад @ zdnet.com
TechCrunch TechCrunch
последний пост 4 часа назад
Voice AI in India is hard. Wispr Flow is betting on it anyway.
Voice AI in India is hard. Wispr Flow is betting on it anyway.

Wispr Flow says growth accelerated in India after its Hinglish rollout, even as voice AI products continue to face challenges.

4 часа назад @ techcrunch.com
So you’ve heard these AI terms and nodded along; let’s fix that
So you’ve heard these AI terms and nodded along; let’s fix that

The rise of AI has brought an avalanche of new terms and slang. Here is a glossary with definitions of some of the most important words and phrases you might encounter.

8 часов назад @ techcrunch.com
Fintech startup Parker files for bankruptcy
Fintech startup Parker files for bankruptcy

Parker, a well-funded startup offering corporate credit cards and banking services, has filed for bankruptcy and is widely reported to have shut down.

10 часов назад @ techcrunch.com
GM agrees to pay $12.75M in California driver privacy settlement
GM agrees to pay $12.75M in California driver privacy settlement

General Motors has reached a privacy-related settlement with a group of law enforcement agencies led by California Attorney General Rob Bonta.

11 часов назад @ techcrunch.com
The Instax Wide 400 builds on instant photography’s simplicity and stretches it, literally
The Instax Wide 400 builds on instant photography’s simplicity and stretches it, literally

In an AI and digital world, analog instant film and retro-style cameras continue to remain popular, fueled by a mix of both nostalgia and novelty.

14 часов назад @ techcrunch.com
Nvidia has already committed $40B to equity AI deals this year
Nvidia has already committed $40B to equity AI deals this year

Nvidia continues to be a big investor in the AI ecosystem.

15 часов назад @ techcrunch.com
Laid-off Oracle workers tried to negotiate better severance. Oracle said no.
Laid-off Oracle workers tried to negotiate better severance. Oracle said no.

Some found out they didn't qualify for WARN Act protections like two-months notice because the company had classified them as remote workers.

1 day, 7 hours назад @ techcrunch.com
San Francisco’s housing market has lost its mind
San Francisco’s housing market has lost its mind

The invisible force behind all of this is no mystery to anyone paying attention to the city's tech economy. San Francisco is home to some of the most valuable private companies in the world, and their employees have been quietly accumulating — and, increasingly, cashing out — fortunes.

1 day, 8 hours назад @ techcrunch.com
Prime Video follows Netflix and Disney by adding a TikTok-like ‘Clips’ feed in its app
Prime Video follows Netflix and Disney by adding a TikTok-like ‘Clips’ feed in its app

The Clips feed aims to enable discovery by offering users a scrollable feed with short snippets of shows and movies.

1 day, 9 hours назад @ techcrunch.com
Intel’s comeback story is even wilder than it seems
Intel’s comeback story is even wilder than it seems

Intel's stock has risen a stunning 490% over the past year, a bet by Wall Street that may be running well ahead of the company's actual turnaround.

1 day, 10 hours назад @ techcrunch.com
Cloudflare says AI made 1,100 jobs obsolete, even as revenue hit a record high
Cloudflare says AI made 1,100 jobs obsolete, even as revenue hit a record high

CloudFlare announced its first large-scale layoff. CEO Matthew Prince says because of AI efficiency gains, the company doesn't need as many support roles.

1 day, 12 hours назад @ techcrunch.com
Porsche shutters e-bike, battery, software subsidiaries as part of company overhaul
Porsche shutters e-bike, battery, software subsidiaries as part of company overhaul

More than 500 people will be affected by the closures.

1 day, 12 hours назад @ techcrunch.com
Mother Ventures is looking at moms as the ‘economic engine’
Mother Ventures is looking at moms as the ‘economic engine’

The VC firm, which focuses on mothers as consumers, raised a $10 million debut fund.

1 day, 12 hours назад @ techcrunch.com
Uber partner Avride is under investigation for self-driving crashes
Uber partner Avride is under investigation for self-driving crashes

The National Highway Traffic Safety Administration has opened an investigation into Avride after identifying more than a dozen crashes and one minor injury.

1 day, 13 hours назад @ techcrunch.com
Poland says hackers breached water treatment plants, and the U.S. is facing the same threat
Poland says hackers breached water treatment plants, and the U.S. is facing the same threat

A report by Poland’s top intelligence agency accused Russia of sabotage and hacking activities against the country’s military and civilian infrastructure.

1 day, 13 hours назад @ techcrunch.com
Slashdot Slashdot
последний пост 3 часа назад
'Changing of the Guard'? AMD, Intel, and Micron Soar While Nvidia Lags
'Changing of the Guard'?  AMD, Intel, and Micron Soar While Nvidia Lags 'Changing of the Guard'? AMD, Intel, and Micron Soar While Nvidia Lags

While Nvidia has dominated the "infrastructure boom" since 2022's launch of ChatGPT and "the generative AI craze," CNBC writes that "This week offered the starkest illustration yet of what MIzuho analyst Jordan Klein said could be a 'changing of the guard in AI.'" Chipmakers Advanced Micro Devices and Intel notched gains of about 25%, while memory maker Micron jumped more than 37% and fiber-optic cable maker Corning climbed about 18%. All four of those companies have more than doubled in value this year, with Intel leading the way, up well over 200%. Nvidia, meanwhile, is only slightly ahead of the Nasdaq in 2026, gaining 15% for the year, aided by an 8% rally this week. In spreading the we…

3 часа назад @ hardware.slashdot.org
Open Source Registries Join Linux Foundation Working Group to Address Machine-Generated Traffic
Open Source Registries Join Linux Foundation Working Group to Address Machine-Generated Traffic Open Source Registries Join Linux Foundation Working Group to Address Machine-Generated Traffic

Under the nonprofit Linux Foundation, "a new Sustaining Package Registries Working Group will seek to identify concrete funding, governance, and security practices," reports ZDNet, "to keep code flowing as download counts grow.... Because software builds, continuous integration pipelines, and AI systems hammer registries at machine speed rather than human speed, the sites can't keep up. "That growth has brought a surge in bot traffic, automated publishing, security reports, and outright abuse, exposing what the working group bluntly calls a 'sustainability gap'." Sonatype CTO Brian Fox, who oversees the Maven Central Java registry, estimates open-source registries saw 10 trillion downloads …

5 часов назад @ news.slashdot.org
Will Maryland's Utility Bills Increase $1.6B to Support Other States' Datacenters?
Will Maryland's Utility Bills Increase $1.6B to Support Other States' Datacenters? Will Maryland's Utility Bills Increase $1.6B to Support Other States' Datacenters?

To upgrade its grid for data centers, PJM Interconnection (which serves 13 states) plans to spend $22 billion — and charge nearly $2 billion of that to customers in Maryland, argues Maryland's Office of People's Counsel. The money "will be recovered in rates for decades" and "drive up Maryland customer bills by $1.6 billion over the next ten years alone," they said Friday, announcing an official complaint filed with America's Federal Energy Regulatory Commission. Extra demand is expected from Ohio, Pennsylvania, and Illinois "where demands driven by data centers are projected to grow substantially by 2036," they explain. But that means that Maryland customers "are subsidizing data center-dr…

8 часов назад @ hardware.slashdot.org
Rush Rescue Mission for NASA's $500M Space Telescope Passes Key Milestone
Rush Rescue Mission for NASA's $500M Space Telescope Passes Key Milestone Rush Rescue Mission for NASA's $500M Space Telescope Passes Key Milestone

NASA's $500 million Neil Gehrels Swift space observatory was launched in 2004. But it's now "at risk of falling back through the atmosphere and burning up without intervention," reports Spaceflight Now. Fortunately, a mission to prevent that "just passed a notable prelaunch testing milestone."

On Friday, NASA announced that the Link spacecraft, manufactured by Katalyst Space Technologies to intervene before Swift's fate is sealed, completed its slate of environmental testing at the agency's Goddard Space Flight Center in Greenbelt, Maryland... "Swift will likely re-enter the atmosphere sometime later this year if we don't attempt to lift it to a higher altitude, [said John Van Eepoel, Swift…

9 часов назад @ science.slashdot.org
The Trump Phone Either Is Or Isn't Closer To Delivery
The Trump Phone Either Is Or Isn't Closer To Delivery The Trump Phone Either Is Or Isn't Closer To Delivery

September 2025? January 2026? Delivery dates keep slipping for the Trump Organization's "Trump Phone" — a gold-coloured Android smartphone priced at $499 (£370). But in March the Verge spotted signs the phone was moving forward: FCC listings for a smartphone with the trade name "T1" show that it was tested late last year, and granted certification by the FCC in January... [T]he phone was submitted for testing by another company entirely: Smart Gadgets Global, LLC... Smart Gadgets Global's website promises "Top Quality Electronics created for 'YOUR' customer!" But in April the Trump phone revised its "Terms and Conditions" for preorders. The new language?

A preorder deposit provides only a c…

10 часов назад @ mobile.slashdot.org
Plant Seeds Do Something Incredible When the Sound of Rain Strikes
Plant Seeds Do Something Incredible When the Sound of Rain Strikes Plant Seeds Do Something Incredible When the Sound of Rain Strikes

"Plant seeds can sense the vibrations generated by falling raindrops," reports ScienceAlert, "and respond by waking from their state of dormancy to welcome the water, new research shows.... to germinate in 'anticipation' of the coming deluge."

The finding, discovered by MIT mechanical engineers Nicholas Makris and Cadine Navarro, offers the first direct evidence that seeds and seedlings can sense and respond to sounds in nature... "The energy of the rain sound is enough to accelerate a seed's growth," [explains Markis]. Plants don't have the same aural equipment we do to actually hear sounds, of course. But the study suggests that seeds respond to the same vibrations that can produce a soun…

11 часов назад @ science.slashdot.org
Cisco Releases Open-Source 'DNA Test for AI Models'
Cisco Releases Open-Source 'DNA Test for AI Models' Cisco Releases Open-Source 'DNA Test for AI Models'

Cisco has released an open-source tool "to trace the origins of AI models," reports SC World, "and compare model similarities for great visibility into the AI supply chain." [Cisco's Model Provenance Kit] is a Python toolkit and command-line interface (CLI) that looks at signals such as metadata and weights to create a "fingerprint" for AI models that can then be compared to other model fingerprints to determine potential shared origins. "Think of Model Provenance Kit as a DNA test for AI models," Cisco researchers wrote. "[...] Much like a DNA test reveals biological origins, the Model Provenance Kit examines both metadata and the actual learned parameters of a model (like a unique genome …

12 часов назад @ slashdot.org
Social Media Sites Got Information from Ad Trackers on US State Health Insurance Sites
Social Media Sites Got Information from Ad Trackers on US State Health Insurance Sites Social Media Sites Got Information from Ad Trackers on US State Health Insurance Sites

All 20 of America's state-run healthcare marketplace sites "include advertising trackers that share information with Big Tech companies," reports Gizmodo, citing a report from Bloomberg: Per the report, seven million Americans bought their health insurance through state exchanges in 2026, and many of them may have had personal information shared with companies, including Meta, TikTok, Snap, Google, Nextdoor, and LinkedIn, among others. Some of the data collected and shared with those companies included ZIP codes, a person's sex and citizenship status, and race. In addition to potentially sensitive biographical details about a person, the trackers also may reveal additional details about the…

13 часов назад @ slashdot.org
10 People Called Police to Report Bigfoot Sighting in Ohio
10 People Called Police to Report Bigfoot Sighting in Ohio 10 People Called Police to Report Bigfoot Sighting in Ohio

CNN reports on a "sudden surge of claimed sightings" of "unidentified figures averaging 8 feet tall in wooded areas" along Ohio's Mahoning River. "And it stopped just as quickly as it started," says Jeremiah Byron, host of the Bigfoot Society Podcast, which collected and mapped the reports .... Byron doesn't take every report at face value, making sure he talks to people directly before publicizing their claims. Once word got out about the reports in Ohio, so did the obvious fakes. "I started to get a lot of AI-generated reports in my email.

It got up to the point where I was probably getting about 1,000 emails a day," he says. But when Byron spoke by phone with people who made the initial …

14 часов назад @ idle.slashdot.org
Newspaper Chain's Reporters Withhold Their Bylines to Protest 'AI-Assisted' Articles
Newspaper Chain's Reporters Withhold Their Bylines to Protest 'AI-Assisted' Articles Newspaper Chain's Reporters Withhold Their Bylines to Protest 'AI-Assisted' Articles

A chain of 30 U.S. newspapers including the Sacramento Bee, the Miami Herald and the Idaho Statesman "has started to use a new AI tool that can summarize traditional articles and spit out different versions for different audiences," reports the New York Times. And the chain's reporters "are not happy about it." Journalists in many of the company's newsrooms are now withholding their bylines from articles created by the new tool, meaning that those articles will run with a generic credit rather than a reporter's name, as is customary. They are also labeled AI-assisted. "We don't want to put our bylines on stories we did not actually write even if they're based on our work," said Ariane Lange…

15 часов назад @ news.slashdot.org
Why Some US Schools Are Cutting Back On the Technology They Spent Billions On
Why Some US Schools Are Cutting Back On the Technology They Spent Billions On Why Some US Schools Are Cutting Back On the Technology They Spent Billions On

America's school districts "spent billions on technology during the pandemic," reports the Washington Post. "But now some states are limiting in-school screen time because of concerns about its impact on children." Nationwide [U.S.] schools invested at least $15 billion and possibly as much as $35 billion from federal pandemic relief funds on laptops, learning software and other technology between 2020 and 2024, according to an estimate by the Edunomics Lab, an education think tank. By last school year, 88% of public schools reported in a federal survey they had given every child a laptop, tablet or similar device. Now, some states and school districts are walking back their technology use …

16 часов назад @ news.slashdot.org
Humanoid Robot Becomes Buddhist Monk In South Korea
Humanoid Robot Becomes Buddhist Monk In South Korea Humanoid Robot Becomes Buddhist Monk In South Korea

A four-foot humanoid robot named Gabi has become a monk at a Buddhist temple in Seoul, participating in a modified initiation ceremony where it pledged to respect life, obey humans, act peacefully toward other robots and objects. "Robots are destined to collaborate with humans in every field in the future," Hong Min-suk, a manager at the Jogye Order, the largest sect of Buddhism in South Korea, tells the New York Times. "It will only be natural for them to be part of our festival." Smithsonian Magazine reports: For the temple, this marks the first time a robot has participated in the sugye initiation ceremony, when followers pledge their devotion to the Buddha and his teachings. Gabi -- a B…

19 часов назад @ hardware.slashdot.org
Fiber Optic Cables Can Eavesdrop On Nearby Conversations
Fiber Optic Cables Can Eavesdrop On Nearby Conversations Fiber Optic Cables Can Eavesdrop On Nearby Conversations

sciencehabit shares a report from Science Magazine: Cold War spies planted bugs in walls, lamps, and telephones. Now, scientists warn, the cables themselves could listen in. A fiber optic technique used to detect earthquakes can also pick up the faint vibrations of nearby speech, researchers reported this week here at the general assembly of the European Geosciences Union. Freely available artificial intelligence (AI) software turned the fiber optic data into intelligible, real-time transcripts. "Not many people realize that [fiber optic cables] can detect acoustic waves," says Jack Lee Smith, a geophysicist at the University of Edinburgh who presented the result. "We show that in almost ev…

23 часа назад @ science.slashdot.org
NASA Keeps Track As Mexico City Sinks Into the Ground
NASA Keeps Track As Mexico City Sinks Into the Ground NASA Keeps Track As Mexico City Sinks Into the Ground

An anonymous reader quotes a report from the Guardian: Walking into Mexico City's sprawling central Zocalo is a dizzying experience. At one end of the plaza, the capital's cathedral, with its soaring spires, slumps in one direction. An attached church, known as the Metropolitan Sanctuary, tilts in the other. The nearby National Palace also seems off-kilter. The teetering of many of the capital's historic buildings is the most visible sign of a phenomenon that has been ongoing for more than a century: Mexico City is sinking at an alarming rate. Now, the metropolis's descent is being tracked in real time thanks to one of the most powerful radar systems ever launched into space. Known as Nisar…

1 day, 3 hours назад @ science.slashdot.org
Does Fidelity's Reorganization Signal the Beginning of the End for 'Small-Team Agile'?
Does Fidelity's Reorganization Signal the Beginning of the End for 'Small-Team Agile'? Does Fidelity's Reorganization Signal the Beginning of the End for 'Small-Team Agile'?

Longtime Slashdot reader cellocgw writes: Hiding inside another layoff report, Fidelity is reorganizing: "The changes are aimed at moving the teams away from an 'agile' makeup -- comprising smaller, siloed squads -- and toward larger teams built to move faster on projects." OMG, as they say: "Sudden outbreak of common sense." According to the Boston Globe, Fidelity is cutting about 1,000 jobs even as it plans to hire roughly 5,300 new workers, many of them early-career engineers. Half of the 3,300 new workers hired this year "will be in tech or product-related roles," the report says, noting that "about 2,000 of those jobs are currently open, and 400 of them are in tech/product-delivery." "…

1 day, 7 hours назад @ news.slashdot.org
Блоги людей
Amazon's Durability
Amazon's Durability

Amazon looked behind in AI in the training era, but is well place in the inference era, thanks to its continued investment in the long-term.

4 days, 20 hours назад @ stratechery.com
School is artificial
School is artificial

One of the hard parts of moving from school to “the real world” is adjusting

to all the ways that school is artificial. It’s different from the real

world.I’ve been thinking about this because of questions I see young learners

commonly asking. Too often the questions are meaningless in the real world, and

even if you could get answers, the answers would use useless.How long does it take to learn Python? In school, learning is divided

into discrete labelled chunks. A class called “Beginning Python” might last four

months. Everyone in the class will be taught the same things at the same pace.

The objectives are laid out by the teacher, and at the end you will get a

grade.Outside of school, le…

2 weeks назад @ nedbatchelder.com
Tim Cook's Impeccable Timing
Tim Cook's Impeccable Timing

Tim Cook had an extraordinary run — and impeccable timing, both in terms of when he became CEO, and when he is stepping down.

2 weeks, 4 days назад @ stratechery.com
>Recipe scaler: набор изменений номер 5
Recipe scaler: набор изменений номер 5 Recipe scaler: набор изменений номер 5

Еще новинки самого лучшего в мире менеджера рецептов

Как вы помните (не помните, конечно), я делаю самый удобный и продвинутый менеджер рецептов — recipe-scaler.ru.

С момента прошлого поста прошла неделя. За это время я в фоне поделал еще пару классных штук. 1. Список покупок

Сейчас можно и список покупок вести в общей приложухе. Синхронизация, оффлайн — все будет работать как привычно. Можно пошарить ссылкой или текстом для месенджера. Можно весь рецепт отправить в покупки.

Ну не кайф ли? Плюс одно приложение внутри приложения. 2. Расширение для Хрома

Телеграм у некоторых не работает, чтобы можно было сохранить рецепт я сделал расширение. Жмакаете, и рецепт отправляет в приложение.

Recipe …

3 weeks, 4 days назад @ mikeozornin.ru
Mythos, Muse, and the Opportunity Cost of Compute
Mythos, Muse, and the Opportunity Cost of Compute

Does Aggregation Theory survive in a world of constrained compute? Yes, insomuch as controlling demand will give power over supply.

3 weeks, 5 days назад @ stratechery.com
Linklint
Linklint

I wrote a Sphinx extension to eliminate excessive links:

linklint. It started as a linter to check and modify

.rst files, but it grew into a Sphinx extension that works without changing the

source files.It all started with a topic in the discussion forums: Should

not underline links, which argued that the underlining was distracting from

the text. Of course we did not remove underlines, they are important for

accessibility and for seeing that there are links at all.But I agreed that there were places in the docs that had too many links. In

particular, there are two kinds of link that are excessive:

Links within a section to the same section. These arise naturally when

describing a function …

3 weeks, 6 days назад @ nedbatchelder.com
>Recipe scaler: набор изменений номер 4
Recipe scaler: набор изменений номер 4 Recipe scaler: набор изменений номер 4

Рассказываю о новинках самого лучшего в мире менеджера рецептов

Как вы помните (не помните, конечно), я делаю самый удобный и продвинутый менеджер рецептов — recipe-scaler.ru.

С момента прошлого поста прошло два месяца. За это время я в фоне поделал еще немного разных штук. 1. Раздел Discovery

Можно почитать чужие рецепты. Пока рецепты людей, но потом будут еще и коллекции, ищу где можно найти рецептов так, чтобы не нарушить сразу 100 миллионов авторских прав 2. Универсальный импорт

Импорт сильно прокачался. Сейчас можно импортировать что угодно: много рецептов за раз, много ссылок, рецепты из произвольного текста или файла произвольного формата. Можно даже импортировать рецепты из фотограф…

1 month назад @ mikeozornin.ru
>ИИ-нативные продукты
ИИ-нативные продукты

Рассуждаю, что важно учесть при разработке сложного софтверного продукта сейчас, чтобы он остался актуальным через год или два

Мир софта меняется и скоро поменяется совсем. Да, я про ИИ и ЛЛМ в частности. Многие компании не пережили прошлую мобильную революцию (вспомните про нокию). Я размышляю как нам пережить эту. Поэтому, я хочу поразмышлять, что значит «ии-нативные продукты».

Я говорю не про конкретные ии-фичи, не про пресловутого бота, который отвечает мимо и невпопад, а скорее про общее ощущение от продуктов. Я говорю про по сути набор нефункциональных требований, касающихся ИИ, которые могут быть применимы ко всем нашим продуктам. Как сделать продукт, который: будет актуальным в сред…

1 month назад @ mikeozornin.ru
Apple's 50 Years of Integration
Apple's 50 Years of Integration

Apple has survived 50 years by being the only company integrating hardware and software; if the company loses because of AI it will be because the point of integration changes.

1 month, 1 week назад @ stratechery.com
>ЛЛМ и дизайн
ЛЛМ и дизайн

Я шарю скилл несколько раз, самое время кинуть в пост

Как делать дизайн с ЛЛМ, чтобы не было дефолтно и ИИшно: Не делать, делать руками

Кидать референсы

Дать скиллов Пост про опцию три. https://impeccable.style

Есть вот такой набор скиллов, в нем разные вещи, чтобы делать дизайн и верстку: Аудит того, что есть и критика

Есть работа с текстом

Есть работа с визуалкой На промостранице есть объяснения, начните с них.

Это не серебрянная пуля, по начать, например, можно с этого. https://developers.openai.com/blog/designing-delightful-frontends-with-gpt-5-4/

Скилл и объяснение от опенаи

1 month, 1 week назад @ mikeozornin.ru
Human.json
Human.json

Human.json is a new

idea for asserting that a site is authored by a person, and for vouching for

other sites’ authorship. I’ve added one to this site.It’s a fun idea, and I’ve joined in, but to be honest, I have some concerns.

When I made my human.json file, I looked through my browser history, and saw a

number of sites that were clearly personal sites that I liked. But if I list

one, am I claiming to know that there is no AI content on that site? I can’t

know that for sure.I haven’t let this stop me from adding my own

/human.json, and I’ll be interested to see what

comes of it.Human.json isn’t a new idea. There have been a number of attempts to add

structured data to web pages:

tags are a…

1 month, 2 weeks назад @ nedbatchelder.com
Agents Over Bubbles
Agents Over Bubbles

Agents are fundamentally changing the shape of demand for compute, both in terms of how they work and in terms of who will use them. They're so compelling that I no longer believe we're in a bubble.

1 month, 3 weeks назад @ stratechery.com
Anthropic and Alignment
Anthropic and Alignment Anthropic and Alignment

Anthropic is in a standoff with the Department of War; while the company's concerns are legitimate, it position is intolerable and misaligned with reality.

2 months, 1 week назад @ stratechery.com
Pytest parameter functions
Pytest parameter functions

Pytest’s parametrize is a great feature for writing tests without repeating

yourself needlessly. (If you haven’t seen it before, read

Starting with pytest’s parametrize first).

When the data gets complex, it can help to use functions to build the

data parameters.I’ve been working on a project

involving multi-line data, and the parameterized test data was getting

awkward to create and maintain. I created helper functions to make it nicer.

The actual project is a bit gnarly, so I’ll use a simpler example to

demonstrate.Here’s a function that takes a multi-line string and returns two numbers,

the lengths of the shortest and longest non-blank lines:def non_blanks(text: str) -> tuple[int, int]: …

2 months, 1 week назад @ nedbatchelder.com
>Street guesser
Street guesser Street guesser

Игра, чтобы выучить свой район

Как ведь бывает, переехал в новый район, а там все улицы незнакомые. Как вот их учить?

Сделал игру: Случайный положительный эффект: можно легко сравнить масштаб городов, понять, что Садовое в Москве — это от Фонтанки с заходом на начало Васьки и Петроградки.

2 months, 2 weeks назад @ mikeozornin.ru
Thin Is In
Thin Is In

Thick clients were the dominant form of device throughout the PC and mobile era; in an AI world, however, thin clients make much more sense.

2 months, 3 weeks назад @ stratechery.com
EdText
EdText

I have a new small project: edtext provides text

selection and manipulation functions inspired by the classic ed

text editor.I’ve long used cog to build documentation and HTML

presentations. Cog interpolates text from elsewhere, like source code or

execution output. Often I don’t want the full source file or all of the lines of

output. I want to be able to choose the lines, and sometimes I need to tweak the

lines with a regex to get the results I want.Long ago I wrote my own ad-hoc function to include a

file and over the years it had grown “organically”, to use a positive word. It

had become baroque and confusing. Worse, it still didn’t do all the things I

needed.The old function has 16 arg…

2 months, 4 weeks назад @ nedbatchelder.com
Microsoft and Software Survival
Microsoft and Software Survival

Microsoft got hammered on Wall Street for capacity allocation decisions that were the right ones: the software that wins will use AI to usurp other software.

3 months назад @ stratechery.com
Сага о двух туалетах в IT-корпорации
Сага о двух туалетах в IT-корпорации

Давным давно я как-то работал в Крупной Немецкой Компании. Хороший добротный IT-корпорат, всё как по книжке, со своими плюсами-минусами, многим такое нравится.

3 months, 1 week назад @ vas3k.blog
TSMC Risk
TSMC Risk

If hyperscalers and chip companies don't build up a TSMC competitor they are set to forego billions of dollars in revenue and stunt the AI revolution.

3 months, 1 week назад @ stratechery.com
>Важность рефлексии растет
Важность рефлексии растет

На пост меня натолкнула рабочая ситуация: Я написал (будем честны, попросил ллм написать) один скрипт, и некоторые коллеги прореагировали «о, давно о таком мечтаю». И у меня в голове щелкнуло.

Когда я сейчас написал про один промт, я не утрировал, это был реально один промт.

Сейчас простые задачи решаются ллмками достаточно хорошо. Ядро линукса они все еще не напишут, но пропарсить все ресурсные файлы проекта, сгруппировать одинаковые строчки и дать к ним мгновенный поиск — это задача на один промт. И все, что удерживает людей сейчас, от того, что некоторая часть их задач начнет быть проще — рефлексия. Все что нужно — остановиться, и заметить момент «ага, я тут хочу упрощение, которое возмо…

3 months, 1 week назад @ mikeozornin.ru
Testing: exceptions and caches
Testing: exceptions and caches

Two testing-related things I found recently.Unified exception testingKacper Borucki blogged about parameterizing exception

testing, and linked to pytest docs and a

StackOverflow answer with similar approaches.The common way to test exceptions is to use

pytest.raises as a context manager, and have

separate tests for the cases that succeed and those that fail. Instead, this

approach lets you unify them.I tweaked it to this, which I think reads nicely:from contextlib import nullcontext as produces import pytest

from pytest import raises @pytest.mark.parametrize( "example_input, result", [ (3, produces(2)), (2, produces(3)), (1, produces(6)), (0, raises(ZeroDivisionError)), ("Hello", raises(Typ…

3 months, 2 weeks назад @ nedbatchelder.com
>ИИ-дизайн
ИИ-дизайн ИИ-дизайн

Я задал один и тот же промт нескольким моделям и вот что вышло

Промт

Прочитай @/llm/PRD.md и сверстай статическую html-страницу about. Укажи в ней все преимущества, придумай как их проиллюстрировать, используй модный современный дизайн Сохрани в файл about-page/{model-name}.html Ориентируйся только на prd, не используй about-страницу.Эксперимент проведен в декабре 2025-январе 2026. Использовался openrouter или облака ллммок. В скриншотах могут быть небольшие артефакты, скриншоты снимал плейрайт, он не умеет в стики-позиции.

Для сравнения дизайн кожаного мешка (меня): https://recipe-scaler.ru/#/about

Gemini 3 pro Grok code fast 1 Minimax 2.1 Minimax 2.1 Minimax 2.1 Minimax 2.1

Тут я просил ш…

3 months, 2 weeks назад @ mikeozornin.ru
>Псевдозабота Клод Кода
Псевдозабота Клод Кода Псевдозабота Клод Кода

Клод код (Claude Code) заботится обо мне и показывает команды на согласования, к сожалению, он делает это без уважения плохо.

Посмотрите на этот апрув: Выполняет трехстрочную шелл-команду с вложенными конструкциями: циклы, условия. Если там где-то будет какая-то ошибка, я её просто не замечу.

Я не специально выбирал, что скриншотить, они все такие: У меня остается два варианта: Как мартышка жать и жать на кнопку «Approve». В итоге вырабатывается привычка, которая не даст мне себя защититить в опасной ситуации. См. принцип «подтверждения не работают».

Один раз апрувнуть тоже не выйдет, потому что эта конкретная трехэтажная команда вряд ли когда-нибудь появится.

Согласитья на YOLO (You Only L…

3 months, 3 weeks назад @ mikeozornin.ru
>Recipe scaler: релиз 3
Recipe scaler: релиз 3 Recipe scaler: релиз 3

На новогодние праздники вышли два больших апдейта recipe-scaler

Первый апдейт — публичный профиль и коллекции

Сейчас можно шарить не только рецепты как одну штуку, но и всю коллекцию.

Или выборочно, или прибранные рецепты (с рецептом и фоткой), или вообще все-все-все

https://recipe-scaler.ru/#/public/@/mike.ozornin Интеграция с ИИ-иссистентом

Можно через MCP подключиться к своему ассистенту. У кого-то клод, у кого-то курсор. Пока подглючивает чуток. Но смотрите, какая красота:

3 months, 3 weeks назад @ mikeozornin.ru
Apple: You (Still) Don't Understand the Vision Pro
Apple: You (Still) Don't Understand the Vision Pro

The first live sporting event was broadcast in the Vision Pro, and it's a big disappointment. The experience could be amazing, but Apple actively ruins it.

3 months, 3 weeks назад @ stratechery.com
>ИИ-ревью кода
ИИ-ревью кода

Делал большую фичу, попросил ревью у ИИ. Попросил найти важные моменты во всех областях: безопасность, логика, деплой, производительность и прочее, и прочее.

Опус 4.5 (лучшая на сейчас ЛЛМ в мире) написал: Критикал sql-инъекция. Как оказалось: пользователь сам себе после всех входов и разрешений на свой же запрос получит чуть больше своих же результатов. Опус не написал: Конфиг nginx забыли поправить и ничего не будет работать в целом.

Сервис-воркер (фоновый код в браузерном приложении) блокировал работу новой вещи, перехватывая все обращения на себя.

Кеширование oauth-запросов было настроено некорректно.

Часовые пояса неправильные, посему токен не имел шансов подойти.

Некоторые адреса обра…

3 months, 4 weeks назад @ mikeozornin.ru
AI and the Human Condition
AI and the Human Condition

AI might replace all of the jobs; that's only a problem if you think that humans will care, but if they care, they will create new jobs.

4 months назад @ stratechery.com
No more .html
No more .html

This morning I shared a link to this site, and the recipient said, “it looks

like a file.” I thought they meant the page was all black and white with no

color. No, they were talking about the URL, which ended with “.html”.This site started almost 24 years ago as

a static site: a pile of .html files created on my machine and uploaded to the

server. The URLs naturally had .html extensions. It was common in web sites of

the time.Over the years, the technology has changed. In 2008, it was still a static

site on the host, but produced with

Django running locally. In 2021, it became a

real Django site on the host.Through all these changes, the URLs remained the same—they still had

the old-fashion…

4 months, 1 week назад @ nedbatchelder.com
Generating data shapes with Hypothesis
Generating data shapes with Hypothesis

In my last blog post (A testing conundrum), I described

trying to test my Hasher class which hashes nested data. I couldn’t get

Hypothesis to generate usable data for my test. I wanted to assert that two

equal data items would hash equally, but Hypothesis was finding pairs like

[0] and [False]. These are equal but hash differently because the

hash takes the types into account.In the blog post I said,If I had a schema for the data I would be comparing, I could use it to

steer Hypothesis to generate realistic data. But I don’t have that

schema...I don’t want a fixed schema for the data Hasher would accept, but tests to

compare data generated from the same schema. It shouldn’t compare a list o…

4 months, 2 weeks назад @ nedbatchelder.com
Generating data shapes with Hypothesis
Generating data shapes with Hypothesis

In my last blog post (A testing conundrum), I described

trying to test my Hasher class which hashes nested data. I couldn’t get

Hypothesis to generate usable data for my test. I wanted to assert that two

equal data items would hash equally, but Hypothesis was finding pairs like

[0] and [False]. These are equal but hash differently because the

hash takes the types into account.In the blog post I said,If I had a schema for the data I would be comparing, I could use it to

steer Hypothesis to generate realistic data. But I don’t have that

schema...I don’t want a fixed schema for the data Hasher would accept, but tests to

compare data generated from the same schema. It shouldn’t compare a list o…

4 months, 2 weeks назад @ nedbatchelder.com
The 2025 Stratechery Year in Review
The 2025 Stratechery Year in Review

The most popular and most important posts on Stratechery in 2025.

4 months, 3 weeks назад @ stratechery.com
A testing conundrum
A testing conundrum

In coverage.py, I have a class for computing the fingerprint of a data

structure. It’s used to avoid doing duplicate work when re-processing the same

data won’t add to the outcome. It’s designed to work for nested data, and to

canonicalize things like set ordering. The slightly simplified code looks like

this:class Hasher: """Hashes Python data for fingerprinting.""" def __init__(self) -> None: self.hash = hashlib.new("sha3_256") def update(self, v: Any) -> None: """Add `v` to the hash, recursively if needed.""" self.hash.update(str(type(v)).encode("utf-8")) match v: case None: pass case str(): self.hash.update(v.encode("utf-8")) case bytes(): self.hash.update(v) case int() | float(): self.…

4 months, 3 weeks назад @ nedbatchelder.com
A testing conundrum
A testing conundrum

Update: I found a solution which I describe in

Generating data shapes with Hypothesis.In coverage.py, I have a class for computing the fingerprint of a data

structure. It’s used to avoid doing duplicate work when re-processing the same

data won’t add to the outcome. It’s designed to work for nested data, and to

canonicalize things like set ordering. The slightly simplified code looks like

this:class Hasher: """Hashes Python data for fingerprinting.""" def __init__(self) -> None: self.hash = hashlib.new("sha3_256") def update(self, v: Any) -> None: """Add `v` to the hash, recursively if needed.""" self.hash.update(str(type(v)).encode("utf-8")) match v: case None: pass case str(): self.hash.u…

4 months, 3 weeks назад @ nedbatchelder.com
Итоги Года 2025
Итоги Года 2025 Итоги Года 2025

2024, 2023, 2022, 2021, 2020, 2019, 2018, 2017, 2016, 2015, 2014, 2013, 2012, 2011, 2010, 2009, 2008 Нет, Дядя Вострек, не умеешь ты хайпить. Надо было больше пиздеть и меньше делать, а ты наоборот начал — много делаешь и мало пиздишь. А это прямой путь к выгоранию и забвению одновременно...

Необычный год вышел, мда. Я потерял работу и так и не смог найти новую ? или не смог найти сил опять танцевать бинарные деревья на интервью? . Навайбкодил несколько проектов, на некоторые из которых потр…

4 months, 3 weeks назад @ vas3k.blog
Netflix and the Hollywood End Game
Netflix and the Hollywood End Game

Netflix is driving the Hollywood end game, likely confident it can increase the value of IP, and fend off YouTube.

5 months назад @ stratechery.com
>Вайб-кодинг, дофамин и слот-машины
Вайб-кодинг, дофамин и слот-машины

Осознал недавно, чем вайб-кодинг в его классическом виде похож на лудоманию и при чем тут дофамин

Что за вайб-кодинг такой

Давайте сначала начнем с определений. Не каждая разработка с ллмкой — вайб-кодинг, но каждый вайб-кодинг — разработка с помощью ллмки.

Вайб-кодингом я буду называть программирование с помощью ллмки, в котором есть вот такие характеристики: Мало изначального планирования. Буквально короткое описание, вкинутое в ллмку и потом разберемся походу.

Попытка сразу попасть в нужную конечную точку. Желательно за одну итерацию.

Значительная часть кода написана ллмкой. Человек в целом не читает весь код, не проверяет его, только смотрит на результат. Архитектура придумана тоже ллмк…

5 months назад @ mikeozornin.ru
Google, Nvidia, and OpenAI
Google, Nvidia, and OpenAI

OpenAI and Nvidia are both under threat from Google; I like OpenAI's chances best, but they need an advertising model to beat Google as an Aggregator.

5 months, 1 week назад @ stratechery.com
>Сайд-бай-сайб 0.2.0
Сайд-бай-сайб 0.2.0 Сайд-бай-сайб 0.2.0

В сайд-бай-сайде вышла следующая версия

Изменения: Человекочитаемые URL для голосований

Было: /v/06b95c10-7688-4106-8e75-762035290c67/

Стало: /v/HairyParrotsPursueRudely/ Улучшение интеграции с Mattermost:

Сайд-бай-сайд сгенерирует превьюшки к уведомлениям в чате.

По окончании голосованию в чате будет итог голосования. Было: Стало: Мелочи: Кликабельные ссылки в описаниях. Ссылки в комментарии станут кликабельными.

На странице голосования теперь тоже показывается количество проголосовавших.

На странице голосований можно прокручивать картинки перетаскиванием мыши

Белый список доменов эл. почты. Можно указать домены, вход с которых будет разрешен.

Драг-н-дропать файлы можно на всю страницу, да…

5 months, 1 week назад @ mikeozornin.ru
Autism Adulthood, 3rd edition
Autism Adulthood, 3rd edition Autism Adulthood, 3rd edition

Today is the publication of the third edition of Autism

Adulthood: Insights and Creative Strategies for a Fulfilling Life. It’s my

wife Susan’s book collecting stories and experiences from

people all along the autism spectrum, from the self-diagnosed to the

profound.The book includes dozens of interviews with autistic adults, their parents,

caregivers, researchers, and professionals. Everyone’s experience of autism is

different. Reading others’ stories and perspectives can give us a glimpse into

other possibilities for ourselves and our loved ones.If you have someone in your life on the spectrum, or are on it yourself, I

guarantee you will find new ways to understand the breadth of what aut…

5 months, 3 weeks назад @ nedbatchelder.com
Autism Adulthood, 3rd edition
Autism Adulthood, 3rd edition Autism Adulthood, 3rd edition

Today is the publication of the third edition of Autism

Adulthood: Insights and Creative Strategies for a Fulfilling Life. It’s my

wife Susan’s book collecting stories and experiences from

people all along the autism spectrum, from the self-diagnosed to the

profound.The book includes dozens of interviews with autistic adults, their parents,

caregivers, researchers, and professionals. Everyone’s experience of autism is

different. Reading others’ stories and perspectives can give us a glimpse into

other possibilities for ourselves and our loved ones.If you have someone in your life on the spectrum, or are on it yourself, I

guarantee you will find new ways to understand the breadth of what aut…

5 months, 3 weeks назад @ nedbatchelder.com
Robotaxis and Suburbia
Robotaxis and Suburbia

Robotaxis are poised to further close the delta between suburbs and the city; the city (and Uber) might never recover.

5 months, 3 weeks назад @ stratechery.com
Why your mock breaks later
Why your mock breaks later

In Why your mock doesn’t work I explained this rule of

mocking:Mock where the object is used, not where it’s

defined.That blog post explained why that rule was important: often a mock doesn’t

work at all if you do it wrong. But in some cases, the mock will work even if

you don’t follow this rule, and then it can break much later. Why?Let’s say you have code like this:# user.py def get_user_settings(): with open(Path("~/settings.json").expanduser()) as f: return json.load(f) def add_two_settings(): settings = get_user_settings() return settings["opt1"] + settings["opt2"] You write a simple test:def test_add_two_settings(): # NOTE: need to create ~/settings.json for this to work: # {"opt1": 1…

5 months, 3 weeks назад @ nedbatchelder.com
Why your mock breaks later
Why your mock breaks later

In Why your mock doesn’t work I explained this rule of

mocking:Mock where the object is used, not where it’s

defined.That blog post explained why that rule was important: often a mock doesn’t

work at all if you do it wrong. But in some cases, the mock will work even if

you don’t follow this rule, and then it can break much later. Why?Let’s say you have code like this:# user.py def get_user_settings() -> str: with open(Path("~/settings.json").expanduser()) as f: return json.load(f) def add_two_settings() -> int: settings = get_user_settings() return settings["opt1"] + settings["opt2"] You write a simple test:def test_add_two_settings(): # NOTE: need to create ~/settings.json for this to work…

5 months, 3 weeks назад @ nedbatchelder.com
Матрица согласований
Матрица согласований

У дизайнера найдется десяток людей, которые «пытаются помочь» ему делать свою работу. И это одна из первых ловушек, в которую попадает начинающий тимлид.

Типовая ситуация: дизайнер приносит макет, вокруг собираются разработчики, менеджеры, подруга жены босса — и каждый начинает накидывать. Дизайнер погружает новых людей в задачу и доказывает, что сценарий решается интерфейсом. Бонусом идут редкие сценарии, которые «нужно обязательно учесть».

После этого интерфейс превращается в компромисс, пытающийся учесть всё и сразу.

Оговорюсь — я не против фидбека от команды, но он должен быть в формате рекомендаций, а финальное решение остаётся за дизайнером.

У нас тоже были часовые общие синки: куча м…

5 months, 3 weeks назад @ blogdm.ru
Инди-разработка
Show HN Show HN
последний пост 3 часа назад
Show HN: A Codex/Claude Code plugin for persistent product context thru sessions
Show HN: A Codex/Claude Code plugin for persistent product context thru sessions Show HN: A Codex/Claude Code plugin for persistent product context thru sessions

Draft — Claude Code + Codex CLI + CursorDraft is a PM brain for Claude Code, Codex CLI, and Cursor.

Quick startClaude Code/plugin marketplace add idodekerobo/draft-cli-plugin /plugin install draft /draft:setupCodexcurl -fsSL https://raw.githubusercontent.com/idodekerobo/draft-cli-plugin/main/scripts/codex-setup.sh | bashRestart Codex, then run:$draft-setupCursorcurl -fsSL https://raw.githubusercontent.com/idodekerobo/draft-cli-plugin/main/scripts/cursor-setup.sh | bashRestart Cursor.

CodexThis is a direct install, not a Codex plugin.

If you use Claude Code + Cursor: Run claude plugin install first, then cursor-setup.sh .

The Cursor setup script detects the Claude Code plugin and skips insta…

3 часа назад @ github.com
Show HN: Generate a variety of ad creatives for your SaaS
Show HN: Generate a variety of ad creatives for your SaaS Show HN: Generate a variety of ad creatives for your SaaS

Credits are the primary unit used to generate media.

Each image or video consumes a specific number of credits per generated media.

If no credit cost is explicitly shown, the default usage is one credit.

Unused credits expire at the end of each billing cycle and do not carry over to the next month.

Your credit balance is automatically refreshed when your subscription renews.

4 часа назад @ zenduxai.com
Show HN: Countries where you can leave your MacBook at a random coffee shop
Show HN: Countries where you can leave your MacBook at a random coffee shop Show HN: Countries where you can leave your MacBook at a random coffee shop

Would you leave your laptop unattended in a coffee shop here for 10 minutes?

Click a country on the map to vote.

0 stable 14 low conf.

14 countries with data ↓ Riskiest first

6 часов назад @ vouchatlas.com
Show HN: Pitch Is Just Rhythm Sped Up [video]
Show HN: Pitch Is Just Rhythm Sped Up [video] Show HN: Pitch Is Just Rhythm Sped Up [video]

Sound, at the physical level, is a one-dimensional signal in time. Yet we speak of pitch, rhythm, and timbre as if they were independent dimensions. How is this possible?Podcast generated by NotebookLM on https://bookerapp.replit.app/book/fom/from-temporal-structur... Comments URL: https://news.ycombinator.com/item?id=48078635

Points: 1

# Comments: 0

8 часов назад @ youtube.com
Show HN: Rust but Lisp
Show HN: Rust but Lisp Show HN: Rust but Lisp

dy powf 2.0 )) sqrt )) (fn main () () ( let p1 (new Point (x 0.0 ) (y 0.0 ))) ( let p2 (new Point (x 3.0 ) (y 4.0 ))) (println! "

("no") } (impl Point (fn new (...) ...)) impl Point { fn new(...) ... } (trait Display (fn fmt (...) Result)) trait Display { fn fmt(...) -> Result; } (new Point (x 1.0) (y 2.0)) Point { x: 1.0, y: 2.0 } (.

("{}", x) } (lambda (x y) (+ x y)) |x, y| { x + y } (pub fn foo () i32 42) pub fn foo() -> i32 { 42 } (pub (crate) mod m (fn f () () ())) pub(crate) mod m { fn f() {} } (use std::collections::HashMap) use std::collections::HashMap; (const MAX usize 1024) const MAX: usize = 1024; (rust "let x: i32 = 42; x") let x: i32 = 42; xBinary operators ( + , - , * , / , =…

8 часов назад @ github.com
Show HN: Free OSS transcription app I made and found it's faster than wispr flow
Show HN: Free OSS transcription app I made and found it's faster than wispr flow Show HN: Free OSS transcription app I made and found it's faster than wispr flow

Why does this exist?

I wanted an app that does the thing and gets out of the way.

Mumbli is stupid simple.

You can read all of it.

I also found Groq inference is decent and faster than 11Labs and OpenAI.

8 часов назад @ mumbli.app
Show HN: Sigma Guard – deterministic contradiction checks for graph memory
Show HN: Sigma Guard – deterministic contradiction checks for graph memory Show HN: Sigma Guard – deterministic contradiction checks for graph memory

It represents claims as a graph with local consistency rules and checks whether the proposed structure can be made globally consistent.

The practical interface is simpler: given claims, a graph, or a proposed write, it returns SAFE or UNSAFE with the contradiction details and a receipt hash.

The interesting question is whether this belongs as a pre-commit / pre-output verifier for agent memory, not as a standalone database.

Repo:https://github.com/Jasonleonardvolk/sigma-guardI would be interested in feedback from people working on graph databases, GraphRAG, or agent memory.

Does a deterministic "verify before memory write / before agent output" layer make sense in your stack?

9 часов назад @ news.ycombinator.com
Show HN: AI Design Taste – Design.md Generator
Show HN: AI Design Taste – Design.md Generator Show HN: AI Design Taste – Design.md Generator

Extract page styles and generate DESIGN.md or SKILL.md files and use it with Google Stitch, Claude, Codex, and Cursor.

AI Design Taste is a powerful Chrome extension that goes beyond feedback — it extracts real design styles from any webpage and transforms them into structured, AI-ready files like DESIGN.md or SKILL.md.

Turn any website into reusable design intelligence and seamlessly plug it into your favorite AI tools.

9 часов назад @ chromewebstore.google.com
Show HN: Draw Battle
Show HN: Draw Battle Show HN: Draw Battle

No players yet — be the first!

Waiting for opponents…Draw the prompt → voters pick the winner → climb the leaderboard.

Which is better?

VSWaiting for new drawings to vote on…

9 часов назад @ vidzert.com
Show HN: Simple Exif an App that allows creators take control of their metadata
Show HN: Simple Exif an App that allows creators take control of their metadata Show HN: Simple Exif an App that allows creators take control of their metadata

👁️ View metadata See every EXIF, ICC, and XMP tag parsed from your images in a clean, searchable grid.

✏️ Edit metadata Double-click any editable field to change it.

Modify titles, copyright, dates, camera info, keywords, and more.

🗑️ Remove metadata Strip all metadata from a single image or an entire folder.

Full pixel re-encode ensures zero residual data remains.

10 часов назад @ simpleexif.com
Show HN: Vibe-coding video games with Claude (Day 26: Primetime)
Show HN: Vibe-coding video games with Claude (Day 26: Primetime) Show HN: Vibe-coding video games with Claude (Day 26: Primetime)

I'm making a new video game every day as a hobby project, but I'm vibe coding it and writing nearly zero lines of code myself (even though I could, I'm a senior SWE). Today it's an original math game, Primetime where you click the non-prime numbers to factor them down to their primesThe prompts I used are listed below the game as "patch notes". Comments URL: https://news.ycombinator.com/item?id=48077935

Points: 1

# Comments: 0

10 часов назад @ gamevibe.us
Show HN: CLI to budget Claude Code session costs
Show HN: CLI to budget Claude Code session costs Show HN: CLI to budget Claude Code session costs

TokenystTrack token usage and API costs for your Claude Code sessions.

Tokenyst is a lightweight CLI tool that runs alongside Claude Code, automatically capturing token consumption and calculating spend against your budget.

Initialize and start tracking:tkst claude # or claudeThis spawns Claude Code with budget tracking enabled.

💡 Note: Running claude on its own will still enable budget tracking.

Check your progress:tkst -t # ┌─────────┬────────────────────────────────┐ # │ Task │ Issue-243 │ # ├─────────┼────────────────────────────────┤ # │ Budget │ $3.24 / $5.00 ▓▓▓▓▓▓▓▓░░░░ 65% │ # └─────────┴────────────────────────────────┘Use tkst -l to see all tasks, their budgets, spend, and remain…

10 часов назад @ github.com
Show HN: Is he OK? Senior safety monitoring app
Show HN: Is he OK? Senior safety monitoring app Show HN: Is he OK? Senior safety monitoring app

My parents still live together, but my father often goes for long walks in the forest or hunting — leaving my mother home alone for hours.

And when he's out there, he's on his own too.

Elderly people don't want to feel watched.

An app that sits quietly on their phone, learns what a normal day looks like, and emails you only when something seems wrong.

I just want to help people like my parents — and yours."

10 часов назад @ howareu.app
Show HN: ChonkLM – Tiny language models running offline in the browser
Show HN: ChonkLM – Tiny language models running offline in the browser Show HN: ChonkLM – Tiny language models running offline in the browser

chonklmTiny models, Offline on-device inference.

ChonkLM is an inference runtime website for tiny language models.

Cache your favorite models, no token ever leaves your browser.

Get started in <2 minutes on any device supporting WebGPU!

10 часов назад @ chonklm.com
Show HN: Mlx-code – I built a "backyard shed" AI coding agent for Mac
Show HN: Mlx-code – I built a "backyard shed" AI coding agent for Mac Show HN: Mlx-code – I built a "backyard shed" AI coding agent for Mac

A lightweight coding agent for Mac, built on Apple's MLX framework.

Modern coding agents are like luxury apartments: impressive and shiny, but you don't hold the deed.

The company behind the tool can raise the rent, change the features, or change the locks whenever they please.

They work the same way they did thirty years ago and will work thirty years from now.

Install via pip and launch the agent immediately:View and filter structured JSON logs from any session.

11 часов назад @ github.com
Starter Story Starter Story
последний пост None
Indiehackers
последний пост 13 часов назад
Strangers on the internet explained our product better than we did
Strangers on the internet explained our product better than we did Strangers on the internet explained our product better than we did

Thank you for using RSS.app You are being redirected to the article now Opening article in 0 0 : 0 8The #1 Source of RSS FeedsConnect with Information You Care About Get RSS Feed From Almost Any Website

13 часов назад @ rss.app
FocusForge. Two weeks live, 18 installs, 0 signups. Here's what I'm learning.
FocusForge. Two weeks live, 18 installs, 0 signups. Here's what I'm learning. FocusForge. Two weeks live, 18 installs, 0 signups. Here's what I'm learning.

Thank you for using RSS.app You are being redirected to the article now Opening article in 0 0 : 0 8The #1 Source of RSS FeedsConnect with Information You Care About Get RSS Feed From Almost Any Website

19 часов назад @ rss.app
11 Weeks Ago I Had 0 Users. Now VIDI Has Reviewed $10M+ in Contracts - and I’m Opening a Small SAFE Round
11 Weeks Ago I Had 0 Users. Now VIDI Has Reviewed $10M+ in Contracts - and I’m Opening a Small SAFE Round 11 Weeks Ago I Had 0 Users. Now VIDI Has Reviewed $10M+ in Contracts - and I’m Opening a Small SAFE Round

Thank you for using RSS.app You are being redirected to the article now Opening article in 0 0 : 0 8The #1 Source of RSS FeedsConnect with Information You Care About Get RSS Feed From Almost Any Website

20 часов назад @ rss.app
Beyond "Pretty" AI: Solving for Detail Integrity in E-commerce Visuals
Beyond "Pretty" AI: Solving for Detail Integrity in E-commerce Visuals Beyond "Pretty" AI: Solving for Detail Integrity in E-commerce Visuals

Thank you for using RSS.app You are being redirected to the article now Opening article in 0 0 : 0 8The #1 Source of RSS FeedsConnect with Information You Care About Get RSS Feed From Almost Any Website

20 часов назад @ rss.app
Seeking a team you'll actually work with
Seeking a team you'll actually work with Seeking a team you'll actually work with

Thank you for using RSS.app You are being redirected to the article now Opening article in 0 0 : 0 8The #1 Source of RSS FeedsConnect with Information You Care About Get RSS Feed From Almost Any Website

1 day назад @ rss.app
Show IH: Hizzr - Anonymous messaging app that actually lets you chat back (and why we prioritized moderation over features)
Show IH: Hizzr - Anonymous messaging app that actually lets you chat back (and why we prioritized moderation over features) Show IH: Hizzr - Anonymous messaging app that actually lets you chat back (and why we prioritized moderation over features)

Thank you for using RSS.app You are being redirected to the article now Opening article in 0 0 : 0 8The #1 Source of RSS FeedsConnect with Information You Care About Get RSS Feed From Almost Any Website

1 day, 13 hours назад @ rss.app
Building an AI nutrition tracker taught me buyers care about trust before AI
Building an AI nutrition tracker taught me buyers care about trust before AI Building an AI nutrition tracker taught me buyers care about trust before AI

Thank you for using RSS.app You are being redirected to the article now Opening article in 0 0 : 0 8The #1 Source of RSS FeedsConnect with Information You Care About Get RSS Feed From Almost Any Website

1 day, 15 hours назад @ rss.app
This system tells you what’s working in your startup
This system tells you what’s working in your startup This system tells you what’s working in your startup

Thank you for using RSS.app You are being redirected to the article now Opening article in 0 0 : 0 8The #1 Source of RSS FeedsConnect with Information You Care About Get RSS Feed From Almost Any Website

1 day, 15 hours назад @ rss.app
86 Projects, One Architect: How I Finally Broke the Documentation Bottleneck
86 Projects, One Architect: How I Finally Broke the Documentation Bottleneck 86 Projects, One Architect: How I Finally Broke the Documentation Bottleneck

Thank you for using RSS.app You are being redirected to the article now Opening article in 0 0 : 0 8The #1 Source of RSS FeedsConnect with Information You Care About Get RSS Feed From Almost Any Website

1 day, 18 hours назад @ rss.app
Day 54: rethinking productivity pressure
Day 54: rethinking productivity pressure Day 54: rethinking productivity pressure

Thank you for using RSS.app You are being redirected to the article now Opening article in 0 0 : 0 8The #1 Source of RSS FeedsConnect with Information You Care About Get RSS Feed From Almost Any Website

1 day, 18 hours назад @ rss.app
Looking for OpenClaw users to test a warm-intro agent workflow
Looking for OpenClaw users to test a warm-intro agent workflow Looking for OpenClaw users to test a warm-intro agent workflow

Thank you for using RSS.app You are being redirected to the article now Opening article in 0 0 : 0 8The #1 Source of RSS FeedsConnect with Information You Care About Get RSS Feed From Almost Any Website

2 days, 12 hours назад @ rss.app
ScanMessage — AI fraud detection for WhatsApp & SMS in Latin America
ScanMessage — AI fraud detection for WhatsApp & SMS in Latin America ScanMessage — AI fraud detection for WhatsApp & SMS in Latin America

Thank you for using RSS.app You are being redirected to the article now Opening article in 0 0 : 0 8The #1 Source of RSS FeedsConnect with Information You Care About Get RSS Feed From Almost Any Website

2 days, 14 hours назад @ rss.app
What I learned after launching our $3.99 Hermes hosting
What I learned after launching our $3.99 Hermes hosting What I learned after launching our $3.99 Hermes hosting

Thank you for using RSS.app You are being redirected to the article now Opening article in 0 0 : 0 8The #1 Source of RSS FeedsConnect with Information You Care About Get RSS Feed From Almost Any Website

2 days, 16 hours назад @ rss.app
I've been building for months and made $0. Here's the honest psychological reason — and it's not what I expected.
I've been building for months and made $0. Here's the honest psychological reason — and it's not what I expected. I've been building for months and made $0. Here's the honest psychological reason — and it's not what I expected.

Thank you for using RSS.app You are being redirected to the article now Opening article in 0 0 : 0 8The #1 Source of RSS FeedsConnect with Information You Care About Get RSS Feed From Almost Any Website

2 days, 17 hours назад @ rss.app
I built AlertHype — a lightweight TradingView alert router for Telegram/Discord
I built AlertHype — a lightweight TradingView alert router for Telegram/Discord I built AlertHype — a lightweight TradingView alert router for Telegram/Discord

Thank you for using RSS.app You are being redirected to the article now Opening article in 0 0 : 0 8The #1 Source of RSS FeedsConnect with Information You Care About Get RSS Feed From Almost Any Website

2 days, 22 hours назад @ rss.app
Reddit: /r/SideProject Reddit: /r/SideProject
последний пост 48 минут назад
Built a self-hosted memory layer for Claude because the built-in one wasn't good enough
Built a self-hosted memory layer for Claude because the built-in one wasn't good enough

The problem bugged me for months. Every time I started a new Claude conversation, I had to re-explain my projects, my preferences, my context. The official memory feature exists but you can't search it, tag it, or control what it stores. It just... occasionally remembers things. So I spent a weekend building my own. It's a small MCP server on Cloudflare Workers with four tools: save a note, search by meaning, list recent, delete. Claude calls them automatically. The interesting part is the search — every note gets vector-embedded so you can query by meaning rather than exact words. I can store "users are dropping off at checkout" and find it later by searching "onboarding problems." No keyw…

48 минут назад @ reddit.com
I build VideoFlow, a library to create videos from JSON objects (opensource alternative to Remotion)
I build VideoFlow, a library to create videos from JSON objects (opensource alternative to Remotion) I build VideoFlow, a library to create videos from JSON objects (opensource alternative to Remotion)

Hey everyone, I just launched VideoFlow, an open-source toolkit for generating videos from code. The idea is simple: as more videos become generated by software, AI agents, templates, and APIs, video needs a portable format that can be created, edited, and rendered anywhere. VideoFlow represents a video as JSON: scenes layers timing transitions effects keyframes render settings That JSON can then be rendered in the browser, on a server, inside a React preview/player, or inside a visual editor. The closest comparison is probably Remotion, but VideoFlow takes a JSON-first approach instead of making the video primarily a React component tree. Use cases I’m thinking about: personalized marketin…

58 минут назад @ reddit.com
Built a budgeting app for couples and roommates because nothing else worked for us
Built a budgeting app for couples and roommates because nothing else worked for us

Me and the people i live with tried every budgeting app and they’re all built for one person. which is wild because most of us split rent, groceries, all of it. we ended up back on a spreadsheet every time. so i built one. it’s called Budgie, just went live on the App Store. shared budgets, settle-up, optional bank sync. free if you want to enter stuff manually. would genuinely love feedback if anyone gives it a try what feels off, what’s missing, what you’d actually pay for. https://apps.apple.com/ca/app/budgii/id6760794412 submitted by /u/Budgiiappofficial [link] [comments]

1 час назад @ reddit.com
This keyboard saves me from typing the same replies across WhatsApp, Instagram & everywhere on my phone - ReplyKit
This keyboard saves me from typing the same replies across WhatsApp, Instagram & everywhere on my phone - ReplyKit This keyboard saves me from typing the same replies across WhatsApp, Instagram & everywhere on my phone - ReplyKit

submitted by /u/Fit_Prune_6910 [link] [comments]

1 час назад @ reddit.com
I always imagined myself as a character in the books I read, so I built MindStory
I always imagined myself as a character in the books I read, so I built MindStory I always imagined myself as a character in the books I read, so I built MindStory

I've always loved reading. As a kid I'd be in the middle of a book and start drifting and just think "what if I were in this world? Not just watching the story happen, but actually in it, making choices, affecting how it went? What type of character would I be?" That feeling never really left, so I built it into something I could play. MindStory is a platform for interactive AI storytelling. You enter a "Virtual Experience", a world or setup, with characters with their own personalities, locations, lore, and then you live inside it. Characters remember what happened in earlier scenes, relationships evolve, stats and context persist across sessions. Your inventory and resources get tracked t…

1 час назад @ reddit.com
nothing humbled me more than forgetting a topic i literally revised last week
nothing humbled me more than forgetting a topic i literally revised last week

hey everyone, i finally released an app I’ve been working on for the past two months called Recall. it all started from a problem I had while studying chemistry. i would revise a topic, feel like I understood it, then a few days later i'd come back and somehow half of it had just disappeared from my brain. esp with chemistry lol so I started building something for myself. recall is a study tracker built around spaced repetition and past paper review (past papers are huge here in south asia). you add your subjects and chapters, log what you study, and the app automatically schedules when you should revise things again. you can also track past paper scores, mark difficult chapters, use flashc…

1 час назад @ reddit.com
We built Jarvis.
We built Jarvis.

Every AI tool right now is the same broken loop. Open a tab. Type your question. Paste a screenshot or copy a chunk of code so the AI knows what you're looking at. Wait. Copy the answer back. Switch apps. You're doing all the context-setting work yourself. The AI just sits there waiting for you to brief it. This is not how AI should feel. So my brother and I built Clarko. Floating bubble on your desktop. Always running. Sees your screen, hears your audio, remembers what you've been doing across days. You hit a hotkey, ask anything, and it just does it. Across any app. No tabs, no copy-paste, no explaining what you're working on. It already has the context. What I actually do with it: "What …

1 час назад @ reddit.com
Most families are completely unprepared when it comes to accessing financial information during emergencies, so I built TrustVault - a simple, secure digital vault. Not a document sharing app. Looking for honest feedback.
Most families are completely unprepared when it comes to accessing financial information during emergencies, so I built TrustVault - a simple, secure digital vault. Not a document sharing app. Looking for honest feedback.

Founder Here. Feedback needed. Over the last few weeks, I’ve been building TrustVault - a secure digital vault for storing important financial and emergency information. The idea came after noticing how difficult it becomes for families to access critical information during emergencies. A lot of critical details like: Bank Accounts Insurance Information Investments Nominee Details Credit/Debit Cards Important Documents Digital Accounts Some things I focused heavily on: End-to-end encryption Nominee-based access Privacy-first architecture Simple onboarding Secure document handling This is still an early version, and I’m looking for honest feedback: Does this solve a real problem? What featur…

1 час назад @ reddit.com
How can I find intership or any other way of earning in India
How can I find intership or any other way of earning in India

​ My first year of engineering is almost completed, and during this summer vacation I want to gain some real-world experience and also earn a little. I know mern stack web development and have one full stack project in next.js I’m looking for opportunities like: Internships Freelance work Part-time remote work I’m ready to learn quickly and work sincerely. If anyone knows about any openings, referrals, or platforms that can help, please let me know. submitted by /u/chill--8032 [link] [comments]

1 час назад @ reddit.com
I built a journaling app because every journaling app felt too noisy
I built a journaling app because every journaling app felt too noisy

I’m a pretty introverted person, and I never really felt comfortable sharing my life publicly on social media. But I still wanted a way to remember my days. So I started looking for a journaling app, and most of them have too many features, streaks, gamification, AI prompts, social systems… everything felt overwhelming. Modern life is already noisy enough. I just wanted a quiet little place to record my life and look back on it someday. So I built Hibi. I spent a long time designing the UI because I wanted journaling to feel calm and beautiful, like your memories were being treated carefully instead of turned into productivity data. A few strangers tested it earlier and their reactions were…

1 час назад @ reddit.com
Went through all 15 categories of the Summer 2026 YC RFS, here's which ones a solo founder can actually build
Went through all 15 categories of the Summer 2026 YC RFS, here's which ones a solo founder can actually build

Not affiliated with YC, just someone who spends too much time researching this stuff. The Summer 2026 RFS dropped and I went through every category. Sharing a breakdown because I couldn't find one place that actually answered the practical question: which of these can a small team realistically build? Quick answer: 7 of 15 are software-first and buildable by a 1-3 person team. The 7 you can actually ship: 1. Software for AI Agents Most existing software is built for humans. Agents need APIs, machine-readable documentation, identity systems, permission layers, and payment infrastructure designed for autonomous programs. Every major software category needs a rebuild. This is years of opportun…

1 час назад @ reddit.com
I spent hours finding local business leads manually, so I built a tool to do it in minutes
I spent hours finding local business leads manually, so I built a tool to do it in minutes

Hey everyone I’ve been building a tool called LeadLu and wanted to share it here to get some honest feedback from people who do outreach for local businesses. If you run a web design agency, SEO service, lead gen business, or pretty much any local B2B service, you probably know how annoying prospecting can get. Searching Google Maps manually, opening listings one by one, checking websites, finding contact details, figuring out if the business is even worth contacting… it takes forever. LeadLu is built to make that process faster. You can search for a business type and location (for example “dentists in Chicago”) and it pulls business leads with things like: • business name • ratings & revie…

2 часа назад @ reddit.com
Built a curated local business lead database for agencies/freelancers — wondering if this is actually useful
Built a curated local business lead database for agencies/freelancers — wondering if this is actually useful

Over the last few weeks I’ve been building a curated lead database of local businesses across different niches. It currently has nearly 1,000 businesses including: website status/quality social media links ratings/reviews business category priority scoring suggested outreach channel The database includes businesses from multiple industries like restaurants, gyms, beauty, retail, services, etc. A large portion either: don’t have a website have outdated branding weak social presence or generally poor online positioning So it seems potentially useful for: web designers SMMA agencies SEO freelancers branding studios outreach setters marketing freelancers I originally built it for my own outreac…

2 часа назад @ reddit.com
I built a private browser room for long-distance couples
I built a private browser room for long-distance couples I built a private browser room for long-distance couples

I built Duoloft, a private browser room for long-distance couples. You create a room, invite your partner, and open it together during calls. Inside, you can move around as little avatars, answer prompts, draw together, leave gifts, watch YouTube on the TV, save memories, play music, and decorate the room over time with Glow earned from shared rituals. I originally made it for me and my long-distance girlfriend, but a few real couples have started using it too, so I’m looking for early feedback on the first-time experience and core loop. Site: https://www.duoloft.com submitted by /u/joeburgermama [link] [comments]

2 часа назад @ reddit.com
My Grandad's Death Made Me Build a Platform
My Grandad's Death Made Me Build a Platform

I built a free service for families navigating funeral and burial arrangements. You fill out a short form, and we research providers in your area using publicly available pricing, reviews, and complaint history. Then we send a personalized report with estimated pricing, questions to ask, and red flags to watch for. I started it after my grandad’s death almost tore my family apart because we were scammed by a funeral home. Made me realize how vulnerable families are when they have to make expensive decisions while grieving. It’s free for every family, and I’m trying to make the process feel a little less overwhelming and a lot more transparent. Any thoughts or honest opinions are appreciated…

2 часа назад @ reddit.com
Product Hunt Product Hunt
последний пост 1 day, 12 hours назад
nocal 4
nocal 4

The calendar that thinks like a workspace Discussion | Link

1 day, 12 hours назад @ producthunt.com
Codex in Chrome
Codex in Chrome

Let Codex navigate and automate tasks in your browser Discussion | Link

1 day, 15 hours назад @ producthunt.com
Staff.rip
Staff.rip

Describe a code change in plain language and ship it Discussion | Link

1 day, 16 hours назад @ producthunt.com
Toto
Toto

Context rich tasks sent to the best model. Discussion | Link

1 day, 18 hours назад @ producthunt.com
Zappy by ZapDigits
Zappy by ZapDigits

Your AI reporting analyst Discussion | Link

1 day, 20 hours назад @ producthunt.com
KodHau
KodHau

Stop your AI from breaking prod-give it your team decisions Discussion | Link

1 day, 23 hours назад @ producthunt.com
Kuku: open source
Kuku: open source

Your open-source, local second brain for every AI Discussion | Link

1 day, 23 hours назад @ producthunt.com
Stetos.co
Stetos.co

Insight infrastructure. Listen at scale. Discussion | Link

2 days назад @ producthunt.com
Bitfield
Bitfield

Fast plug-in runtime & database for scaling products quickly Discussion | Link

2 days, 1 hour назад @ producthunt.com
Monid 2.0
Monid 2.0

OpenRouter for agent tools Discussion | Link

2 days, 1 hour назад @ producthunt.com
MarkUp
MarkUp

Edit websites through AI with visual prompts Discussion | Link

2 days, 3 hours назад @ producthunt.com
Minions
Minions

Open Source Mission Control for Hermes Agent Discussion | Link

2 days, 3 hours назад @ producthunt.com
Sutra
Sutra

Decision Intelligence for hardware teams Discussion | Link

2 days, 4 hours назад @ producthunt.com
Radiq
Radiq

Product intelligence for the autonomous coding era Discussion | Link

2 days, 6 hours назад @ producthunt.com
Illospace
Illospace

Living space where teams and agents work together Discussion | Link

2 days, 6 hours назад @ producthunt.com
Путешествия
Vandrouki Vandrouki
последний пост 6 months, 1 week назад
Прямые рейсы между Оманом и Кенией
Прямые рейсы между Оманом и Кенией

У авиакомпании SalamAir промо-тариф: улететь из Маската в Найроби (или наоборот) можно от 6200 рублей (30 OMR). Для въезда в Кению нужно заранее оформить электронное разрешение (сбор около 30-35 USD с человека). Купить билеты можно на сайте авиакомпании или через trip.com / aviasales.ru (тут немного дороже, но зато принимают российские карты). Маскат — Найроби в декабре за 6200 рублей: Российской картой: […]

6 months, 1 week назад @ vandrouki.ru
Volotea: полеты по Европе и в Марокко
Volotea: полеты по Европе и в Марокко

Авиакомпания Volotea выкатила билеты за 19 евро. Но можно легко оформить пробную подписку SUPERVOLOTEA на 15 дней и купить их за 9 евро. Обычно подписка на год стоит 60 евро. Лоукостер утверждает, что Вы можете отменить членство в любой момент, но потеряете при этом некоторые привилегии, например, ручную кладь, но сохраните свою скидку на проезд. Главное, не забудьте […]

6 months, 1 week назад @ vandrouki.ru
Шри-Ланка и ОАЭ в одной поездке из Екатеринбурга
Шри-Ланка и ОАЭ в одной поездке из Екатеринбурга Шри-Ланка и ОАЭ в одной поездке из Екатеринбурга

Vandrouki (или Вандруки / Вандрули / Ванбрюки или как удобно) – это путешествия.

Способы путешествовать почти бесплатно.

Разумеется, Vandrouki – это высококвалифицированная команда амбициозных профессионалов своего дела.

с 2012 года мы ищем и находим дешевые авиабилеты, отели, туры и круизы.

А вы путешествуете почти бесплатно.

6 months, 1 week назад @ vandrouki.ru
Белавиа: прямые рейсы из Москвы в Могилев
Белавиа: прямые рейсы из Москвы в Могилев Белавиа: прямые рейсы из Москвы в Могилев

Vandrouki (или Вандруки / Вандрули / Ванбрюки или как удобно) – это путешествия.

Способы путешествовать почти бесплатно.

Разумеется, Vandrouki – это высококвалифицированная команда амбициозных профессионалов своего дела.

А вы путешествуете почти бесплатно.

Прямо сейчас, пока вы читали этот блок, мы нашли ещё несколько билетов, а кто-то их купил.

6 months, 1 week назад @ vandrouki.ru
10 ночей во Вьетнаме с вылетом из Благовещенска
10 ночей во Вьетнаме с вылетом из Благовещенска 10 ночей во Вьетнаме с вылетом из Благовещенска

Vandrouki (или Вандруки / Вандрули / Ванбрюки или как удобно) – это путешествия.

Способы путешествовать почти бесплатно.

Разумеется, Vandrouki – это высококвалифицированная команда амбициозных профессионалов своего дела.

с 2012 года мы ищем и находим дешевые авиабилеты, отели, туры и круизы.

А вы путешествуете почти бесплатно.

6 months, 1 week назад @ vandrouki.ru
Таиланд + ОАЭ из Москвы с захватом Нового года
Таиланд + ОАЭ из Москвы с захватом Нового года Таиланд + ОАЭ из Москвы с захватом Нового года

Vandrouki (или Вандруки / Вандрули / Ванбрюки или как удобно) – это путешествия.

Способы путешествовать почти бесплатно.

Разумеется, Vandrouki – это высококвалифицированная команда амбициозных профессионалов своего дела.

с 2012 года мы ищем и находим дешевые авиабилеты, отели, туры и круизы.

А вы путешествуете почти бесплатно.

6 months, 1 week назад @ vandrouki.ru
Прямые рейсы из Екатеринбурга в Армению
Прямые рейсы из Екатеринбурга в Армению Прямые рейсы из Екатеринбурга в Армению

Vandrouki (или Вандруки / Вандрули / Ванбрюки или как удобно) – это путешествия.

Способы путешествовать почти бесплатно.

Разумеется, Vandrouki – это высококвалифицированная команда амбициозных профессионалов своего дела.

А вы путешествуете почти бесплатно.

Прямо сейчас, пока вы читали этот блок, мы нашли ещё несколько билетов, а кто-то их купил.

6 months, 2 weeks назад @ vandrouki.ru
Готовые путешествия из Казани на остров Бали
Готовые путешествия из Казани на остров Бали Готовые путешествия из Казани на остров Бали

Сегодня мы решили слепить готовое путешествие из Казани в Индонезию — вышло от 47200 рублей с человека при поездке вдвоем.

Авиакомпания Etihad Airways предлагает билеты из Казани на Бали за 44000 рублей туда-обратно.

Даты полетов: например, 11-24 декабря (проживание с 12 по 24 декабря).

Все варианты на двоих на 12 ночей (рейтинг — выше 7/10)Не забываем настроить сортировку:— самая низкая цена (с учётом налога)— итого (в т.ч.

Первый отель — 3200 рублей на человека / 6400 рублей на двоих:Второй отель — 4700 рублей на человека / 9400 рублей на двоих:Третий отель — 5300 рублей на человека / 10600 рублей на двоих:Другие даты перелетов:4-17 декабря7-22 декабря

6 months, 2 weeks назад @ vandrouki.ru
Прямой рейс из Египта в Самару
Прямой рейс из Египта в Самару Прямой рейс из Египта в Самару

Vandrouki (или Вандруки / Вандрули / Ванбрюки или как удобно) – это путешествия.

Способы путешествовать почти бесплатно.

Разумеется, Vandrouki – это высококвалифицированная команда амбициозных профессионалов своего дела.

А вы путешествуете почти бесплатно.

Прямо сейчас, пока вы читали этот блок, мы нашли ещё несколько билетов, а кто-то их купил.

6 months, 2 weeks назад @ vandrouki.ru
Прямой рейс Аэрофлота с Сейшельских островов в Москву
Прямой рейс Аэрофлота с Сейшельских островов в Москву Прямой рейс Аэрофлота с Сейшельских островов в Москву

Vandrouki (или Вандруки / Вандрули / Ванбрюки или как удобно) – это путешествия.

Способы путешествовать почти бесплатно.

Разумеется, Vandrouki – это высококвалифицированная команда амбициозных профессионалов своего дела.

с 2012 года мы ищем и находим дешевые авиабилеты, отели, туры и круизы.

А вы путешествуете почти бесплатно.

6 months, 2 weeks назад @ vandrouki.ru
Из Казани в Новокузнецк за почти бесплатно
Из Казани в Новокузнецк за почти бесплатно Из Казани в Новокузнецк за почти бесплатно

Vandrouki (или Вандруки / Вандрули / Ванбрюки или как удобно) – это путешествия.

Способы путешествовать почти бесплатно.

Разумеется, Vandrouki – это высококвалифицированная команда амбициозных профессионалов своего дела.

А вы путешествуете почти бесплатно.

Прямо сейчас, пока вы читали этот блок, мы нашли ещё несколько билетов, а кто-то их купил.

6 months, 2 weeks назад @ vandrouki.ru
Etihad Airways: полеты из Казани в Азию
Etihad Airways: полеты из Казани в Азию Etihad Airways: полеты из Казани в Азию

Vandrouki (или Вандруки / Вандрули / Ванбрюки или как удобно) – это путешествия.

Способы путешествовать почти бесплатно.

Разумеется, Vandrouki – это высококвалифицированная команда амбициозных профессионалов своего дела.

А вы путешествуете почти бесплатно.

Прямо сейчас, пока вы читали этот блок, мы нашли ещё несколько билетов, а кто-то их купил.

6 months, 2 weeks назад @ vandrouki.ru
Таиланд или Таиланд + Хайнань в одной поездке из Москвы
Таиланд или Таиланд + Хайнань в одной поездке из Москвы Таиланд или Таиланд + Хайнань в одной поездке из Москвы

Vandrouki (или Вандруки / Вандрули / Ванбрюки или как удобно) – это путешествия.

Способы путешествовать почти бесплатно.

Разумеется, Vandrouki – это высококвалифицированная команда амбициозных профессионалов своего дела.

А вы путешествуете почти бесплатно.

Прямо сейчас, пока вы читали этот блок, мы нашли ещё несколько билетов, а кто-то их купил.

6 months, 2 weeks назад @ vandrouki.ru
AZAL: полеты из Москвы, Питера и Екб на Ближний Восток, в Индию и на Мальдивы
AZAL: полеты из Москвы, Питера и Екб на Ближний Восток, в Индию и на Мальдивы AZAL: полеты из Москвы, Питера и Екб на Ближний Восток, в Индию и на Мальдивы

Азербайджанские Авиалинии снизили цены ноябрь-март: взять из Москвы, Питера и Екб в ОАЭ, Израиль, Таджикистан, Саудовскую Аравию, Индию и на Мальдивы можно со скидками.

Билеты берем через сервис aviasales.ru (тут дешевле всего).

Москва — Душанбе — Москва:Москва — Даммам — Москва:Москва — Дубай — Москва:Москва — Тель-Авив — Москва:Москва — Дели — Москва:Москва — Мумбаи — Москва:Москва — Мале — Москва в ноябре:Москва — Мале — Москва в январе:Москва — Мале — Москва в феврале:Москва — Мале — Москва в марте:Питер — Душанбе — Питер:Питер — Даммам — Питер:Питер — Дубай — Питер:Питер — Тель-Авив — Питер:Питер — Дели — Питер:Питер — Мумбаи — Питер:Питер — Мале — Питер в ноябре-декабре:Питер — Мале —…

6 months, 2 weeks назад @ vandrouki.ru
Подборка недорогих билетов по всему миру
Подборка недорогих билетов по всему миру Подборка недорогих билетов по всему миру

Vandrouki (или Вандруки / Вандрули / Ванбрюки или как удобно) – это путешествия.

Способы путешествовать почти бесплатно.

Разумеется, Vandrouki – это высококвалифицированная команда амбициозных профессионалов своего дела.

А вы путешествуете почти бесплатно.

Прямо сейчас, пока вы читали этот блок, мы нашли ещё несколько билетов, а кто-то их купил.

6 months, 2 weeks назад @ vandrouki.ru
Atlas Obscura: Stories Atlas Obscura: Stories
последний пост 1 day, 10 hours назад
Cosgrove Hall Films Archive in Sale, England
Cosgrove Hall Films Archive in Sale, England Cosgrove Hall Films Archive in Sale, England

This website is using a security service to protect itself from online attacks.

The action you just performed triggered the security solution.

There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.

You can email the site owner to let them know you were blocked.

Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.

1 day, 10 hours назад @ atlasobscura.com
Rings Loop Trail in Essex, California
Rings Loop Trail in Essex, California Rings Loop Trail in Essex, California

This website is using a security service to protect itself from online attacks.

The action you just performed triggered the security solution.

There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.

You can email the site owner to let them know you were blocked.

Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.

1 day, 12 hours назад @ atlasobscura.com
Red Skelton Museum of American Comedy in Vincennes, Indiana
Red Skelton Museum of American Comedy in Vincennes, Indiana Red Skelton Museum of American Comedy in Vincennes, Indiana

This website is using a security service to protect itself from online attacks.

The action you just performed triggered the security solution.

There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.

You can email the site owner to let them know you were blocked.

Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.

2 days, 16 hours назад @ atlasobscura.com
The Inselbergs in Regina, French Guiana
The Inselbergs in Regina, French Guiana The Inselbergs in Regina, French Guiana

This website is using a security service to protect itself from online attacks.

The action you just performed triggered the security solution.

There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.

You can email the site owner to let them know you were blocked.

Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.

3 days, 10 hours назад @ atlasobscura.com
San Francisco Chronicle Building in San Francisco, California
San Francisco Chronicle Building in San Francisco, California San Francisco Chronicle Building in San Francisco, California

This website is using a security service to protect itself from online attacks.

The action you just performed triggered the security solution.

There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.

You can email the site owner to let them know you were blocked.

Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.

3 days, 12 hours назад @ atlasobscura.com
Longest Road Through No Man’s Land in Tajikistan
Longest Road Through No Man’s Land in Tajikistan Longest Road Through No Man’s Land in Tajikistan

This website is using a security service to protect itself from online attacks.

The action you just performed triggered the security solution.

There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.

You can email the site owner to let them know you were blocked.

Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.

3 days, 14 hours назад @ atlasobscura.com
Frank Morgan’s Grave in Brooklyn, New York
Frank Morgan’s Grave in Brooklyn, New York Frank Morgan’s Grave in Brooklyn, New York

This website is using a security service to protect itself from online attacks.

The action you just performed triggered the security solution.

There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.

You can email the site owner to let them know you were blocked.

Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.

3 days, 14 hours назад @ atlasobscura.com
Château de Meung-sur-Loire: The Dungeon of François Villon in Meung-sur-Loire, France
Château de Meung-sur-Loire: The Dungeon of François Villon in Meung-sur-Loire, France Château de Meung-sur-Loire: The Dungeon of François Villon in Meung-sur-Loire, France

This website is using a security service to protect itself from online attacks.

The action you just performed triggered the security solution.

There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.

You can email the site owner to let them know you were blocked.

Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.

3 days, 16 hours назад @ atlasobscura.com
Ip Man's Grave in Hong Kong
Ip Man's Grave in Hong Kong Ip Man's Grave in Hong Kong

This website is using a security service to protect itself from online attacks.

The action you just performed triggered the security solution.

There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.

You can email the site owner to let them know you were blocked.

Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.

4 days, 10 hours назад @ atlasobscura.com
Bluetooth Runestone in Lund, Sweden
Bluetooth Runestone  in Lund, Sweden Bluetooth Runestone in Lund, Sweden

This website is using a security service to protect itself from online attacks.

The action you just performed triggered the security solution.

There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.

You can email the site owner to let them know you were blocked.

Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.

4 days, 12 hours назад @ atlasobscura.com
Norwegian Church Arts Centre in Cardiff, Wales
Norwegian Church Arts Centre in Cardiff, Wales Norwegian Church Arts Centre in Cardiff, Wales

This website is using a security service to protect itself from online attacks.

The action you just performed triggered the security solution.

There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.

You can email the site owner to let them know you were blocked.

Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.

4 days, 14 hours назад @ atlasobscura.com
What the Light Knows
What the Light Knows What the Light Knows

This website is using a security service to protect itself from online attacks.

The action you just performed triggered the security solution.

There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.

You can email the site owner to let them know you were blocked.

Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.

4 days, 16 hours назад @ atlasobscura.com
The Stone Sculptures of Joan Bennàssar in Can Picafort, Spain
The Stone Sculptures of Joan Bennàssar in Can Picafort, Spain The Stone Sculptures of Joan Bennàssar in Can Picafort, Spain

This website is using a security service to protect itself from online attacks.

The action you just performed triggered the security solution.

There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.

You can email the site owner to let them know you were blocked.

Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.

4 days, 16 hours назад @ atlasobscura.com
'bLINK' in Gothenburg, Sweden
'bLINK' in Gothenburg, Sweden 'bLINK' in Gothenburg, Sweden

This website is using a security service to protect itself from online attacks.

The action you just performed triggered the security solution.

There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.

You can email the site owner to let them know you were blocked.

Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.

5 days, 10 hours назад @ atlasobscura.com
Little Lady Liberty in Niagara Falls, New York
Little Lady Liberty in Niagara Falls, New York Little Lady Liberty in Niagara Falls, New York

This website is using a security service to protect itself from online attacks.

The action you just performed triggered the security solution.

There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.

You can email the site owner to let them know you were blocked.

Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.

5 days, 12 hours назад @ atlasobscura.com
T—Ж T—Ж
последний пост None
Европейское айти
EU-startups EU-startups
последний пост 1 day, 19 hours назад
Copenhagen’s Reel raises €15 million to make renewable energy predictable for businesses and profitable for producers
Copenhagen’s Reel raises €15 million to make renewable energy predictable for businesses and profitable for producers Copenhagen’s Reel raises €15 million to make renewable energy predictable for businesses and profitable for producers

Jon Sigvert, co-founder and CEO of Reel, said, “Renewable energy is Europe’s path to energy independence – but only if the economics work for everyone.

We’ve helped Danish businesses and energy producers keep renewable energy profitable and predictable.

“Reel gives businesses predictable electricity costs and energy producers better returns on their renewable energy assets.

Reel is scaling in Germany, Europe’s largest energy market, where it already balances renewable energy projects for producers, including Blue Elephant Energy and greenwind.

Reel has built something rare: a model that makes renewable energy profitable for producers, predictable for businesses, and manageable for the grid.

1 day, 19 hours назад @ eu-startups.com
London’s Kohort raises €6 million Series A to build AI user acquisition agents for mobile game studios
London’s Kohort raises €6 million Series A to build AI user acquisition agents for mobile game studios London’s Kohort raises €6 million Series A to build AI user acquisition agents for mobile game studios

Kohort, a London-based mobile gaming analytics, forecasting, and UA optimisation company, has closed its €5.9 million ($7 million) Series A funding round to build user acquisition (UA) agents for mobile game studios.

User acquisition is one of the most critical and difficult operations for a mobile gaming studio.

Founded in 2018, Kohort is a mobile gaming analytics, forecasting, and UA optimisation company with an ML-based predictive analytics platform built for decision-makers in the gaming and consumer sectors.

It helps mobile game studios, operators, finance teams, and investors optimise user acquisition spend and perform M&A due diligence, using machine learning and cohort-based forecas…

1 day, 20 hours назад @ eu-startups.com
Delft-based FrostByte secures a cool €1.3 million to scale cryogenic electronics for quantum computing
Delft-based FrostByte secures a cool €1.3 million to scale cryogenic electronics for quantum computing Delft-based FrostByte secures a cool €1.3 million to scale cryogenic electronics for quantum computing

FrostByte, a Delft-based startup developing cryogenic electronics solutions for quantum technologies, has raised €1.3 million in funding from InnovationQuarter Capital, Graduate Ventures, Paeonia Group, UNIIQ and an angel investor.

With this funding, the company aims to further expand its team, scale production of cryogenic switches and develop integrated cryo-CMOS chips for the next generation of quantum systems.

It focuses on cryogenic integrated circuits (ICs) and specialised control electronics for quantum computing.

FrostByte moves part of that control electronics into the dilution refrigerator itself, using specialised cryo-CMOS technology designed to operate at extremely low temperat…

1 day, 22 hours назад @ eu-startups.com
UK semiconductor startup Quinas Technology secures investment approval from Malta Government Venture Capital
UK semiconductor startup Quinas Technology secures investment approval from Malta Government Venture Capital UK semiconductor startup Quinas Technology secures investment approval from Malta Government Venture Capital

Quinas Technology, a London-based DeepTech semiconductor startup developing memory technologies for AI, data centres, edge computing and advanced digital systems, has secured investment approval from Malta Government Venture Capital (MGVC).

The funding, the amount of which was not disclosed, is contingent on match financing and will support Quinas Technology’s expansion activities in Malta.

Quinas Technology was founded in 2023 as a spinout from Lancaster University’s Physics Department by James Ashforth‑Pook, Dr Peter Hodgson (CTO), and Prof. Manus Hayne.

Quinas Technology states that it is establishing a Maltese presence as part of a broader international growth strategy spanning the UK, …

2 days назад @ eu-startups.com
Tallinn’s Skeleton Technologies announces €33 million first close of pre-IPO round as it prepares for 2027 US IPO
Tallinn’s Skeleton Technologies announces €33 million first close of pre-IPO round as it prepares for 2027 US IPO Tallinn’s Skeleton Technologies announces €33 million first close of pre-IPO round as it prepares for 2027 US IPO

Skeleton Technologies, a Tallinn-based AI infrastructure and grid power systems provider, today announced the first close of a larger funding round at €33 million.

Taavi Madiberk, CEO and co-founder of Skeleton Technologies, said, “As AI infrastructure continues to scale, reliable, high-performance power solutions have become critical.

We view Skeleton’s technology as a critical solution for enabling the next generation of AI infrastructure.

By backing Skeleton Technologies, we are connecting their breakthrough energy solutions with Taiwan’s robust AI data centre supply chain.

According to Skeleton, its solutions enable AI data centres to operate with higher reliability, improved energy eff…

2 days, 20 hours назад @ eu-startups.com
London-based CodeWords raises €7.6 million to help businesses run on AI autopilot
London-based CodeWords raises €7.6 million to help businesses run on AI autopilot London-based CodeWords raises €7.6 million to help businesses run on AI autopilot

CodeWords, a London-based AI agent platform that lets users run their business on autopilot, has raised a €7.6 million ($9 million) Seed round to fund the expansion of its go-to-market and engineering teams.

Founded by Aymeric Zhuo and Osman Ramadan, CodeWords builds Cody, an AI agent that learns about users’ businesses and acts before they ask.

According to the company, unlike most AI tools, CodeWords doesn’t wait to be told what to do.

At the core of the platform is Cody, CodeWords’ AI agent.

Cody learns continuously — so instead of starting from scratch every time, it’s already thinking about what you need next,” said Osman Ramadan, co-founder, CodeWords.

2 days, 22 hours назад @ eu-startups.com
Stockholm’s Pit exits stealth with €13.6 million a16z-led funding to offer “AI product teams as a service”
Stockholm’s Pit exits stealth with €13.6 million a16z-led funding to offer “AI product teams as a service” Stockholm’s Pit exits stealth with €13.6 million a16z-led funding to offer “AI product teams as a service”

Pit, a Stockholm-based AI startup aiming to replace the patchwork of spreadsheets, inboxes, and rigid SaaS tools that run enterprise operations today, announced its public launch alongside €13.6 million ($16 million) in funding.

This enables teams to move faster, operate more efficiently, and scale without the constraints of legacy systems, says the company.

The company explains that its platform is built to transform a business need—covering operations, finance, and customer workflows—into fully deployed, governed software.

Explaining how it’s different from traditional low-code tools or AI copilots, Pit states that it outputs real software running real operations, not prototypes or experi…

3 days назад @ eu-startups.com
France’s OpsMill raises €11.9 million to help enterprises prepare infrastructure data for AI and automation
France’s OpsMill raises €11.9 million to help enterprises prepare infrastructure data for AI and automation France’s OpsMill raises €11.9 million to help enterprises prepare infrastructure data for AI and automation

OpsMill, a Paris-based infrastructure data management company, has raised €11.9 million ($14 million) in Series A funding to grow its engineering and product teams and continue developing data-centric AIOps solutions.

The company aims to transform fragmented IT data into a trusted foundation for AI and automation.

Julien-David Nitlech, Managing Partner, IRIS, said, “The race to adopt AI in enterprise infrastructure is real, but most organisations are trying to build on foundations that were never designed for it.

OpsMill is solving the problem that everyone else is working around: without clean, structured, trustworthy infrastructure data, AI-driven operations simply cannot function at scal…

3 days, 1 hour назад @ eu-startups.com
Swiss startup Moonlight AI raises €2.8 million to turn routine blood and cytology imaging into genomic insights
Swiss startup Moonlight AI raises €2.8 million to turn routine blood and cytology imaging into genomic insights Swiss startup Moonlight AI raises €2.8 million to turn routine blood and cytology imaging into genomic insights

Moonlight AI, a Swiss startup building image analysis software for clinical-grade diagnostics, has closed a €2.8 million ($3.3 million) Seed funding round.

Founded in 2022, Moonlight AI specialises in AI-driven diagnostics.

Moonlight AI claims to solve this by using computer vision to detect genomic biomarkers and complex disease signatures directly from routine imaging of blood and cytology smears.

Moonlight’s AI-based diagnostics software integrates with the diagnostic lab’s imaging hardware to complement and triage molecular testing.

Dr Stefan Habringer, Chief Medical Officer and co-founder of Moonlight AI, “The success of AI‑based diagnostics depends fundamentally on the quality and div…

3 days, 19 hours назад @ eu-startups.com
London-based Laka sets M&A strategy in motion with acquisition of VeloLife’s bike insurance business
London-based Laka sets M&A strategy in motion with acquisition of VeloLife’s bike insurance business London-based Laka sets M&A strategy in motion with acquisition of VeloLife’s bike insurance business

With this acquisition, Laka aims to boost its presence in the UK bike dealer market.

Tobias Taupitz, CEO and co-founder of Laka, said, “This acquisition is a key milestone in our bike dealer strategy – and a clear signal that our M&A pipeline is now moving.

Laka’s main offering is collective-driven insurance, with its flagship product being bike, e-bike and e-cargo bike insurance, alongside other products such as personal liability, health and recovery, and solutions for commercial partners.

It follows the integration of three prior acquisitions: French e-bike insurance broker Cylantro (2023), CoverCloud’s UK bike insurance renewal rights (2024), and Luko’s e-scooter portfolio, acquired fro…

3 days, 21 hours назад @ eu-startups.com
Exclusive: Spain’s Humara raises €1.2 million to cut waste plant design cycles from months to days with AI SaaS
Exclusive: Spain’s Humara raises €1.2 million to cut waste plant design cycles from months to days with AI SaaS Exclusive: Spain’s Humara raises €1.2 million to cut waste plant design cycles from months to days with AI SaaS

The company states that its software simulates 82 distinct waste materials through real separation equipment, compressing design cycles from roughly four months to a matter of days.

The company’s two main services are Humara Design and Humara Operate.

Humara Design focuses on physics-based plant design, providing features like mass balance, equipment sizing, scenario comparison, and deliverables that can be exported, all tailored for engineering teams.

We believe this team will set the operating standard for waste plants across Europe and beyond.”With the new funding, the company aims to expand Humara Design into more European and Latin American markets and waste streams.

It will also roll …

3 days, 23 hours назад @ eu-startups.com
French AI real estate startup Davis raises €4.6 million and unveils Gaudi-1 for automated architectural generation
French AI real estate startup Davis raises €4.6 million and unveils Gaudi-1 for automated architectural generation French AI real estate startup Davis raises €4.6 million and unveils Gaudi-1 for automated architectural generation

Davis, a Paris-based AI-native real estate company accelerating early-stage development and architectural design, today announced a €4.6 million ($5.5 million) pre-Seed round.

Alongside the funding, the company is also introducing Gaudi-1, its first model for generating architectural designs under real-world constraints.

“At the core of Davis’ technology is a new approach to generative modelling for the built environment.

The French startup is also introducing Gaudi-1, its first proprietary model for automated architectural generation under regulatory constraints.

It is also planning to expand research, accelerate hiring and continue to verticalise the real estate process.

4 days, 1 hour назад @ eu-startups.com
QuantWare raises €152 million in the largest private round for a dedicated quantum processor company
QuantWare raises €152 million in the largest private round for a dedicated quantum processor company QuantWare raises €152 million in the largest private round for a dedicated quantum processor company

QuantWare, a Delft-based industrial quantum processor company, today announced a €152 million ($178 million) Series B round following the announcement of VIO-40K, a quantum processor architecture for 10,000 qubits, 100x larger than the state of the art today.

This allegedly marks the largest private round raised by a dedicated quantum processor company to date.

“In superconducting quantum computing, scale is increasingly constrained by routing, packaging, and manufacturability – not just qubit design,” says Kike Miralles, Intel Capital.

Its proprietary VIO technology – a modular Quantum Processor Architecture – allows the creation of the world’s most powerful quantum processors that provide…

4 days, 15 hours назад @ eu-startups.com
WaiV Robotics emerges from stealth with €6.4 million to develop autonomous UAV landing infrastructure
WaiV Robotics emerges from stealth with €6.4 million to develop autonomous UAV landing infrastructure WaiV Robotics emerges from stealth with €6.4 million to develop autonomous UAV landing infrastructure

WaiV Robotics, a British maritime autonomous infrastructure developer, has raised €6.4 million ($7.5 million) in Seed funding as it emerges from stealth in order to introduce their fully automatic landing and takeoff platform designed to enable reliable VTOL (vertical take-off and landing) drone operations even in high sea states.

“For drones to become a reliable part of offshore operations, the missing piece isn’t the aircraft, it’s the infrastructure around it,” says Johnny Carni, Founder and CEO of WaiV Robotics.

WaiV Robotics’ Seed round sits within a 2026 dataset showing continued funding for European drone, robotics, autonomy and unmanned-systems companies, spanning maritime operation…

4 days, 18 hours назад @ eu-startups.com
Paris-based Lithosquare raises €21.3 million to accelerate transition-critical mineral discovery with Geology AI
Paris-based Lithosquare raises €21.3 million to accelerate transition-critical mineral discovery with Geology AI Paris-based Lithosquare raises €21.3 million to accelerate transition-critical mineral discovery with Geology AI

Lithosquare, a Paris-based startup that deploys Geology AI and geologist-led intelligence to amplify and accelerate the discovery of transition-critical minerals, has raised €21.3 million ($25 million) in fresh funding.

The company “radically” accelerates mineral exploration by combining foundational AI, geological expertise, and real-world data.

Mineral exploration today is still slow, highly manual, and has low success rates.

Unlike existing AI tools that apply pattern-recognition models to geological data, the platform leverages a deep understanding of metal deposit formation.

Lithosquare is not solving a niche geology problem: it’s removing a supply constraint that affects every sector …

4 days, 19 hours назад @ eu-startups.com
Tech.eu Tech.eu
последний пост 1 day, 16 hours назад
Eleven Labs expands Series D to $550M+, DeepL to axe 250 staff, and key trends and investments in April
Eleven Labs expands Series D to $550M+, DeepL to axe 250 staff, and key trends and investments in April Eleven Labs expands Series D to $550M+, DeepL to axe 250 staff, and key trends and investments in April

This week, we tracked more than 65 tech funding deals worth over €1.4 billion and over 5 exits, M&A transactions, rumours, and related news stories across Europe.

This week, we tracked more than 65 tech funding deals worth over €1.4 billion and over 5 exits, M&A transactions, rumours, and related news stories across Europe.

We also released our monthly report for April (paid subscriber and free versions)If email is more your thing, you can always subscribe to our newsletter and receive a more robust version of this round-up delivered to your inbox.

Either way, let's get you up to speed.

💸 Notable and big funding rounds🇬🇧 ElevenLabs adds BlackRock, Nvidia and Jamie Foxx to $550M+ Series D🇳🇱 …

1 day, 16 hours назад @ tech.eu
Front Ventures raises €5M to back defence tech innovation in Ukraine
Front Ventures raises €5M to back defence tech innovation in Ukraine Front Ventures raises €5M to back defence tech innovation in Ukraine

The company backs early-stage defence technology companies developing operationally relevant systems in Ukraine and Sweden.

Front Ventures invests across software, drone systems, communications, and critical defence supply chains, with a particular focus on companies that have already developed working prototypes and are ready to scale.

Front Ventures is also an approved investor in Brave1, the Ukrainian government’s defence tech platform connecting innovators with investors and the military.

Jonas Malmgren, CEO of Front Ventures, said:We’re seeing a generation of defence companies that have effectively skipped the lab phase because their products have already been tested in operational env…

1 day, 16 hours назад @ tech.eu
CarCollect secures backing from Main Capital to scale automotive remarketing platform
CarCollect secures backing from Main Capital to scale automotive remarketing platform CarCollect secures backing from Main Capital to scale automotive remarketing platform

Dutch B2B automotive remarketing software platform CarCollect has received funding from Main Capital Partners.

Founded in 2012, CarCollect offers an integrated remarketing SaaS platform that combines its Trade, Transport, and Stock management offerings into a mission-critical solution covering vehicle intake, pricing, sales execution, transport coordination, settlement, and stock management.

CarCollect’s platform digitises the end-to-end used-vehicle remarketing workflow for branded dealers, leasing companies, universal dealers, and fleet and rent companies.

Built on a modern, cloud-native multi-tenant SaaS architecture, the platform supports 15 languages, 10 currencies, and is used by 14,0…

1 day, 20 hours назад @ tech.eu
European Tech.eu Pulse: key trends and investment in April (free report)
European Tech.eu Pulse: key trends and investment in April (free report) European Tech.eu Pulse: key trends and investment in April (free report)

At Tech.eu, we keep track of the investment landscape with data-driven insights.

Our Tech.eu Insiders enjoy unlimited, exclusive access to all our content, including market-intelligence analysis, reports, articles, and useful insights on tech trends and developments.

But we know that a lot of folks interested in tech might not have the funds for a subscription.

In response, we're offering compact versions of our monthly reports to all of our readers.

Our versions offer a glimpse into the valuable insights provided by our monthly reports, covering key investment trends, notable company activities, and emerging industry sectors.

1 day, 20 hours назад @ tech.eu
Europe’s tech funding cools in April as investors grow more selective
Europe’s tech funding cools in April as investors grow more selective Europe’s tech funding cools in April as investors grow more selective

April data points to a more selective European tech funding environment, with stable deal flow but a noticeable drop in capital compared to March.

The ecosystem recorded 290 funding deals and €5.1 billion in total capital raised, compared to 292 deals and €7.5 billion in February, representing declines of around 0.7 per cent and a 32 per cent decline, respectively.

1 day, 20 hours назад @ tech.eu
Europe’s second chance: The rise of a new battery ecosystem
Europe’s second chance: The rise of a new battery ecosystem Europe’s second chance: The rise of a new battery ecosystem

Cylib (Germany)Cylib deeptech scale-up on a mission to revolutionise battery recycling and secure a circular future for Europe.

When electric cars reach their end of life, taking them apart is still mostly manual, slow, expensive, and dangerous (especially due to high-voltage battery systems).

Battery energy storageBattery energy storage (BESS) is a way to store electricity in batteries so it can be used later, rather than immediately when it’s generated.

Check out our earlier interview with Nikolas Samios, Managing Director, PT1, to understand how battery storage has become a rapidly evolving asset class.

ACCURE battery intelligence (Germany)ACCURE Battery Intelligence builds AI-powered so…

1 day, 22 hours назад @ tech.eu
German AI translation startup DeepL to axe 250 staff
German AI translation startup DeepL to axe 250 staff German AI translation startup DeepL to axe 250 staff

DeepL, the German AI translation startup, is cutting around 250 staff, about a quarter of its headcount, saying it was moving to smaller teams so it is able to compete amid rapid AI advancements, its CEO said today.

Posting on LinkedIn, Jarek Kutylowksi, CEO and founder, said the cuts at DeepL, which employs over 1,000 people globally, were a “deliberate structural choice about how DeepL needs to operate to remain a global AI leader”.

Kutylowksi said he and his management team had been reviewing how DeepL could best operate as a global AI firm amid fast improvements in AI.

He added: "In practice, this means transforming how DeepL works from the inside out, with AI embedded into every layer …

2 days, 17 hours назад @ tech.eu
Meatly raises £10.4M to build Europe’s largest cultivated meat bioreactor facility in London
Meatly raises £10.4M to build Europe’s largest cultivated meat bioreactor facility in London Meatly raises £10.4M to build Europe’s largest cultivated meat bioreactor facility in London

Cultivated meat pioneer Meatly, Europe’s first company to sell cultivated meat, has today announced that it has raised £10.4 million in Series A funding.

Since launching in 2022, Meatly has solved the key technical cost challenges facing the cultivated meat industry, accelerating the path to scalable, affordable production.

In 2024, Meatly announced it had reduced the cost of its chemically defined protein-free medium to an industry-leading £0.22/l, and in 2025, announced it had reduced the cost of bioreactors by ~10x.

This new funding will enable Meatly to build a 20,000-litre bioreactor facility in London, which is the largest of its kind in Europe.

“Meatly has one focus: to make commerci…

2 days, 18 hours назад @ tech.eu
Meet the French startup fixing the guardrail gap holding enterprise AI back
Meet the French startup fixing the guardrail gap holding enterprise AI back Meet the French startup fixing the guardrail gap holding enterprise AI back

French company Giskard is launching Giskard Guards, Europe's first independent sovereign guardrail platform for enterprise AI agents.

Well, simply put, AI agents are built on LLMs, and those models undergo training and reinforcement learning to make them helpful.

Further, many existing AI guardrails are ill-suited to the rise of chatbots and AI agents, as they were originally designed for social media moderation.

Even before today’s launch, the company's platform for testing enterprise AI agents was used by Mistral, Google DeepMind, BNP Paribas, AXA, Doctolib, among others.

“And depending on how the question is framed, the responses can become dangerous.”Further, conversational AI systems m…

2 days, 19 hours назад @ tech.eu
Healthtech: 10 companies that raised the most in 2025
Healthtech: 10 companies that raised the most in 2025 Healthtech: 10 companies that raised the most in 2025

In 2025, Europe’s healthtech ecosystem showed strong funding momentum, with capital concentrated in large rounds across biotech, medtech, digital health, and AI-enabled healthcare.

Switzerland also showed strong depth, particularly in biotech and medtech, while Germany, the Netherlands, France, Spain, and the Nordics remained important contributors.

By round type, the market was led by a mix of large growth rounds and strong Series A and Series B activity.

Overall, 2025 pointed to a maturing European healthtech market, where capital flowed to companies with clear clinical, technological, or commercial validation, while early-stage innovation remained active across a broad range of European …

2 days, 19 hours назад @ tech.eu
UK quantum outfit Quantum Motion run on silicon chips raises $160M
UK quantum outfit Quantum Motion run on silicon chips raises $160M UK quantum outfit Quantum Motion run on silicon chips raises $160M

The Series C funding round in Quantum Motion was co-led by US VC DCVC and Spanish deeptech investor Kembara with participation from British Business Bank and Firgun.

Quantum Motion, which has raised over $200m to date, said it’s now the UK’s best-funded quantum computing company.

The startup says that using silicon chips means it can build quantum computers more cheaply and more energy-efficiently than rivals.

A full-stack quantum computer includes all layers required to perform quantum computing, including a Quantum Processing Unit (QPU), a user interface, and a control stack compatible with standard quantum computing software.

Doctor James Palles-Dimmock, CEO of Quantum Motion, said: “Tod…

2 days, 20 hours назад @ tech.eu
Investing in Europe: Private Equity Activity 2025 Report highlights strong fundraising and investment performance
Investing in Europe: Private Equity Activity 2025 Report highlights strong fundraising and investment performance Investing in Europe: Private Equity Activity 2025 Report highlights strong fundraising and investment performance

Invest Europe, the association representing Europe’s private equity, venture capital and infrastructure sectors, has released Investing in Europe: Private Equity Activity 2025, its annual report examining performance across the region.

Buyouts continued to drive activity, while venture investment showed signs of recovery, exceeding its longer-term average.

The report’s findings highlight a resilient private capital market, with both fundraising and investment reaching their second-highest levels on record.

Venture capital investment increased to €20 billion, 20 per cent above the five-year average.

Commenting on the findings, Eric de Montgolfier, CEO of Invest Europe, said:Private equity an…

2 days, 21 hours назад @ tech.eu
SWEBAL raises €30M to build Sweden’s first TNT facility and strengthen NATO ammunition supply
SWEBAL raises €30M to build Sweden’s first TNT facility and strengthen NATO ammunition supply SWEBAL raises €30M to build Sweden’s first TNT facility and strengthen NATO ammunition supply

Sweden Ballistics (SWEBAL), the Swedish defence manufacturing company driving domestic trinitrotoluene (TNT) production to strengthen NATO resilience, today announces a €30 million funding round to complete construction of its TNT manufacturing facility in Nora, Sweden.

SWEBAL is dedicated to strengthening NATO's resilience and enhancing European security through sustainable, large-scale ammunition production.

Founded in 2024, SWEBAL is committed to addressing supply chain challenges, including the limited production of critical materials like TNT.

Pär Svärdson, founder of Apotea, Sweden’s largest online pharmacy, and Adlibris, Sweden's largest online bookshop, is also an investor.

Accordin…

2 days, 21 hours назад @ tech.eu
Belgian AI startup Tekst raises €11.5 million to tackle the bottleneck holding back enterprise AI
Belgian AI startup Tekst raises €11.5 million to tackle the bottleneck holding back enterprise AI Belgian AI startup Tekst raises €11.5 million to tackle the bottleneck holding back enterprise AI

Ghent-based Tekst has closed an €11.5 million Series A led by US venture firm Elephant.

Tekst was founded in Ghent in 2022 by Wouter Janssen (CEO) and Tiebe Parmentier (CTO) and is taking aim at one of the biggest headaches in enterprise AI.

Where traditional tools optimise pieces of a process, Tekst goes after the whole thing — the messy, end-to-end work that runs the back office: quotes, orders, claims, customer service.

According to Wouter Janssen, CEO and co-founder of Tekst, the processes that actually run a business aren't written down anywhere.

Lead image: Tiebe Parmentier (left) and Wouter Janssen (right).

2 days, 22 hours назад @ tech.eu
One-time treatment with lasting effects as Sedivention advances obesity therapy with €2.9M funding
One-time treatment with lasting effects as Sedivention advances obesity therapy with €2.9M funding One-time treatment with lasting effects as Sedivention advances obesity therapy with €2.9M funding

Sedivention, a Germany-based medtech startup, has raised €2.9 million in a seed funding round led by bmp Ventures alongside the IBG funds.

Additional investors include the strategic investment arm of a global medtech company, High-Tech Gründerfonds (HTGF), superangels, and Cambridge Ventures.

The company is developing a minimally invasive, one-time outpatient therapy for the treatment of obesity, a condition expected to affect more than one billion people globally in the coming years.

Existing treatment options, including bariatric surgery and drug therapies, remain limited due to their invasiveness, cost, or long-term dependency.

In the long term, Sedivention aims to replace highly invasiv…

2 days, 22 hours назад @ tech.eu
TechCrunch: Europe TechCrunch: Europe
последний пост 1 month назад
The Xiaomi 17 Ultra has some impressive add-ons that make snapping photos really fun
The Xiaomi 17 Ultra has some impressive add-ons that make snapping photos really fun

The Xiaomi 17 Ultra gives you a ton of options to play around with images, including preset filters and hardware add-ons.

1 month назад @ techcrunch.com
Europe’s cyber agency blames hacking gangs for massive data breach and leak
Europe’s cyber agency blames hacking gangs for massive data breach and leak

CERT-EU blamed the cybercrime group TeamPCP for the recent hack on the European Commission, and said the notorious ShinyHunters gang was responsible for leaking the stolen data online.

1 month назад @ techcrunch.com
Air Street becomes one of the largest solo VCs in Europe with $232M fund
Air Street becomes one of the largest solo VCs in Europe with $232M fund

London’s Air Street Capital has raised a large Fund III with eyes locked on backing early-stage European and North American AI companies.

1 month, 2 weeks назад @ techcrunch.com
European Parliament blocks AI on lawmakers’ devices, citing security risks
European Parliament blocks AI on lawmakers’ devices, citing security risks

EU lawmakers found their government-issued devices were blocked from using the baked-in AI tools, amid fears that sensitive information could turn up on the U.S. servers of AI companies.

2 months, 3 weeks назад @ techcrunch.com
One of Europe’s largest universities knocked offline for days after cyberattack
One of Europe’s largest universities knocked offline for days after cyberattack

An alleged ransomware attack has taken down the systems of the Sapienza University of Rome.

3 months назад @ techcrunch.com
Ireland proposes new law allowing police to use spyware
Ireland proposes new law allowing police to use spyware

The Irish government announced that it wants to pass a law that would grant police more surveillance powers, such as using spyware to fight serious crime, while aiming to protect the privacy rights of its citizens.

3 months, 2 weeks назад @ techcrunch.com
The European startup market’s data doesn’t match its energy — yet
The European startup market’s data doesn’t match its energy — yet

Europe's startup market hasn't produced meaningful numbers but there is reason to believe the data will start to change.

4 months, 2 weeks назад @ techcrunch.com
Apple adds 650 megawatts of renewables in Europe with more coming in China
Apple adds 650 megawatts of renewables in Europe with more coming in China

Apple is adding renewable power to offset customer charging and support its operations, including third-party manufacturing in China.

6 months, 3 weeks назад @ techcrunch.com
European airports still dealing with disruptions days after ransomware attack
European airports still dealing with disruptions days after ransomware attack

Four major European airports in Berlin, Brussels, Dublin, and London continue to have flight delays due to a cyberattack on Collins Aerospace, a provider of check-in systems.

7 months, 2 weeks назад @ techcrunch.com
EU cyber agency confirms ransomware attack causing airport disruptions
EU cyber agency confirms ransomware attack causing airport disruptions

A cyberattack targeting Collins Aerospace, a provider of airport check-in systems, sparked delays and disrupted flights across Europe over the weekend.

7 months, 2 weeks назад @ techcrunch.com
Dawn Capital’s Shamillah Bankiya breaks down the state of the Euro venture market
Dawn Capital’s Shamillah Bankiya breaks down the state of the Euro venture market

Dawn Capital’s latest partner, Shamillah Bankiya, stopped by Equity this week to talk about the European landscape and the biggest misconceptions Americans have about the European startup world.

7 months, 3 weeks назад @ techcrunch.com
Why European founders are winning (and it’s not about working less)
Why European founders are winning (and it’s not about working less)

Europe’s startup scene is having a moment, with European unicorns multiplying and American VCs setting up shop across the pond. But while European funding dominates the early stages, late-stage capital still flows primarily from the U.S. So what does this mean for European founders, and how is the continent carving out its own identity in […]

7 months, 3 weeks назад @ techcrunch.com
Lyft and China’s Baidu look to bring robotaxis to Europe next year
Lyft and China’s Baidu look to bring robotaxis to Europe next year

The companies want to launch the robotaxi services in Germany and the U.K. first, pending regulatory approval.

9 months, 1 week назад @ techcrunch.com