Вастрик
👉 vas3k.ru
Веду блог о технологиях, пишу код, отвратительно путешествую и фотографирую это
Hacker News Hacker News
последний пост 44 минуты назад
Bets on US-Iran ceasefire show signs of insider knowledge, say experts
Bets on US-Iran ceasefire show signs of insider knowledge, say experts Bets on US-Iran ceasefire show signs of insider knowledge, say experts

Several accounts on the online platform Polymarket laid bets on a US-Iran ceasefire over the weekend that appeared to show signs of insider knowledge, according to experts.

Eight accounts, all newly created around 21 March, bet a total of nearly $70,000 (£52,000) on there being a ceasefire.

It also placed a winning bet on those strikes, which raised similar questions around insider trading, and so far has bet on nothing else.

The wallets “definitely [look like] someone with some degree of inside info,” said Ben Yorke, formerly a researcher with CoinTelegraph, now building an AI trading platform called Starchild.

Polymarket accounts are anonymous, and it is extremely difficult to trace the o…

44 минуты назад @ theguardian.com
American Aviation Is Near Collapse
American Aviation Is Near Collapse American Aviation Is Near Collapse

Checkpoints are staffed by the Transportation Security Administration, which is part of the Department of Homeland Security.

Modern air travel was a classic postwar American triumph: a big, complicated system built with lots of money and careful tracking.

(Some airports have begged people to donate gift cards or food for TSA agents.)

More broadly, the administration is deploying ICE agents outside of their training in a dubious attempt to ease a political crisis created by ICE agents who had been deployed outside of their standard role in Minnesota.

(Trump said today that he would deploy the National Guard to assist if ICE agents could not alleviate wait times.)

58 минут назад @ theatlantic.com
Local Stack Archived their GitHub repo and requires an account to run
Local Stack Archived their GitHub repo and requires an account to run Local Stack Archived their GitHub repo and requires an account to run

With LocalStack, you can run your AWS applications or Lambdas entirely on your local machine without connecting to a remote cloud provider!

Whether you are testing complex CDK applications or Terraform configurations, or just beginning to learn about AWS services, LocalStack helps speed up and simplify your testing and development workflow.

LocalStack supports a growing number of AWS services, like AWS Lambda, S3, DynamoDB, Kinesis, SQS, SNS, and many more!

InstallThe quickest way to get started with LocalStack is by using the LocalStack CLI.

RunningYou can run LocalStack through the following options:UsageTo start using LocalStack, check out our documentation.

2 часа назад @ github.com
I tried Karpathy's Autoresearch on an old research project
I tried Karpathy's Autoresearch on an old research project

Comments

2 часа назад @ ykumar.me
The machine didn't take your craft. You gave it up
The machine didn't take your craft. You gave it up The machine didn't take your craft. You gave it up

We are told that he reluctantly, even tragically, set aside the chisel and picked up the machine.

The real work of software development, the part that makes someone valuable, is knowing what should exist in the first place, and why.

But don't fool yourself any further: typing code that was never the essence of the craft.

Just as higher level languages didn't destroy programming, nad compilers didn't destroy engineering, and cloud didn't destroy infrastructure work, LLMs do not destroy coding.

The domain of what can be built is growing and leverage of human reason is increasing.

2 часа назад @ davidabram.dev
AI Risks "Hypernormal" Science
AI Risks "Hypernormal" Science AI Risks "Hypernormal" Science

But with today’s AI systems, one might wonder if such a map is so absurd after all.

To design AI for disruptive science, we would need to understand what “rules” make one paradigm better than another, and build systems that optimize for these.

AI could repeat this pattern at a larger scale — generating faster results within the existing paradigm, while the structural conditions for disruptive science remain unchanged or worsen.

But if we treat AI for disruptive science as a deliberate research program, we have a better chance of building the capabilities that paradigm shifts require.

“Designing AI for Disruptive Science.” Asimov Press (2026).

2 часа назад @ asimov.press
US govt pays TotalEnergies nearly $1B to stop US offshore wind projects
US govt pays TotalEnergies nearly $1B to stop US offshore wind projects US govt pays TotalEnergies nearly $1B to stop US offshore wind projects

RONALDO SCHEMIDT / AFPThe United States and TotalEnergies on Monday, March 23 signed an agreement to end the French company's offshore US wind farm projects and redirect those funds towards fossil fuel production, with the US interior secretary saying the deal was worth "nearly $1 billion."

"We're partnering with TotalEnergies to unleash nearly $1 billion that was tied up in a lease deposit that was directed towards the prior administration's subsidies that were pushing expensive weather-dependent offshore wind," said Burgum.

French giant TotalEnergies had four gigawatts (GW) of offshore projects under development, including 3 GW for the New York Bight project and 1 GW in North Carolina.

In…

3 часа назад @ lemonde.fr
Unix philosophy is dead Long live something else?
Unix philosophy is dead Long live something else?

Comments

3 часа назад @ sdomi.pl
Orbán's top opponent says Hungary's alleged Russian backchannel 'treason'
Orbán's top opponent says Hungary's alleged Russian backchannel 'treason'

Comments

4 часа назад @ thetelegraph.com
Is it a pint?
Is it a pint? Is it a pint?

Years of countless pours led me to the question “Is this really a pint?

They say so, but really?” The findings gave rise to the Pint Patrol, a grassroots movement that could change how Americans are served their beer, wine, and cider—toward righteous honesty.

This article documents the initial discovery and the inception of the movement.

4 часа назад @ isitapint.com
Show HN: Threadprocs – executables sharing one address space (0-copy pointers)
Show HN: Threadprocs – executables sharing one address space (0-copy pointers) Show HN: Threadprocs – executables sharing one address space (0-copy pointers)

threadprocsThis repository contains experimental code for thread-like processes, or multiple programs running in a shared address space.

demo.mp4Elevator pitchThe server utility "hosts" a virtual address space, and by using launcher to start programs, those launched programs coexist in the hosted address space.

Applications can share pointers in the virtual address space through some out-of-band mechanism (Demo uses copy/paste, dummy_server/client uses sockets, libtproc provides server-global scratch space), and then directly dereference those pointers, as they're valid in the shared address space.

(and ) cannot be used reliably, because they are "address space global" to the kernel, and pr…

5 часов назад @ github.com
Cyber.mil serving file downloads using TLS certificate which expired 3 days ago
Cyber.mil serving file downloads using TLS certificate which expired 3 days ago Cyber.mil serving file downloads using TLS certificate which expired 3 days ago

Comments

5 часов назад @ cyber.mil
An incoherent Rust
An incoherent Rust An incoherent Rust

A rust library can be compiled into a dynamic library and then dynamically linked to without knowing it was a rust crate.

Without it overlapping trait implementations wouldn’t be very useful:impl Clone for MyType { fn clone ( & self) -> Self { loop {} } } impl Clone for MyType { fn clone ( & self) -> Self { MyType(self.

I don’t think Rust made a mistake by having coherence but I do think we need to seriously consider how we can move towards an incoherent Rust without sacrificing the benefits coherence has given us.

( "inherent" ); } } trait Trait { fn assoc ( & self); } impl Trait for Foo { fn assoc ( & self) { dbg!

Go BackMaybe Bounds on ADTs#In the post On always-applicable trait impls - …

5 часов назад @ boxyuwu.blog
If Dspy is so great, why isn't anyone using it?
If Dspy is so great, why isn't anyone using it? If Dspy is so great, why isn't anyone using it?

4.7M DSPy monthly downloads 222M LangChain monthly downloadsFor a framework that promises to solve the biggest challenges in AI engineering, this gap is suspicious.

Still, companies using Dspy consistently report the same benefits.

But I keep watching the same thing happen: people end up implementing a worse version of Dspy.

Let’s walk through how virtually every team ends up implementing their own “Dspy at home”.

And generally: your data will shift over time as you get new users and those users start using your platform more completely.

6 часов назад @ skylarbpayne.com
Study: 'Security Fatigue' May Weaken Digital Defenses
Study: 'Security Fatigue' May Weaken Digital Defenses

Comments

6 часов назад @ albany.edu
Hacker News Hacker News
последний пост 44 минуты назад
iPhone 17 Pro Demonstrated Running a 400B LLM
iPhone 17 Pro Demonstrated Running a 400B LLM

Comments

6 часов назад @ twitter.com
Cyberattack on vehicle breathalyzer company leaves drivers stranded in the US
Cyberattack on vehicle breathalyzer company leaves drivers stranded in the US Cyberattack on vehicle breathalyzer company leaves drivers stranded in the US

A cyberattack on a U.S. vehicle breathalyzer company has left drivers across the United States stranded and unable to start their vehicles.

The company, Intoxalock, says on its website that it is “currently experiencing downtime” after a cyberattack on March 14.

Intoxalock spokesperson Rachael Larson confirmed to TechCrunch that the company had been hit by a cyberattack.

Drivers posting on Reddit say that cars are unable to start if they miss a calibration, effectively locking drivers out of their vehicles.

According to local news reports across Maine, drivers are experiencing lockouts and some have been unable to start their vehicles.

7 часов назад @ techcrunch.com
America tells private firms to "hack back"
America tells private firms to "hack back"

Comments

7 часов назад @ economist.com
Fyn: An uv fork with new features, bug fixes, stripped telemetry
Fyn: An uv fork with new features, bug fixes, stripped telemetry Fyn: An uv fork with new features, bug fixes, stripped telemetry

fyn is an independent Python package manager built on uv's foundation, with telemetry removed, new features added, and long-standing bugs fixed.

$ fyn lock Resolved 2 packages in 0.33ms $ fyn sync Resolved 2 packages in 0.70ms Checked 1 package in 0.02msTask runnerDefine tasks in your pyproject.toml and run them with fyn run :[ tool .

, description = " Format code " } check = { chain = [ " lint " , " test " ], description = " Lint then test " }$ fyn run test # runs pytest -xvs $ fyn run test -- -k mytest # extra args are passed through $ fyn run --list-tasks Available tasks: check Lint then test format Format code lint ruff check .

Run a tool in an ephemeral environment using fynx (an alias…

8 часов назад @ github.com
Attractive students no longer receive better results as classes moved online
Attractive students no longer receive better results as classes moved online Attractive students no longer receive better results as classes moved online

Please contact our support team for more information and provide the details below.

Reference number: 9e0d4653499a5d619e0d4653499a5d61 IP Address: 23.88.109.523.88.109.5::CLOUDFLARE_ERROR_1000S_BOX::

9 часов назад @ sciencedirect.com
Jazz CRJ9 at New York on Mar 22nd 2026, collision with fire truck on runway
Jazz CRJ9 at New York on Mar 22nd 2026, collision with fire truck on runway Jazz CRJ9 at New York on Mar 22nd 2026, collision with fire truck on runway

Comments

10 часов назад @ avherald.com
GitHub appears to be struggling with measly three nines availability
GitHub appears to be struggling with measly three nines availability GitHub appears to be struggling with measly three nines availability

Forget five nines – the way things are going, one nine is looking like an ambitious goal.

The Microsoft tentacle admitted it was having problems with "some GitHub services" at 1554 UTC before it confessed to notification delays of "around 50 minutes".

From 1629 UTC on February 9 to 0957 UTC on February 10, GitHub reported problems in Copilot policy propagation for some users.

GitHub changed its status page a while ago, making it harder to visualize the availability of its services.

The travails of GitHub customers highlight the need to plan for downtime as well as uptime.

10 часов назад @ theregister.com
I Built an AI Receptionist for a Luxury Mechanic Shop – Part 1
I Built an AI Receptionist for a Luxury Mechanic Shop – Part 1 I Built an AI Receptionist for a Luxury Mechanic Shop – Part 1

Embedded the knowledge base into MongoDB Atlas — Each document gets converted into a 1024-dimensional vector using Voyage AI ( voyage-3-large ).

Picked the right voice — Vapi integrates with ElevenLabs and gives you access to a huge library of AI voices.

Getting this right mattered more than I expected; a great AI response delivered in the wrong voice still feels off.

Tested the escalation flow — When a caller asks something that isn’t in the knowledge base, the AI doesn’t guess.

Ground it in a real knowledge base, constrain it to only answer from that base, and design the fallback flow before anything else.

10 часов назад @ itsthatlady.dev
Migrating to the EU
Migrating to the EU Migrating to the EU

This “pay what you want” provider offers a shell account, web hosting, email hosting, and more at fair prices.

WebNow that I’m already using Uberspace for my email and calendar, I was able to host this website there as well.

I had previously used Nginx, but Uberspace hosts on Apache, where the SSI implementation is handled slightly differently.

Some of the reasons were the prices, reviews, the location in Germany, and the availability of .is domains.

However, I can now use alternative app stores, which allows me to install and use apps like NewPipe.

10 часов назад @ rz01.org
Digs: Offline-first iOS app to browse your Discogs vinyl collection
Digs: Offline-first iOS app to browse your Discogs vinyl collection

The official app is quite full of features, but some basics were missing for me: folder navigation, offline mode.

I wanted something simpler, fast and offline to dig through my records, organized the way I already organize them on my shelves.

What it doesIt syncs your entire collection to your phone and lets you browse it offline.

The techIt’s a React Native app built with Expo and TypeScript.

It starts by fetching your folder structure, then does a paginated download of every release in your collection – artist, title, year, format, thumbnail.

12 часов назад @ lustin.fr
Dataframe 1.0.0.0
Dataframe 1.0.0.0 Dataframe 1.0.0.0

FeaturesTyped dataframesWe got there eventually and I think we got there in a way that still looks nice.

There is now a DataFrame.Typed API that tracks the entire schema of the dataframe - column names, misapplied operations etc are now compile time failures and you can easily move between exploratory and pipeline work.

$(DT.deriveSchemaFromCsvFile "Housing" "./data/housing.csv") main :: IO () main = do df <- D.readCsv "./data/housing.csv" let df' = either (error .

show) id (DT.freezeWithError @Housing df) let df'' = df' & DT.derive @"rooms_per_household" (DT.col @"total_rooms" / DT.col @"households") & DT.impute @"total_bedrooms" 0 & DT.derive @"bedrooms_per_household" (DT.col @"total_bedr…

12 часов назад @ discourse.haskell.org
POSSE – Publish on your Own Site, Syndicate Elsewhere
POSSE – Publish on your Own Site, Syndicate Elsewhere POSSE – Publish on your Own Site, Syndicate Elsewhere

— Barnaby WaltersSee POSSE to Twitter for details on how to POSSE both notes and articles (blog posts) to Twitter.

Partial POSSE sitesSites which only POSSE some of their content, and still post directly to the same silo they POSSE to.

For details, see silo-specific POSSE sections:Facebook: POSSE to Facebook (to-do: needs details re: edit text ok, but no photo editing, photo posts need delete/repost to simulate POSSE update)Flickr: (UI supports manually updating the image of a photo post, but is that available in the API?

and if so, file a Bridgy Publish feature request GitHub issue to support POSSE Update to Flickr (including the image of a photo post)Twitter: POSSE to Twitter (to-do: copy…

12 часов назад @ indieweb.org
Show HN: The King Wen Permutation: [52, 10, 2]
Show HN: The King Wen Permutation: [52, 10, 2]

The King Wen PermutationA hidden mathematical structure in a 3,000-year-old Chinese text52 cycle | 10 cycle | 2 cycleThe 64 hexagrams of the I Ching have two canonical orderings: the binary natural order (0–63) and the King Wen sequence (~1000 BCE).

Treating the map between them as a permutation in S₆₄, its cycle decomposition yields [52, 10, 2] with zero fixed points.

81% of hexagrams are locked in a single cycle.

This structure has not been previously reported in the literature.

12 часов назад @ gzw1987-bit.github.io
Plane and ground vehicle collide at New York's LaGuardia airport halting flights
Plane and ground vehicle collide at New York's LaGuardia airport halting flights Plane and ground vehicle collide at New York's LaGuardia airport halting flights

CBS News, the BBC US partner, reported the plane was arriving from Montreal and had landed.

It had slowed to about 24mph when it collided with a vehicle from the Port Authority of New York and New Jersey, which runs the airport.

13 часов назад @ bbc.com
Show HN: Agent Kernel – Three Markdown files that make any AI agent stateful
Show HN: Agent Kernel – Three Markdown files that make any AI agent stateful Show HN: Agent Kernel – Three Markdown files that make any AI agent stateful

Works with any AI coding agent: OpenCode, Claude Code, Codex, Cursor, Windsurf, etc.

Quick startgit clone https://github.com/oguzbilgic/agent-kernel.git my-agent cd my-agentStart your agent:opencode # or claude, codex, cursor, etc.

The agent updates these when reality changes.

The agent updates these when reality changes.

You can have a homelab agent, an investing agent, a health agent — all running the same OS.

14 часов назад @ github.com
Lobsters Lobsters
последний пост 59 минут назад
Guideline: Rust Style
Guideline: Rust Style Guideline: Rust Style

Exceptions:Test modulesFile structurePrivate then public imports (M-PRIV-PUB-USE)Group public imports with the file's public API.

A reader approaching the file is likely to skip over private imports to look at the public items to get the big picture.

Example:pub struct Foo { ... } impl Display for Foo {} impl Foo {}Instead use:pub struct Foo { ... } impl Foo {} impl Display for Foo {}Caller then callee (M-CALLER-CALLEE)The caller provides context for the callees.

Example:if let Some(foo) = foo { // ... if case { return Ok(...); } Ok(...) } else { Err(...) }Use instead:let foo = foo.

Exceptions:"Invisible" side effects like caching, loggingExample:let mut case = false ; let foo = if somethin…

59 минут назад @ epage.github.io
Qt 6.11 Released
Qt 6.11 Released Qt 6.11 Released

Performance & Productivity to 2D Rendering: Qt Canvas PainterThe release brings about a new, modern way of drawing 2D graphics with Qt: Qt Canvas Painter.

Try it yourself: The Wind Turbine Dashboard is available in the Qt examples (make sure you’ve installed the Qt Graphs module).

A Declarative Approach to Asynchronous Coding: Qt TaskTreeQt TaskTree is a new module, available in Qt 6.11 as a technology preview.

With the Qt OpenAPI module it becomes easy to generate Qt HTTP client code that uses Qt Networks RESTful APIs.

In the What’s New in Qt 6.11 document you’ll find a lot of other things, such as new Qt Multimedia APIs for real-time audio processing.

1 час назад @ qt.io
TLA+ mental models
TLA+ mental models TLA+ mental models

Here I want to go deeper and articulate the mental models behind effective TLA+ use.

In TLA+, refinement is simply implication: the concrete system's behaviors must be a subset of the abstract system's allowed behaviors.

At AWS, when I wrote the first TLA+ model of Aurora DSQL's distributed transaction protocol, the model's value quickly went beyond correctness confidence.

Tools like Spectacle can visualize TLA+ state spaces and execution traces, bridging the gap between mathematical precision and the operational intuition engineers thrive on.

TLA+ is one of the purest intellectual pleasures: reducing a complex distributed system to its essential logic.

1 час назад @ muratbuffalo.blogspot.com
Rewriting a 20-year-old Python library
Rewriting a 20-year-old Python library Rewriting a 20-year-old Python library

He published a total of five releases of his Python Akismet library over the next few years, and people started using it.

The other big motivating factor for a rewrite was the rise of asynchronous Python via async and await , originally introduced in Python 3.5.

Another idea that I rejected pretty quickly was trying to stick to a single Akismet client class.

And since async with is an async execution context, it can issue an async HTTP request for credential validation.

An akismet.SyncClient and an akismet.AsyncClient are not two different subtypes of a parent “Akismet client” class or interface!

2 часа назад @ b-list.org
A History of UW Central Computing: The Cyber Era
A History of UW Central Computing: The Cyber Era A History of UW Central Computing: The Cyber Era

CDC was one of the earliest pioneers of computer-aided instruction systems, called PLATO, which also has a Wikipedia entry.

There was a strange instruction on Cybers called the Population Count instruction.

At that time, both UW and the colleges used Microdata minicomputers for administrative computing; the colleges used Harris minis for academic computing, but would have access to UW's Cybers.

To the CDC Cyber customers, these disk drives were known as the model 885 and had two 600-megabyte spindles per unit.

This time the Cybers would be removed, and newer, drastically different hardware would be installed to provide central academic computing.

2 часа назад @ uwyo.edu
From error-handling to structured concurrency
From error-handling to structured concurrency From error-handling to structured concurrency

“Unwinding” is also predicated on having a structured call stack, a concept which also had to be invented and popularized.

How do we organize our code to handle error conditions, in the presence of multiple concurrent tasks?

Unhandled errors 🔗︎Perhaps the simplest case for error-handling is when an error arises, and no code explicitly handles it.

In concurrent program with multiple tasks, it’s less obvious what should happen.

Structured concurrency has many advantages, and I and many others have found that writing programs in this style makes it much easier to write correct and safe concurrent code (although other challenges certainly remain!).

4 часа назад @ blog.nelhage.com
Arturo programming language
Arturo programming language Arturo programming language

Elegant & MinimalClean, expressive syntax that gets out of your way.

No semicolons, no braces, no noise.

Just clear code that says exactly what it means.

Learn the basics in minutes, master the rest naturally.

4 часа назад @ arturo-lang.io
LLM 'benchmark' as a 1v1 RTS game where models write code controlling the units
LLM 'benchmark' as a 1v1 RTS game where models write code controlling the units LLM 'benchmark' as a 1v1 RTS game where models write code controlling the units

Yare AI ArenaLLMs playing against each other in a 1v1 game (round-robin tournament)The game is simple.

(a[ 0 ] - b[ 0 ], a[ 1 ] - b[ 1 ]); } function (cat) { let best = null ; let best_dist = Infinity ; for ( let id of cat.

enemies ) { let d = (cat.

position ); if (d < best_dist) { best_dist = d; best = cats[id]; } } return best; } for ( let cat of my_cats) { let enemy = (cat) cat.

position ) cat.

5 часов назад @ yare.io
Generators in lone lisp
Generators in lone lisp

lone_lisp_machine_push_step ( lone , machine , LONE_LISP_MACHINE_STEP_GENERATOR_RETURN ) ; machine -> expression = lone_lisp_list_create ( lone , generator -> function , machine -> list ) ; machine -> step = LONE_LISP_MACHINE_STEP_EXPRESSION_EVALUATION ;This is a good opportunity to set up some metadata.

if ( lone_lisp_list_has_rest ( lone , machine -> list ) ) { goto too_many_arguments ; } machine -> value = lone_lisp_list_first ( lone , machine -> list ) ; machine -> step = LONE_LISP_MACHINE_STEP_AFTER_APPLICATION ;Generator returns are handled as a separate machine step.

LONE_LISP_PRIMITIVE ( lone_yield ) { switch ( step ) { case 0 : arguments = lone_lisp_machine_pop_value ( lone , machi…

6 часов назад @ matheusmoreira.com
Semi-retirement, or, really, changing my relationship with the BSDs
Semi-retirement, or, really, changing my relationship with the BSDs

Dr. Brian Robert Callahan academic, developer, with an eye towards a brighter techno-social life[next]2026-03-22Semi-retirement, or, really, changing my relationship with the BSDsJanuary 7, 2013, at around 4:30 PM New York time.

The instruction rewriting wraps the target instruction with xchgq instructions and flips the source and destination registers in the target instruction.

This means we were excited as the binary size increase Todd found should be even less.

After installing FreeBSD on our machine, we used ROPgadget to collect the number of unique gadgets in the FreeBSD kernel and libc.

We then removed the alternative register selection mitigation from LLVM and replaced it with the co…

6 часов назад @ briancallahan.net
Markdown Ate the World
Markdown Ate the World Markdown Ate the World

Comments

6 часов назад @ matduggan.com
An Incoherent Rust
An Incoherent Rust An Incoherent Rust

A rust library can be compiled into a dynamic library and then dynamically linked to without knowing it was a rust crate.

Without it overlapping trait implementations wouldn’t be very useful:impl Clone for MyType { fn clone ( & self) -> Self { loop {} } } impl Clone for MyType { fn clone ( & self) -> Self { MyType(self.

I don’t think Rust made a mistake by having coherence but I do think we need to seriously consider how we can move towards an incoherent Rust without sacrificing the benefits coherence has given us.

( "inherent" ); } } trait Trait { fn assoc ( & self); } impl Trait for Foo { fn assoc ( & self) { dbg!

Go BackMaybe Bounds on ADTs#In the post On always-applicable trait impls - …

7 часов назад @ boxyuwu.blog
Designing a Spatula (in Haskell) (Video)
Designing a Spatula (in Haskell) (Video) Designing a Spatula (in Haskell) (Video)

Comments

8 часов назад @ youtube.com
The Death of Character in Game Console Interfaces
The Death of Character in Game Console Interfaces The Death of Character in Game Console Interfaces

Consoles’ interfaces gave them a soul, but with it stripped they feel like little more than appliances.

It is a perfect marriage: the interface design matching the physical design, and the physical design matching the interface design.

The Kinect dashboard still had character and a clear identity, but it was representative of a flatter, more basic direction that would come to plague game consoles in the years to come.

Death of CharacterSomewhere following the seventh generation of consoles (Xbox 360, PS3, Wii, DS, PSP ) is where things faltered.

The diverse world of game console interfaces that gave consoles their identity and made them unique has fallen away, leaving only bland nothingness…

8 часов назад @ vale.rocks
My Google Recruitment Journey (Part 1): Brute-Forcing My Algorithmic Ignorance
My Google Recruitment Journey (Part 1): Brute-Forcing My Algorithmic Ignorance

My data structures were pragmatic: flat vectors, statically sized arrays, sometimes simple maps, and for hard problems "SQLite".

Act like human private teacher that are fully commited in teaching me new concepts that I am not aware of.

Act like human private teacher that are fully commited in teaching me new concepts that I am not aware of.

My initial solutions were not fully optimal, but I assumed that they were good enough (like storing the BFS element layer as a struct in the queue, instead of the math trick in which is done by iterating over queue.size() - I understood this pattern a lot, lot, lot of time later).

The first three problems weren't so hard: Merge k Sorted Lists, Merge Inte…

9 часов назад @ blog.dominikrudnik.pl
Techmeme Techmeme
последний пост 1 час назад
Kalshi announces new guardrails to preemptively block politicians, athletes, and others from trading in their relevant markets (Nathan Bomey/Axios)
Kalshi announces new guardrails to preemptively block politicians, athletes, and others from trading in their relevant markets (Nathan Bomey/Axios) Kalshi announces new guardrails to preemptively block politicians, athletes, and others from trading in their relevant markets (Nathan Bomey/Axios)

Nathan Bomey / Axios:

Kalshi announces new guardrails to preemptively block politicians, athletes, and others from trading in their relevant markets — Prediction market Kalshi plans to block athletes, coaches and officials from betting on their sports and to block political candidates from trading on their campaigns, Axios has learned.

1 час назад @ techmeme.com
Memo: Meta hires the founders and team behind Dreamer, which lets users create AI agents; co-founder Hugo Barra is joining Meta Superintelligence Labs (Kurt Wagner/Bloomberg)
Memo: Meta hires the founders and team behind Dreamer, which lets users create AI agents; co-founder Hugo Barra is joining Meta Superintelligence Labs (Kurt Wagner/Bloomberg) Memo: Meta hires the founders and team behind Dreamer, which lets users create AI agents; co-founder Hugo Barra is joining Meta Superintelligence Labs (Kurt Wagner/Bloomberg)

Kurt Wagner / Bloomberg:

Memo: Meta hires the founders and team behind Dreamer, which lets users create AI agents; co-founder Hugo Barra is joining Meta Superintelligence Labs — Meta Platforms Inc. has hired the founders and team behind the artificial intelligence startup Dreamer, which launched earlier this year to help people create their own AI agents.

2 часа назад @ techmeme.com
The US plans to create a voluntary consortium of countries to invest $4T to secure supply chains for chips, energy, and minerals; the US will contribute $250M (New York Times)
The US plans to create a voluntary consortium of countries to invest $4T to secure supply chains for chips, energy, and minerals; the US will contribute $250M (New York Times) The US plans to create a voluntary consortium of countries to invest $4T to secure supply chains for chips, energy, and minerals; the US will contribute $250M (New York Times)

New York Times:

The US plans to create a voluntary consortium of countries to invest $4T to secure supply chains for chips, energy, and minerals; the US will contribute $250M — Trump officials said on Monday that the war in Iran had emphasized the need to reduce vulnerabilities for energy and technology.

2 часа назад @ techmeme.com
Doc: Kalshi and Polymarket CEOs are investing in a VC fund, led by two early Kalshi employees, that is raising up to $35M to back prediction market startups (Ben Weiss/Fortune)
Doc: Kalshi and Polymarket CEOs are investing in a VC fund, led by two early Kalshi employees, that is raising up to $35M to back prediction market startups (Ben Weiss/Fortune) Doc: Kalshi and Polymarket CEOs are investing in a VC fund, led by two early Kalshi employees, that is raising up to $35M to back prediction market startups (Ben Weiss/Fortune)

Ben Weiss / Fortune:

Doc: Kalshi and Polymarket CEOs are investing in a VC fund, led by two early Kalshi employees, that is raising up to $35M to back prediction market startups — The CEOs of Kalshi and Polymarket are locked in a brutal fight to dominate the white-hot prediction market sector.

2 часа назад @ techmeme.com
Q&A with Jensen Huang, who says "we've achieved AGI", on running Nvidia, AI scaling laws, OpenClaw, future of coding, data centers in space, China, and more (Lex Fridman)
Q&A with Jensen Huang, who says "we've achieved AGI", on running Nvidia, AI scaling laws, OpenClaw, future of coding, data centers in space, China, and more (Lex Fridman) Q&A with Jensen Huang, who says "we've achieved AGI", on running Nvidia, AI scaling laws, OpenClaw, future of coding, data centers in space, China, and more (Lex Fridman)

Lex Fridman:

Q&A with Jensen Huang, who says “we've achieved AGI”, on running Nvidia, AI scaling laws, OpenClaw, future of coding, data centers in space, China, and more — - Watch the full YouTube version of the podcast — Table of Contents — Here are the loose “chapters” in the conversation.

3 часа назад @ techmeme.com
Polymarket unveils insider trading rules: no bets on stolen confidential info, illegal tips, or events whose outcomes the user can influence as an insider (Emily Nicolle/Bloomberg)
Polymarket unveils insider trading rules: no bets on stolen confidential info, illegal tips, or events whose outcomes the user can influence as an insider (Emily Nicolle/Bloomberg) Polymarket unveils insider trading rules: no bets on stolen confidential info, illegal tips, or events whose outcomes the user can influence as an insider (Emily Nicolle/Bloomberg)

Emily Nicolle / Bloomberg:

Polymarket unveils insider trading rules: no bets on stolen confidential info, illegal tips, or events whose outcomes the user can influence as an insider — Polymarket has moved to squash some types of insider trading after the prediction markets platform came under scrutiny for suspected manipulation.

3 часа назад @ techmeme.com
Apple announces WWDC 2026 for June 8-12, which will be an online event free for developers, with an in-person event at Apple Park on June 8 (Juli Clover/MacRumors)
Apple announces WWDC 2026 for June 8-12, which will be an online event free for developers, with an in-person event at Apple Park on June 8 (Juli Clover/MacRumors) Apple announces WWDC 2026 for June 8-12, which will be an online event free for developers, with an in-person event at Apple Park on June 8 (Juli Clover/MacRumors)

Juli Clover / MacRumors:

Apple announces WWDC 2026 for June 8-12, which will be an online event free for developers, with an in-person event at Apple Park on June 8 — Apple today said that its 37th annual Worldwide Developers Conference is set to begin on Monday, June 8 and end on Friday, June 12.

4 часа назад @ techmeme.com
Sources: Apple is preparing to introduce ads in its Maps app, allowing retailers and brands to bid for ad slots against search queries (Mark Gurman/Bloomberg)
Sources: Apple is preparing to introduce ads in its Maps app, allowing retailers and brands to bid for ad slots against search queries (Mark Gurman/Bloomberg) Sources: Apple is preparing to introduce ads in its Maps app, allowing retailers and brands to bid for ad slots against search queries (Mark Gurman/Bloomberg)

Mark Gurman / Bloomberg:

Sources: Apple is preparing to introduce ads in its Maps app, allowing retailers and brands to bid for ad slots against search queries — Apple Inc. is preparing to introduce advertising in its Maps app, part of a broader push to generate more money from services.

4 часа назад @ techmeme.com
Norwegian startup Lace, which is building a form of lithography that uses a helium atom beam instead of light to create chip designs, raised a $40M Series A (Reuters)
Norwegian startup Lace, which is building a form of lithography that uses a helium atom beam instead of light to create chip designs, raised a $40M Series A (Reuters) Norwegian startup Lace, which is building a form of lithography that uses a helium atom beam instead of light to create chip designs, raised a $40M Series A (Reuters)

Reuters:

Norwegian startup Lace, which is building a form of lithography that uses a helium atom beam instead of light to create chip designs, raised a $40M Series A — Lace, a Norway-headquartered chipmaking equipment startup which is backed by Microsoft, has raised $40 million in funding …

4 часа назад @ techmeme.com
Doctronic, which became the first company to use AI to write prescription refills through a pilot launched in Utah, raised $40M led by Abstract and Lightspeed (Brian Gormley/Wall Street Journal)
Doctronic, which became the first company to use AI to write prescription refills through a pilot launched in Utah, raised $40M led by Abstract and Lightspeed (Brian Gormley/Wall Street Journal) Doctronic, which became the first company to use AI to write prescription refills through a pilot launched in Utah, raised $40M led by Abstract and Lightspeed (Brian Gormley/Wall Street Journal)

Brian Gormley / Wall Street Journal:

Doctronic, which became the first company to use AI to write prescription refills through a pilot launched in Utah, raised $40M led by Abstract and Lightspeed — Doctronic, which just raised $40 million, links patients to human doctors in virtual visits and has a pilot program that refills prescriptions.

4 часа назад @ techmeme.com
Gimlet Labs, which says it is the first "multi-silicon inference cloud" for running AI workloads across diverse types of hardware, raised an $80M Series A (Julie Bort/TechCrunch)
Gimlet Labs, which says it is the first "multi-silicon inference cloud" for running AI workloads across diverse types of hardware, raised an $80M Series A (Julie Bort/TechCrunch) Gimlet Labs, which says it is the first "multi-silicon inference cloud" for running AI workloads across diverse types of hardware, raised an $80M Series A (Julie Bort/TechCrunch)

Julie Bort / TechCrunch:

Gimlet Labs, which says it is the first “multi-silicon inference cloud” for running AI workloads across diverse types of hardware, raised an $80M Series A — Stanford adjunct professor and successfully exited founder Zain Asgar just raised an $80 million Series A for a startup …

4 часа назад @ techmeme.com
Interviews with Sundar Pichai and other Google executives on being blindsided by ChatGPT's launch, Gemini, Pichai's vision of useful AI everywhere, and more (Harry McCracken/Fast Company)
Interviews with Sundar Pichai and other Google executives on being blindsided by ChatGPT's launch, Gemini, Pichai's vision of useful AI everywhere, and more (Harry McCracken/Fast Company) Interviews with Sundar Pichai and other Google executives on being blindsided by ChatGPT's launch, Gemini, Pichai's vision of useful AI everywhere, and more (Harry McCracken/Fast Company)

Harry McCracken / Fast Company:

Interviews with Sundar Pichai and other Google executives on being blindsided by ChatGPT's launch, Gemini, Pichai's vision of useful AI everywhere, and more — Under Pichai, the company that invented modern AI is finally winning the race to deploy it—and making ‘AI everywhere’ a business reality.

5 часов назад @ techmeme.com
Source: OpenAI is in talks to buy 5 GW of electricity by 2030 from Sam Altman-backed fusion startup Helion; Altman has stepped down as Helion's board chair (Ina Fried/Axios)
Source: OpenAI is in talks to buy 5 GW of electricity by 2030 from Sam Altman-backed fusion startup Helion; Altman has stepped down as Helion's board chair (Ina Fried/Axios) Source: OpenAI is in talks to buy 5 GW of electricity by 2030 from Sam Altman-backed fusion startup Helion; Altman has stepped down as Helion's board chair (Ina Fried/Axios)

Ina Fried / Axios:

Source: OpenAI is in talks to buy 5 GW of electricity by 2030 from Sam Altman-backed fusion startup Helion; Altman has stepped down as Helion's board chair — OpenAI is in advanced talks to buy electricity from Sam Altman-backed fusion startup Helion Energy, according to a person familiar with the situation.

5 часов назад @ techmeme.com
Intel Core Ultra 7 270K Plus review: unbelievable app performance, big price cut, and improvements over the 265K, but mediocre at gaming and large power demands (Jake Roach/Tom's Hardware)
Intel Core Ultra 7 270K Plus review: unbelievable app performance, big price cut, and improvements over the 265K, but mediocre at gaming and large power demands (Jake Roach/Tom's Hardware) Intel Core Ultra 7 270K Plus review: unbelievable app performance, big price cut, and improvements over the 265K, but mediocre at gaming and large power demands (Jake Roach/Tom's Hardware)

Jake Roach / Tom's Hardware:

Intel Core Ultra 7 270K Plus review: unbelievable app performance, big price cut, and improvements over the 265K, but mediocre at gaming and large power demands — Unbelievable productivity performance at an even more unbelievable price - shame gaming still takes a backseat.

6 часов назад @ techmeme.com
Canal+, ITV, Sky, and other broadcasters urge the EU to designate smart TV operating systems such as Android TV and Amazon Fire OS as gatekeepers under the DMA (Foo Yun Chee/Reuters)
Canal+, ITV, Sky, and other broadcasters urge the EU to designate smart TV operating systems such as Android TV and Amazon Fire OS as gatekeepers under the DMA (Foo Yun Chee/Reuters) Canal+, ITV, Sky, and other broadcasters urge the EU to designate smart TV operating systems such as Android TV and Amazon Fire OS as gatekeepers under the DMA (Foo Yun Chee/Reuters)

Foo Yun Chee / Reuters:

Canal+, ITV, Sky, and other broadcasters urge the EU to designate smart TV operating systems such as Android TV and Amazon Fire OS as gatekeepers under the DMA — Google (GOOGL.O), Amazon (AMZN.O), Apple (AAPL.O) and Samsung's (005930.KS) smart TVs and virtual assistants should fall under …

7 часов назад @ techmeme.com
Techmeme Techmeme
последний пост 1 час назад
London-based luxury ride-hailing app Wheely launches in NYC, aiming to compete with Uber Elite; Wheely reports ~1,250 corporate accounts and ~100K active riders (Natalie Lung/Bloomberg)
London-based luxury ride-hailing app Wheely launches in NYC, aiming to compete with Uber Elite; Wheely reports ~1,250 corporate accounts and ~100K active riders (Natalie Lung/Bloomberg) London-based luxury ride-hailing app Wheely launches in NYC, aiming to compete with Uber Elite; Wheely reports ~1,250 corporate accounts and ~100K active riders (Natalie Lung/Bloomberg)

Natalie Lung / Bloomberg:

London-based luxury ride-hailing app Wheely launches in NYC, aiming to compete with Uber Elite; Wheely reports ~1,250 corporate accounts and ~100K active riders — Luxury ride-hailing app Wheely is making its debut in the US, presenting competition to Uber Technologies Inc. and Lyft Inc. …

8 часов назад @ techmeme.com
Sources: OpenAI is offering PE firms a guaranteed minimum return of 17.5% and early access to new models to secure JVs, an improvement on Anthropic's terms (Reuters)
Sources: OpenAI is offering PE firms a guaranteed minimum return of 17.5% and early access to new models to secure JVs, an improvement on Anthropic's terms (Reuters) Sources: OpenAI is offering PE firms a guaranteed minimum return of 17.5% and early access to new models to secure JVs, an improvement on Anthropic's terms (Reuters)

Reuters:

Sources: OpenAI is offering PE firms a guaranteed minimum return of 17.5% and early access to new models to secure JVs, an improvement on Anthropic's terms — ChatGPT maker OpenAI is offering private-equity firms a sweeter deal than rival Anthropic as both artificial intelligence companies court buyout firms …

8 часов назад @ techmeme.com
Sources: EA is marketing a $15B debt package to fund its $55B Saudi-led take-private deal, including nearly $700M in projected annual cost savings (Bloomberg)
Sources: EA is marketing a $15B debt package to fund its $55B Saudi-led take-private deal, including nearly $700M in projected annual cost savings (Bloomberg) Sources: EA is marketing a $15B debt package to fund its $55B Saudi-led take-private deal, including nearly $700M in projected annual cost savings (Bloomberg)

Bloomberg:

Sources: EA is marketing a $15B debt package to fund its $55B Saudi-led take-private deal, including nearly $700M in projected annual cost savings — For Electronic Arts Inc.'s prospective debt investors, Battlefield 6 and Skate aren't just two of the video-game maker's most popular titles.

8 часов назад @ techmeme.com
Leonid Radvinsky, the reclusive billionaire owner of OnlyFans parent Fenix, died at 43 after a long battle with cancer; he acquired the OnlyFans stake in 2018 (Olivia Solon/Bloomberg)
Leonid Radvinsky, the reclusive billionaire owner of OnlyFans parent Fenix, died at 43 after a long battle with cancer; he acquired the OnlyFans stake in 2018 (Olivia Solon/Bloomberg) Leonid Radvinsky, the reclusive billionaire owner of OnlyFans parent Fenix, died at 43 after a long battle with cancer; he acquired the OnlyFans stake in 2018 (Olivia Solon/Bloomberg)

Olivia Solon / Bloomberg:

Leonid Radvinsky, the reclusive billionaire owner of OnlyFans parent Fenix, died at 43 after a long battle with cancer; he acquired the OnlyFans stake in 2018 — Leonid Radvinsky, the reclusive billionaire owner of adult content platform OnlyFans, has died of cancer, the London-based company confirmed on Monday.

8 часов назад @ techmeme.com
OpenAI hires Dave Dugan, a former top ad executive at Meta, to lead ad sales, reporting to COO Brad Lightcap; Dugan stepped down as Meta VP earlier this month (Suzanne Vranica/Wall Street Journal)
OpenAI hires Dave Dugan, a former top ad executive at Meta, to lead ad sales, reporting to COO Brad Lightcap; Dugan stepped down as Meta VP earlier this month (Suzanne Vranica/Wall Street Journal) OpenAI hires Dave Dugan, a former top ad executive at Meta, to lead ad sales, reporting to COO Brad Lightcap; Dugan stepped down as Meta VP earlier this month (Suzanne Vranica/Wall Street Journal)

Suzanne Vranica / Wall Street Journal:

OpenAI hires Dave Dugan, a former top ad executive at Meta, to lead ad sales, reporting to COO Brad Lightcap; Dugan stepped down as Meta VP earlier this month — The AI company seeks stronger ties with brands to boost its nascent ad business — OpenAI has hired Dave Dugan …

8 часов назад @ techmeme.com
AI chip company Kandou AI raised $225M from SoftBank, Synopsys, and others at a $400M valuation after pivoting from consumer hardware to AI infrastructure (Nino Paoli/Bloomberg)
AI chip company Kandou AI raised $225M from SoftBank, Synopsys, and others at a $400M valuation after pivoting from consumer hardware to AI infrastructure (Nino Paoli/Bloomberg) AI chip company Kandou AI raised $225M from SoftBank, Synopsys, and others at a $400M valuation after pivoting from consumer hardware to AI infrastructure (Nino Paoli/Bloomberg)

Nino Paoli / Bloomberg:

AI chip company Kandou AI raised $225M from SoftBank, Synopsys, and others at a $400M valuation after pivoting from consumer hardware to AI infrastructure — Kandou AI, an artificial-intelligence chip company led by a former Goldman Sachs Group Inc. managing director, raised $225 million …

8 часов назад @ techmeme.com
Senators Adam Schiff and John Curtis introduce bipartisan legislation to ban sports betting on CFTC-regulated prediction markets like Kalshi and Polymarket (Krystal Hur/Wall Street Journal)
Senators Adam Schiff and John Curtis introduce bipartisan legislation to ban sports betting on CFTC-regulated prediction markets like Kalshi and Polymarket (Krystal Hur/Wall Street Journal) Senators Adam Schiff and John Curtis introduce bipartisan legislation to ban sports betting on CFTC-regulated prediction markets like Kalshi and Polymarket (Krystal Hur/Wall Street Journal)

Krystal Hur / Wall Street Journal:

Senators Adam Schiff and John Curtis introduce bipartisan legislation to ban sports betting on CFTC-regulated prediction markets like Kalshi and Polymarket — Sens. Schiff and Curtis seek to prevent CFTC-regulated entities, including Kalshi and Polymarket, from offering wagers on sports

9 часов назад @ techmeme.com
Sources: Sony is nearing a binding agreement to sell a 51% stake in its home entertainment business to Chinese rival TCL for ~$1B as soon as this month (Bloomberg)
Sources: Sony is nearing a binding agreement to sell a 51% stake in its home entertainment business to Chinese rival TCL for ~$1B as soon as this month (Bloomberg) Sources: Sony is nearing a binding agreement to sell a 51% stake in its home entertainment business to Chinese rival TCL for ~$1B as soon as this month (Bloomberg)

Bloomberg:

Sources: Sony is nearing a binding agreement to sell a 51% stake in its home entertainment business to Chinese rival TCL for ~$1B as soon as this month — Sony Group Corp. is nearing a binding agreement to sell a majority stake in its home entertainment business to Chinese rival TCL Electronics Holdings Ltd …

9 часов назад @ techmeme.com
Addison Lee CEO Liam Griffin says London cab drivers should be protected via "a minimum price" on Waymo's and Tesla's robotaxis to prevent "predatory pricing" (Financial Times)
Addison Lee CEO Liam Griffin says London cab drivers should be protected via "a minimum price" on Waymo's and Tesla's robotaxis to prevent "predatory pricing" (Financial Times) Addison Lee CEO Liam Griffin says London cab drivers should be protected via "a minimum price" on Waymo's and Tesla's robotaxis to prevent "predatory pricing" (Financial Times)

Financial Times:

Addison Lee CEO Liam Griffin says London cab drivers should be protected via “a minimum price” on Waymo's and Tesla's robotaxis to prevent “predatory pricing” — Cab drivers should be protected by imposing “a minimum price” on robotaxis offered by Waymo and Tesla to prevent …

9 часов назад @ techmeme.com
NYC-based Dash0, which offers AI agents to monitor and troubleshoot cloud, app, and infrastructure issues, raised $110M led by Balderton at a $1B valuation (Yazhou Sun/Bloomberg)
NYC-based Dash0, which offers AI agents to monitor and troubleshoot cloud, app, and infrastructure issues, raised $110M led by Balderton at a $1B valuation (Yazhou Sun/Bloomberg) NYC-based Dash0, which offers AI agents to monitor and troubleshoot cloud, app, and infrastructure issues, raised $110M led by Balderton at a $1B valuation (Yazhou Sun/Bloomberg)

Yazhou Sun / Bloomberg:

NYC-based Dash0, which offers AI agents to monitor and troubleshoot cloud, app, and infrastructure issues, raised $110M led by Balderton at a $1B valuation — Dash0 has raised $110 million at a $1 billion valuation in a Balderton Capital-led round to expand its monitoring platform …

10 часов назад @ techmeme.com
The EC's EU Inc. proposal is a missed opportunity, leaving national courts to interpret corporate rules, and it seems like Brussels has pre-emptively aimed low (Martin Sandbu/Financial Times)
The EC's EU Inc. proposal is a missed opportunity, leaving national courts to interpret corporate rules, and it seems like Brussels has pre-emptively aimed low (Martin Sandbu/Financial Times) The EC's EU Inc. proposal is a missed opportunity, leaving national courts to interpret corporate rules, and it seems like Brussels has pre-emptively aimed low (Martin Sandbu/Financial Times)

Martin Sandbu / Financial Times:

The EC's EU Inc. proposal is a missed opportunity, leaving national courts to interpret corporate rules, and it seems like Brussels has pre-emptively aimed low — Leaders who want more innovative European business must insist on a bolder approach — The promised solution to Europe's lack …

10 часов назад @ techmeme.com
Korean AI startup Upstage says it is in talks to acquire 10K of AMD's MI355 chips, in a bid to "diversify to other chips" as "we have a lot of Nvidia chips" (Bloomberg)
Korean AI startup Upstage says it is in talks to acquire 10K of AMD's MI355 chips, in a bid to "diversify to other chips" as "we have a lot of Nvidia chips" (Bloomberg) Korean AI startup Upstage says it is in talks to acquire 10K of AMD's MI355 chips, in a bid to "diversify to other chips" as "we have a lot of Nvidia chips" (Bloomberg)

Bloomberg:

Korean AI startup Upstage says it is in talks to acquire 10K of AMD's MI355 chips, in a bid to “diversify to other chips” as “we have a lot of Nvidia chips” — Korean AI startup Upstage is in discussions with Advanced Micro Devices Inc. to buy 10,000 of its latest AI accelerators …

11 часов назад @ techmeme.com
Singapore-based Grab agrees to buy Delivery Hero's Foodpanda operations in Taiwan for $600M in cash, its first foray outside of its Southeast Asian home market (Bloomberg)
Singapore-based Grab agrees to buy Delivery Hero's Foodpanda operations in Taiwan for $600M in cash, its first foray outside of its Southeast Asian home market (Bloomberg) Singapore-based Grab agrees to buy Delivery Hero's Foodpanda operations in Taiwan for $600M in cash, its first foray outside of its Southeast Asian home market (Bloomberg)

Bloomberg:

Singapore-based Grab agrees to buy Delivery Hero's Foodpanda operations in Taiwan for $600M in cash, its first foray outside of its Southeast Asian home market — Grab Holdings Ltd. agreed to buy Delivery Hero SE's Foodpanda operations in Taiwan for $600 million, a deal that marks its first foray outside of its Southeast Asian base.

11 часов назад @ techmeme.com
Indian media: Indian police arrest two CoinDCX cofounders, after a complainant alleged investment fraud tied to the exchange; CoinDCX calls the claims "false" (Zack Abrams/The Block)
Indian media: Indian police arrest two CoinDCX cofounders, after a complainant alleged investment fraud tied to the exchange; CoinDCX calls the claims "false" (Zack Abrams/The Block) Indian media: Indian police arrest two CoinDCX cofounders, after a complainant alleged investment fraud tied to the exchange; CoinDCX calls the claims "false" (Zack Abrams/The Block)

Zack Abrams / The Block:

Indian media: Indian police arrest two CoinDCX cofounders, after a complainant alleged investment fraud tied to the exchange; CoinDCX calls the claims “false” — Quick Take — CoinDCX co-founders Sumit Gupta and Neeraj Khandelwal were arrested by police in Thane …

11 часов назад @ techmeme.com
A profile of AWS at its 20th anniversary, covering its creation, rise to market dominance, response to the ChatGPT disruption, and the future of its AI bets (Todd Bishop/GeekWire)
A profile of AWS at its 20th anniversary, covering its creation, rise to market dominance, response to the ChatGPT disruption, and the future of its AI bets (Todd Bishop/GeekWire) A profile of AWS at its 20th anniversary, covering its creation, rise to market dominance, response to the ChatGPT disruption, and the future of its AI bets (Todd Bishop/GeekWire)

Todd Bishop / GeekWire:

A profile of AWS at its 20th anniversary, covering its creation, rise to market dominance, response to the ChatGPT disruption, and the future of its AI bets — In the early days of Amazon Web Services, technical evangelist Jeff Barr was putting in long hours on the road, pitching a novel concept …

12 часов назад @ techmeme.com
GitHub Trending GitHub Trending
последний пост 18 часов назад
TauricResearch/TradingAgents
TauricResearch/TradingAgents TauricResearch/TradingAgents

TradingAgents: Multi-Agents LLM Financial Trading FrameworkNews[2026-03] TradingAgents v0.2.2 released with GPT-5.4/Gemini 3.1/Claude 4.6 model coverage, five-tier rating scale, OpenAI Responses API, Anthropic effort control, and cross-platform stability.

TradingAgents FrameworkTradingAgents is a multi-agent trading framework that mirrors the dynamics of real-world trading firms.

trading_graph import TradingAgentsGraph from tradingagents .

default_config import DEFAULT_CONFIG ta = TradingAgentsGraph ( debug = True , config = DEFAULT_CONFIG .

default_config import DEFAULT_CONFIG config = DEFAULT_CONFIG .

18 часов назад @ github.com
voidzero-dev/vite-plus
voidzero-dev/vite-plus voidzero-dev/vite-plus

The Unified Toolchain for the Web runtime and package management, create, dev, check, test, build, pack, and monorepo task caching in a single dependencyVite+ is the unified entry point for local web development.

Vite+ is fully open-source under the MIT license.

Getting StartedInstall Vite+ globally as vp :For Linux or macOS:curl -fsSL https://vite.plus | bashFor Windows:irm https://viteplus.dev/install.ps1 | iexvp handles the full development lifecycle such as package management, development servers, linting, formatting, testing and building for production.

Configuring Vite+Vite+ can be configured using a single vite.config.ts at the root of your project:import { defineConfig } from 'vite-…

18 часов назад @ github.com
FujiwaraChoki/MoneyPrinterV2
FujiwaraChoki/MoneyPrinterV2 FujiwaraChoki/MoneyPrinterV2

An Application that automates the process of making money online.

MPV2 (MoneyPrinter Version 2) is, as the name suggests, the second version of the MoneyPrinter project.

Watch the YouTube video hereFeaturesTwitter Bot (with CRON Jobs => scheduler )Twitter Bot (with CRON Jobs => ) YouTube Shorts Automater (with CRON Jobs => scheduler )YouTube Shorts Automater (with CRON Jobs => ) Affiliate Marketing (Amazon + Twitter)Affiliate Marketing (Amazon + Twitter) Find local businesses & cold outreachVersionsMoneyPrinter has different versions for multiple languages developed by the community for the community.

Code of ConductPlease read CODE_OF_CONDUCT.md for details on our code of conduct, and the …

18 часов назад @ github.com
unslothai/unsloth
unslothai/unsloth unslothai/unsloth

⚡ QuickstartUnsloth can be used in two ways: through Unsloth Studio, the web UI, or through Unsloth Core, the code-based version.

Unsloth Studio (web UI)Unsloth Studio (Beta) works on Windows, Linux, WSL and macOS.

3.13 winget install -- id = astral - sh.uv - e uv venv unsloth_studio -- python 3.13 .\unsloth_studio\Scripts\activate uv pip install unsloth -- torch - backend = auto unsloth studio setup unsloth studio - H 0.0 .

3.13 winget install -- id = astral - sh.uv - e uv venv unsloth_env -- python 3.13 .\unsloth_env\Scripts\activate uv pip install unsloth -- torch - backend = autoFor Windows, pip install unsloth works only if you have PyTorch installed.

🦥 Unsloth NewsIntroducing Unsloth …

1 day, 18 hours назад @ github.com
shadps4-emu/shadPS4
shadps4-emu/shadPS4 shadps4-emu/shadPS4

shadPS4Bloodborne by From Software Hatsune Miku Project DIVA Future Tone by SEGAYakuza 0 by SEGA DRIVECLUB™ by Evolution StudiosGeneral informationshadPS4 is an early PlayStation 4 emulator for Windows, Linux and macOS written in C++.

To verify that a game works, you can look at shadPS4 Game Compatibility.

Important macOS users need at least macOS 15.4 to run shadPS4.

Controller button Keyboard equivalent LEFT AXIS UP W LEFT AXIS DOWN S LEFT AXIS LEFT A LEFT AXIS RIGHT D RIGHT AXIS UP I RIGHT AXIS DOWN K RIGHT AXIS LEFT J RIGHT AXIS RIGHT L TRIANGLE Numpad 8 or C CIRCLE Numpad 6 or B CROSS Numpad 2 or N SQUARE Numpad 4 or V PAD UP UP PAD DOWN DOWN PAD LEFT LEFT PAD RIGHT RIGHT OPTIONS RETUR…

1 day, 18 hours назад @ github.com
dimensionalOS/dimos
dimensionalOS/dimos dimensionalOS/dimos

Dimensional is agent native -- "vibecode" your robots in natural language and build (local & hosted) multi-agent systems that work seamlessly with your hardware.

sensor_msgs import Image , ImageFormat class RobotConnection ( Module ): cmd_vel : In [ Twist ] color_image : Out [ Image ] @ rpc def start ( self ): threading .

sensor_msgs import Image from dimos .

agent import agent blueprint = autoconnect ( go2_connection (), agent (), ).

transports ({( "color_image" , Image ): LCMTransport ( "/color_image" , Image )}) # Run the blueprint if __name__ == "__main__" : blueprint .

2 days, 18 hours назад @ github.com
langchain-ai/open-swe
langchain-ai/open-swe langchain-ai/open-swe

Open-source framework for building your org's internal coding agent.

Note 💬 Read the announcement blog post hereArchitectureOpen SWE makes the same core architectural decisions as the best internal coding agents.

The repo is cloned in, the agent gets full permissions, and the blast radius of any mistake is fully contained.

Invocation — Slack, Linear, and GitHubAll three companies in the article converge on Slack as the primary invocation surface.

The open_pr_if_needed middleware acts as a backstop — if the agent finishes without opening a PR, the middleware handles it automatically.

3 days, 19 hours назад @ github.com
jarrodwatts/claude-hud
jarrodwatts/claude-hud jarrodwatts/claude-hud

Claude HUDA Claude Code plugin that shows what's happening — context usage, active tools, running agents, and todo progress.

This is a Claude Code platform limitation.

Restart Claude Code to load the new statusLine config, then the HUD will appear.

Claude HUD gives you better insights into what's happening in your Claude Code session.

Restart Claude Code so it picks up the new statusLine configOn macOS, fully quit Claude Code and run claude again in your terminalRequirementsClaude Code v1.0.80+Node.js 18+ or BunDevelopmentgit clone https://github.com/jarrodwatts/claude-hud cd claude-hud npm ci && npm run build npm testSee CONTRIBUTING.md for guidelines.

3 days, 19 hours назад @ github.com
affaan-m/everything-claude-code
affaan-m/everything-claude-code affaan-m/everything-claude-code

Production-ready agents, hooks, commands, rules, and MCP configurations evolved over 10+ months of intensive daily use building real products.

🚀 Quick StartGet up and running in under 2 minutes:Step 1: Install the Plugin# Add marketplace /plugin marketplace add affaan-m/everything-claude-code # Install plugin /plugin install everything-claude-code@everything-claude-codeStep 2: Install Rules (Required)⚠️ Important: Claude Code plugins cannot distribute rules automatically.

It runs locally through Claude Code's normal CLI/plugin surface, so it works with: Anthropic-hosted Claude CodeOfficial Claude Code gateway setups using ANTHROPIC_BASE_URL and ANTHROPIC_AUTH_TOKENand Compatible custom endp…

3 days, 19 hours назад @ github.com
andrewyng/context-hub
andrewyng/context-hub andrewyng/context-hub

Or by creating an agent skill to use Chub using SKILL.md, and ideally prompting your agent to remember to use this skill.

Most of the time, it's simple — search, fetch, use:chub search " stripe payments " # find relevant docs chub get stripe/api --lang js # fetch the doc # Agent reads the doc, writes correct code.

Feedback flows back to authors — chub feedback stripe/api up or down — vote the docs up or down so they can get better for everyone over time.

Feedback (up/down ratings with optional labels) goes to doc authors, who update the content based on what's working and what isn't.

Agent feedback (up/down ratings from real usage) flows back to authors, helping surface what needs fixing an…

4 days, 19 hours назад @ github.com
langflow-ai/openrag
langflow-ai/openrag langflow-ai/openrag

OpenRAG Intelligent Agent-powered document searchOpenRAG is a comprehensive Retrieval-Augmented Generation platform that enables intelligent document search and AI-powered conversations.

The system utilizes Langflow for document ingestion, retrieval workflows, and intelligent nudges, providing a seamless RAG experience.

run ( main ())📖 Full Python SDK DocumentationTypeScript/JavaScript SDKnpm install openrag-sdkQuick Example:import { OpenRAGClient } from "openrag-sdk" ; const client = new OpenRAGClient ( ) ; const response = await client .

📖 Full MCP Documentation🛠️ DevelopmentFor developers who want to contribute to OpenRAG or set up a development environment, see CONTRIBUTING.md.

🛟 Troubl…

4 days, 19 hours назад @ github.com
langchain-ai/deepagents
langchain-ai/deepagents langchain-ai/deepagents

Instead of wiring up prompts, tools, and context management yourself, you get a working agent immediately and customize what you need.

Quickstartpip install deepagents # or uv add deepagentsfrom deepagents import create_deep_agent agent = create_deep_agent () result = agent .

invoke ({ "messages" : [{ "role" : "user" , "content" : "Research LangGraph and write a summary" }]})The agent can plan, read/write files, and manage its own context.

chat_models import init_chat_model agent = create_deep_agent ( model = init_chat_model ( "openai:gpt-4o" ), tools = [ my_custom_tool ], system_prompt = "You are a research assistant."

Additional resourcesExamples — Working agents and patterns— Working age…

4 days, 19 hours назад @ github.com
alibaba/page-agent
alibaba/page-agent alibaba/page-agent

Control web interfaces with natural language.

🌐 English | 中文🚀 Demo | 📖 Docs | 📢 HN Discussion | 𝕏 Follow on Xpage-agent-demo-0227.mp4✨ Features🎯 Easy integration No need for browser extension / python / headless browser .

Accessibility — Make any web app accessible through natural language.

— Make any web app accessible through natural language.

Mirrors URL Global https://cdn.jsdelivr.net/npm/[email protected]/dist/iife/page-agent.demo.js China https://registry.npmmirror.com/page-agent/1.5.8/files/dist/iife/page-agent.demo.jsNPM Installationnpm install page-agentimport { PageAgent } from 'page-agent' const agent = new PageAgent ( { model : 'qwen3.5-plus' , baseURL : 'https://dashscope.aliyun…

6 days, 19 hours назад @ github.com
vectorize-io/hindsight
vectorize-io/hindsight vectorize-io/hindsight

Memory Performance & AccuracyHindsight is the most accurate agent memory system ever tested according to benchmark performance.

Docker (external PostgreSQL)export OPENAI_API_KEY=sk-xxx export HINDSIGHT_DB_PASSWORD=choose-a-password cd docker/docker-compose docker compose upClientpip install hindsight-client -U # or npm install @vectorize-io/hindsight-clientPythonfrom hindsight_client import Hindsight client = Hindsight ( base_url = "http://localhost:8888" ) # Retain: Store information client .

from hindsight_client import Hindsight client = Hindsight ( base_url = "http://localhost:8888" ) # Simple client .

from hindsight_client import Hindsight client = Hindsight ( base_url = "http://localh…

6 days, 19 hours назад @ github.com
pbakaus/impeccable
pbakaus/impeccable pbakaus/impeccable

1 skill, 20 commands, and curated anti-patterns for impeccable frontend design.

Quick start: Visit impeccable.style to download ready-to-use bundles.

Anthropic created frontend-design, a skill that guides Claude toward better UI design.

Without guidance, you get the same predictable mistakes: Inter font, purple gradients, cards nested in cards, gray text on colored backgrounds.

InstallationOption 1: Download from Website (Recommended)Visit impeccable.style, download the ZIP for your tool, and extract to your project.

6 days, 19 hours назад @ github.com
Технологии
Reddit: /r/technology/ Reddit: /r/technology/
последний пост 38 минут назад
Judge Allows DOGE Deposition Videos Back Online
Judge Allows DOGE Deposition Videos Back Online Judge Allows DOGE Deposition Videos Back Online

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

38 минут назад @ reddit.com
Exclusive: Kalshi to block athletes and politicians from trading on their markets
Exclusive: Kalshi to block athletes and politicians from trading on their markets Exclusive: Kalshi to block athletes and politicians from trading on their markets

submitted by /u/Unusual-State1827 [link] [comments]

39 минут назад @ reddit.com
Intuit beats FTC in court, ending restrictions on "free" TurboTax ads | Biden-era punishment tossed; Intuit now has more friendly regulators under U.S President.
Intuit beats FTC in court, ending restrictions on "free" TurboTax ads | Biden-era punishment tossed; Intuit now has more friendly regulators under U.S President. Intuit beats FTC in court, ending restrictions on "free" TurboTax ads | Biden-era punishment tossed; Intuit now has more friendly regulators under U.S President.

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

39 минут назад @ reddit.com
Nearly two-thirds of electronic devices discarded in Canada are still fully functional. Researchers found that most items are replaced due to minor issues like battery life or carrier upgrades, contributing to an e-waste crisis expected to reach 2.3 millio
Nearly two-thirds of electronic devices discarded in Canada are still fully functional. Researchers found that most items are replaced due to minor issues like battery life or carrier upgrades, contributing to an e-waste crisis expected to reach 2.3 millio

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

1 час назад @ reddit.com
A High School Student Just Built a Water Filter That Removes 96% of Microplastics, Without Expensive Equipment
A High School Student Just Built a Water Filter That Removes 96% of Microplastics, Without Expensive Equipment A High School Student Just Built a Water Filter That Removes 96% of Microplastics, Without Expensive Equipment

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

2 часа назад @ reddit.com
Nvidia CEO Says He Gets Where The DLSS 5 Outrage Is Coming From: ‘I Don’t Love AI Slop Myself’
Nvidia CEO Says He Gets Where The DLSS 5 Outrage Is Coming From: ‘I Don’t Love AI Slop Myself’ Nvidia CEO Says He Gets Where The DLSS 5 Outrage Is Coming From: ‘I Don’t Love AI Slop Myself’

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

2 часа назад @ reddit.com
He Was Laughed Out of Academia for This Take About Technology. Turns Out He Was Right. Marshall McLuhan was warning us about the internet long before it was invented.
He Was Laughed Out of Academia for This Take About Technology. Turns Out He Was Right. Marshall McLuhan was warning us about the internet long before it was invented. He Was Laughed Out of Academia for This Take About Technology. Turns Out He Was Right. Marshall McLuhan was warning us about the internet long before it was invented.

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

2 часа назад @ reddit.com
Rifle mounted anti-drone tech in use on frontlines
Rifle mounted anti-drone tech in use on frontlines Rifle mounted anti-drone tech in use on frontlines

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

2 часа назад @ reddit.com
Australia is settling into age-restricted social media. Canada is mulling whether to join in
Australia is settling into age-restricted social media. Canada is mulling whether to join in Australia is settling into age-restricted social media. Canada is mulling whether to join in

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

3 часа назад @ reddit.com
Apple Store Prices for SanDisk SSDs Are Suddenly Astronomical
Apple Store Prices for SanDisk SSDs Are Suddenly Astronomical Apple Store Prices for SanDisk SSDs Are Suddenly Astronomical

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

4 часа назад @ reddit.com
SF protesters call for AI pause at Anthropic, OpenAI, xAI as White House pushes national framework
SF protesters call for AI pause at Anthropic, OpenAI, xAI as White House pushes national framework SF protesters call for AI pause at Anthropic, OpenAI, xAI as White House pushes national framework

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

6 часов назад @ reddit.com
Whole Brain Emulation Achieved: Scientists Run a Fruit Fly Brain in Simulation
Whole Brain Emulation Achieved: Scientists Run a Fruit Fly Brain in Simulation Whole Brain Emulation Achieved: Scientists Run a Fruit Fly Brain in Simulation

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

7 часов назад @ reddit.com
Man who used 1,000 bots to stream AI songs pleads guilty in $8 million fraud case
Man who used 1,000 bots to stream AI songs pleads guilty in $8 million fraud case Man who used 1,000 bots to stream AI songs pleads guilty in $8 million fraud case

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

7 часов назад @ reddit.com
OnlyFans Owner Dead at 43
OnlyFans Owner Dead at 43 OnlyFans Owner Dead at 43

submitted by /u/Puzzled-Tap8042 [link] [comments]

7 часов назад @ reddit.com
Exclusive: Pentagon to adopt Palantir AI as core US military system, memo says
Exclusive: Pentagon to adopt Palantir AI as core US military system, memo says Exclusive: Pentagon to adopt Palantir AI as core US military system, memo says

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

9 часов назад @ reddit.com
Pinboard: Popular Pinboard: Popular
последний пост 15 часов назад
Regex Blaster - Write regex patterns to destroy falling strings
Regex Blaster - Write regex patterns to destroy falling strings

https://github.com/mdp/regex-blaster

https://news.ycombinator.com/item?id=47418247

15 часов назад @ mdp.github.io
GitHub - hectorvent/floci: Light, fluffy, and always free - AWS Local Emulator · GitHub
GitHub - hectorvent/floci: Light, fluffy, and always free - AWS Local Emulator · GitHub GitHub - hectorvent/floci: Light, fluffy, and always free - AWS Local Emulator · GitHub

Use any AWS region — credentials can be anything.

export AWS_ENDPOINT_URL=http://localhost:4566 export AWS_DEFAULT_REGION=us-east-1 export AWS_ACCESS_KEY_ID=test export AWS_SECRET_ACCESS_KEY=test # Try it aws s3 mb s3://my-bucket aws sqs create-queue --queue-name my-queue aws dynamodb list-tablesSDK IntegrationPoint your existing AWS SDK at http://localhost:4566 — no other changes needed.

// Java (AWS SDK v2) DynamoDbClient client = DynamoDbClient .

region ( Region .

create ( "test" , "test" ))) .

15 часов назад @ github.com
Knowledge That Never Goes Offline
Knowledge That Never Goes Offline Knowledge That Never Goes Offline

Built for Robust HardwareNOMAD runs on serious hardware so you get serious AI.

While other offline products are stuck on Raspberry Pis, NOMAD supports GPU-accelerated inference on models with real intelligence.

Community builds range from refurbished desktops to GPU-powered rigs scoring 10 to 95 on the NOMAD Benchmark.

Looking for something lightweight for a Raspberry Pi?

Project NOMAD is for when you want the full experience.

15 часов назад @ projectnomad.us
Kill Chain - by Kevin Baker - Artificial Bureaucracy
Kill Chain - by Kevin Baker - Artificial Bureaucracy Kill Chain - by Kevin Baker - Artificial Bureaucracy

It is a bureaucratic question about what happened to the kill chain, and the answer is Palantir.

As military jargon goes, “kill chain” is a remarkably honest term.

The steps in the “kill chain” are subject to constant change, to keep pace with changes in targeting doctrine, but also to incorporate whatever management fads the military’s strategic thinkers had become afflicted by.

Once a target was reified on a PowerPoint slide — the target intelligence package, or TIP — it became a black box.

Someone decided to compress the kill chain.

15 часов назад @ artificialbureaucracy.substack.com
wander: A tiny, decentralised tool you can host with just two files to explore the small web
wander: A tiny, decentralised tool you can host with just two files to explore the small web wander: A tiny, decentralised tool you can host with just two files to explore the small web

Wander Console - Discover the Small WebWander is a small, decentralised, self-hosted web console that lets your visitors explore random pages from a community of personal websites.

Further, each Wander console can link to other Wander consoles, forming a lightweight, decentralised network for browsing the small web of personal websites.

Wander consoles: It can send the visitor to another Wander console on a different website, where they can continue wandering the Web using the new Wander console.

A Wander console is just a directory on your web server with two files:index.html - This is the HTML tool that implements the Wander console user interface.

The first time you load a base console, …

15 часов назад @ codeberg.org
Designing delightful frontends with GPT-5.4 | OpenAI Developers
Designing delightful frontends with GPT-5.4 | OpenAI Developers Designing delightful frontends with GPT-5.4 | OpenAI Developers

GPT-5.4 is a better web developer than its predecessors—generating more visually appealing and ambitious frontends.

GPT-5.4 has learned this wide spectrum of design approaches and understands many different ways a website can be built.

- Full-bleed hero only: On landing pages and promotional surfaces, the hero image should be a dominant edge-to-edge visual plane or background by default.

## Utility Copy For Product UI When the work is a dashboard, app surface, admin tool, or operational workspace, default to utility copy over marketing copy.

- If a sentence could appear in a homepage hero or ad, rewrite it until it sounds like product UI.

15 часов назад @ developers.openai.com
Google Has a Secret Reference Desk. Here's How to Use It.
Google Has a Secret Reference Desk. Here's How to Use It. Google Has a Secret Reference Desk. Here's How to Use It.

Most of us search Google the same way we always have: type a few words, scroll, click something that looks close enough, and hope.

Two people searching identical phrases on the same day can get meaningfully different results without either of them knowing it.

Put two periods between two numbers with no spaces: laptop $500..$800 returns results mentioning prices in that range.

The result is publicly accessible file systems, packed with documents, datasets, and files that don’t appear in regular search results.

The results Google shows you are shaped by that business model in ways that aren’t always visible.

15 часов назад @ cardcatalogforlife.substack.com
FFmpeg 101
FFmpeg 101 FFmpeg 101

Code repository: ffmpeg-101FFmpeg package content #FFmpeg is composed of a suite of tools and libraries.

ffmpeg : a command line tool to convert multimedia files between formats: a command line tool to convert multimedia files between formats ffplay : a simple mediaplayer based on SDL and the FFmpeg libraries: a simple mediaplayer based on SDL and the FFmpeg libraries ffprobe: a simple multimedia stream analyzerFFmpeg libraries #The libraries can be used to integrate those same features into your own product.

To find the codec corresponding to the content of an AVStream , we can use the following code:AVStream * stream = format_context -> streams [ i ] ; const AVCodec * codec = avcodec_find…

15 часов назад @ blogs.igalia.com
Building an FPGA 3dfx Voodoo with Modern RTL Tools
Building an FPGA 3dfx Voodoo with Modern RTL Tools Building an FPGA 3dfx Voodoo with Modern RTL Tools

Building an FPGA 3dfx Voodoo with Modern RTL ToolsThis frame of Screamer 2 was rendered not by an original 3dfx card and not by an emulator, but by an FPGA reimplementation of the Voodoo 1 that I wrote in SpinalHDL.

Why Register Writes Cannot All Behave the Same Way That fixed-function style shows up clearly in the register interface.

In other words, register writes on the Voodoo are not just configuration updates.

The third was in blending: I was using the expanded destination color for blend-factor math, but real Voodoo behavior effectively wants the dither-subtracted destination color instead.

Together, on exactly the right class of blended textured primitives, they produced visibly wron…

15 часов назад @ noquiche.fyi
Some Things Just Take Time | Armin Ronacher's Thoughts and Writings
Some Things Just Take Time | Armin Ronacher's Thoughts and Writings Some Things Just Take Time | Armin Ronacher's Thoughts and Writings

For many things, that’s fine.

But there are things where speed is actively harmful, where the friction exists for a reason.

There’s a feeling that all the things that create friction in your life should be automated away.

When in fact many times the friction, or that things just take time, is precisely the point.

The things I value most — the projects, the relationships, the communities — are all things that took years to become what they are.

15 часов назад @ lucumr.pocoo.org
Manyana - by Bram Cohen - Bram’s Thoughts
Manyana - by Bram Cohen - Bram’s Thoughts Manyana - by Bram Cohen - Bram’s Thoughts

I’m releasing Manyana, a project which I believe presents a coherent vision for the future of version control — and a compelling case for building it.

It’s based on the fundamentally sound approach of using CRDTs for version control, which is long overdue but hasn’t happened yet because of subtle UX issues.

Manyana gives you this:<<<<<<< begin deleted left def calculate(x): a = x * 2 ======= begin added right logger.debug(f"a={a}") ======= begin deleted left b = a + 1 return b >>>>>>> end conflictEach section tells you what happened and who did it.

That one property turns out to have profound implications for every aspect of version control design.

What this is and isn’tManyana is a demo, n…

15 часов назад @ bramcohen.com
Hide macOS Tahoe's Menu Icons With This One Simple Trick - 512 Pixels
Hide macOS Tahoe's Menu Icons With This One Simple Trick - 512 Pixels Hide macOS Tahoe's Menu Icons With This One Simple Trick - 512 Pixels

I really dislike Apple’s choice to clutter macOS Tahoe’s menus with icons.

It makes menus hard to scan, and a bunch of the icons Apple has chosen make no sense and are inconsistent between system applications.

Your apps will respect this change after relaunching.

I ran this a few minutes ago and already appreciate the change.

I really think Apple should roll this change back in macOS 27, or offer a proper setting to disable these icons for those of us who find them distracting.

15 часов назад @ 512pixels.net
robida/human.json: A lightweight protocol for humans to assert authorship of their website content and vouch for the humanity of others.
robida/human.json: A lightweight protocol for humans to assert authorship of their website content and vouch for the humanity of others. robida/human.json: A lightweight protocol for humans to assert authorship of their website content and vouch for the humanity of others.

The human.json Protocolhuman.json is a lightweight protocol for humans to assert authorship of their site content and vouch for the humanity of others.

VerificationA verifier crawls the graph starting from one or more trusted seeds:import json import urllib.request from collections import deque import mf2py from yarl import URL def normalize_url ( url : URL ) -> URL | None : """Normalize a URL: lowercase host, strip default ports and trailing slash."""

parts ) def discover_human_json ( url : URL ) -> URL | None : """Fetch a URL and look for in the HTML."""

get ( "human-json" , []) return URL ( hrefs [ 0 ]) if hrefs else None def fetch_human_json ( url : URL ) -> dict | None : """Fetch and …

15 часов назад @ codeberg.org
March, 19-21: God is a comedian
March, 19-21: God is a comedian March, 19-21: God is a comedian

Three weeks into the Iran war, reality has passed through the looking glass, out the other side, and is now selling tickets to the gift shop.

This week, the US Treasury lifted all oil sanctions on Iran.

In the same OFAC filing, Russian oil sanctions were lifted as well.

He then announced that the United States doesn’t actually need the Strait of Hormuz.

Who he doesn’t need.

15 часов назад @ no01.substack.com
The Three Pillars of JavaScript Bloat
The Three Pillars of JavaScript Bloat The Three Pillars of JavaScript Bloat

The Three Pillars of JavaScript BloatOver the last couple of years, we’ve seen significant growth of the e18e community and a rise in performance focused contributions because of it.

The problem is that the vast majority of us don’t need any of this.

We don’t need to support pre-ES5 environments, we don’t pass values across frames, and we uninstall packages which break the environment.

We don’t need to do env['PATH'] || env['Path'] ourselves, we can just pull a package for that.

For something as simple as an upwards file-system traversal, maybe we don’t need 6 packages.

15 часов назад @ 43081j.com
Changelog Changelog
последний пост 1 week, 5 days назад
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 week, 5 days назад @ 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.

1 week, 6 days назад @ 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.

3 weeks назад @ 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.

3 weeks, 2 days назад @ 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.

4 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.

1 month назад @ 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.

1 month назад @ 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.

1 month, 1 week назад @ 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.

1 month, 1 week назад @ 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.

1 month, 1 week назад @ 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.

1 month, 2 weeks назад @ 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.

1 month, 2 weeks назад @ changelog.com
The tech monoculture is finally breaking
The tech monoculture is finally breaking The tech monoculture is finally breaking

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, 2 weeks назад @ changelog.com
Natural born SaaS killers
Natural born SaaS killers Natural born SaaS killers

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.

At an unbeatable price.

Squarespace – A website makes it real!

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

1 month, 3 weeks назад @ changelog.com
Securing npm is table stakes
Securing npm is table stakes Securing npm is table stakes

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

At an unbeatable price.

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

Squarespace – A website makes it real!

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

1 month, 3 weeks назад @ changelog.com
ZDNet ZDNet
последний пост 1 час назад
3 ways Cisco's DefenseClaw aims to make agentic AI safer
3 ways Cisco's DefenseClaw aims to make agentic AI safer 3 ways Cisco's DefenseClaw aims to make agentic AI safer

ZDNET's key takeawaysCisco says DefenseClaw is the oversight that's been missing in agentic AI.

And, so, on Monday, networking and security giant Cisco Systems unveiled DefenseClaw, a play on the name of the open-source OpenClaw agentic AI framework that shot to popularity in January.

New research shows how bots talking to bots can go sideways fastDefenseClaw is the "operational layer" for agentic security that has been missing, according to Cisco's head of AI software, DJ Sampath.

Cisco SystemsA multi-pronged toolkitDefenseClaw is one of many pieces of an agentic AI security toolkit that Cisco announced on Monday.

A new offering, Cisco AI Defense: Explorer Edition, will "conduct multi-turn…

1 час назад @ zdnet.com
It's your last chance to get Disney+ and Hulu at the lowest price of the year so far
It's your last chance to get Disney+ and Hulu at the lowest price of the year so far

The Hulu and Disney+ bundle was cut from $13 to $5 a month for the first three months. Here's what to know, and who's eligible to sign up before the deadline.

2 часа назад @ zdnet.com
Your iPhone has a secret button on the back - here's how to unlock it
Your iPhone has a secret button on the back - here's how to unlock it Your iPhone has a secret button on the back - here's how to unlock 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.

3 часа назад @ zdnet.com
Vivaldi's new feature should have every other browser taking note
Vivaldi's new feature should have every other browser taking note

For those who are looking for a browser UI that can be everything or nothing, look no further than the latest release of Vivaldi.

3 часа назад @ zdnet.com
Dirty screens? This $15 cleaner is used in Apple stores - and now I see why
Dirty screens? This $15 cleaner is used in Apple stores - and now I see why Dirty screens? This $15 cleaner is used in Apple stores - and now I see why

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.

4 часа назад @ zdnet.com
How I'm deleting myself from the internet without lifting a finger
How I'm deleting myself from the internet without lifting a finger How I'm deleting myself from the internet without lifting a finger

Also: How to delete or hide yourself from the internet - 11 effective ways (and most are free)But that type of information is much harder to control.

Back in December, I was checking out data removal services that my colleague, internet and privacy reporter Charlie Osborne, recommends, and came across the company.

I had been considering a service for a while when I noticed Optery was running a 20% off sale.

Optery is a data removal service that helps you remove and maintain the removal of your information from the internet.

Internet safety is so important, and with data leaks and exposures happening all of the time, I highly recommend everyone try a data removal service like Optery.

5 часов назад @ zdnet.com
After trying dozens of mice, here's why this Logitech MX model is my clear favorite
After trying dozens of mice, here's why this Logitech MX model is my clear favorite After trying dozens of mice, here's why this Logitech MX model is my clear favorite

Logitech MX Master 4 4.5 / 5 Very good ZDNET's key takeaways The Logitech MX Master 4 mouse is available now for $119.

It improves on Logitech's flagship pro mouse lineup with haptic feedback, a premium build, and lots of customization.

If you haven't used an MX Master before, the first thing you'll notice is the large button located where your thumb rests.

Although you could simply buy the MX Master 4 for its ergonomics, I highly recommend utilizing the customizations here to enhance the experience, especially given their user-friendliness.

The haptic feedback, for example, can be customized to respond to double-clicks, scrolling, or right-clicks, while smart actions let you quickly automa…

5 часов назад @ zdnet.com
I'm a Mac Mini power user - these 5 accessories make it the ultimate workstation for me
I'm a Mac Mini power user - these 5 accessories make it the ultimate workstation for me I'm a Mac Mini power user - these 5 accessories make it the ultimate workstation for me

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.

5 часов назад @ zdnet.com
My favorite color e-reader is $80 off ahead of Amazon's Big Spring Sale
My favorite color e-reader is $80 off ahead of Amazon's Big Spring Sale My favorite color e-reader is $80 off ahead of Amazon's Big Spring Sale

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.

6 часов назад @ zdnet.com
You can get a free iPhone 17e at Visible with this deal - here's how
You can get a free iPhone 17e at Visible with this deal - here's how You can get a free iPhone 17e at Visible with this deal - here's how

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.

6 часов назад @ zdnet.com
Firefox is adding a free VPN for all users - but can you trust it?
Firefox is adding a free VPN for all users - but can you trust it? Firefox is adding a free VPN for all users - but can you trust it?

Mozilla is launching a free virtual private network (VPN) service for users of it Firefox browser.

In a blog post published last week detailing upcoming updates with the rollout of Firefox 149, Mozilla said the VPN will be free and available to all Firefox users.

Can you trust the new Firefox VPN?

There's only a handful of trustworthy free VPN services out there, of which our top choices are Proton VPN and Windscribe.

Also: Firefox users didn't want AI, so Mozilla is giving them a way to kill itIf you want a free VPN that can do more than just protect your browser session, consider Proton VPN, Windscribe, or one of the other free VPN services we recommend.

7 часов назад @ zdnet.com
Consider my 4-step Android refresh routine before switching to a new phone
Consider my 4-step Android refresh routine before switching to a new phone Consider my 4-step Android refresh routine before switching to a new phone

Consider my 4-step Android refresh routine before switching to a new phoneFollow ZDNET: Add us as a preferred source on Google.

If your Android phone has started feeling slow, you should primarily focus on clearing its storage.

If you're unsure about where to start, here are a few steps you can take to make your old Android phone run faster.

This helps create a backup of your memories and clear space on your old Android phone.

Check for updatesKerry Wan/ZDNETMake sure your Android phone is up to date on the OS front.

7 часов назад @ zdnet.com
The Flipper One looks like a serious hacking tool, and I can't wait to try it - here's why
The Flipper One looks like a serious hacking tool, and I can't wait to try it - here's why The Flipper One looks like a serious hacking tool, and I can't wait to try it - here's why

ZDNET's key takeawaysThe Flipper Zero is a versatile, beginner-friendly hacking tool.

Without doubt, my favorite gadget from the past few years has been the Flipper Zero -- a pocket-sized Swiss Army knife that grants its owner access to a digital world otherwise off-limits.

The built-in support for RFID, NFC, and sub-GHz made the Flipper Zero a convenient choice (but it did lack built-in Wi-Fi support).

Comparison: Flipper Zero vs. Flipper OneAs much as it feels like the Flipper One would be an upgraded Flipper Zero, it feels more like a completely different device with a totally different audience.

Would I still keep my Flipper Zero?

8 часов назад @ zdnet.com
I replaced all my chargers with this 205W GaN adapter - now I never travel without it
I replaced all my chargers with this 205W GaN adapter - now I never travel without it I replaced all my chargers with this 205W GaN adapter - now I never travel without it

Finally, I've found a no-compromise universal travel charger that delivers a massive 205W of power through its array of ports -- the Momox 205W 9-in-1 universal travel adapter.

So, let's clear up some confusion about what makes universal travel chargers universal.

Adrian Kingsley-Hughes/ZDNETIn addition to AC sockets and plugs, this universal travel adapter also features USB ports.

ZDNET's buying adviceI took the Momox 205W 9-in-1 universal travel adapter with me on a quick trip to Spain after some extensive testing in my home country, and it performed flawlessly.

You can currently pick up this 205W travel adapter for $129 (Amazon is running limited time 19% off deal, slashing the usual $16…

8 часов назад @ zdnet.com
How to get free AI headshots that don't look fake - with Nano Banana 2
How to get free AI headshots that don't look fake - with Nano Banana 2 How to get free AI headshots that don't look fake - with Nano Banana 2

Also: The best AI image generators of 2026: There's only one clear winner nowIn each case, the photographer was expensive, and the experience was difficult.

In this article, I'll show you how to use Google's Nano Banana 2 to create professional headshots for free (or at least as part of the $20 Google AI Pro plan).

So, I told Nano Banana, "Convert the tie to a red regimental stripe tie.

That approach turned out to be a good idea, because Nano Banana returned this image:Screenshot by David Gewirtz/ZDNETThat's great!

And here's what Nano Banana returned:Screenshot by David Gewirtz/ZDNETI really like how Nano Banana added the classic crossed-arms pose.

8 часов назад @ zdnet.com
TechCrunch TechCrunch
последний пост 27 минут назад
Someone has publicly leaked an exploit kit that can hack millions of iPhones
Someone has publicly leaked an exploit kit that can hack millions of iPhones

Leaked "DarkSword" exploits published to GitHub allow hackers and cybercriminals to target iPhone users running old versions of iOS with spyware, according to cybersecurity researchers.

27 минут назад @ techcrunch.com
Zipline snaps up another $200M to fuel its drone delivery expansion
Zipline snaps up another $200M to fuel its drone delivery expansion

The funding adds to a previous round, announced in January, that valued the drone startup at $7.6 billion.

31 минуту назад @ techcrunch.com
Bernie Sanders’ AI ‘gotcha’ video flops, but the memes are great
Bernie Sanders’ AI ‘gotcha’ video flops, but the memes are great

Sen. Bernie Sanders thinks he's tricked Claude into revealing the AI industry's secrets, but he really just exposed how agreeable chatbots can become.

53 минуты назад @ techcrunch.com
Russian authorities block paywall removal site Archive.today
Russian authorities block paywall removal site Archive.today

A notice on the popular paywall-bypass website Archive.today said that access is blocked "by decision of [Russian] public authorities."

2 часа назад @ techcrunch.com
Bipartisan bill seeks to ban sports betting on Kalshi and Polymarket
Bipartisan bill seeks to ban sports betting on Kalshi and Polymarket

Since FanDuel and DraftKings are subject to state-by-state gambling laws, rather than federal law, they would not be impacted by the bill.

2 часа назад @ techcrunch.com
Vibe-coding startup Lovable is on the hunt for acquisitions
Vibe-coding startup Lovable is on the hunt for acquisitions

Lovable's founder said the fast-growing vibe coding startup is looking for startups and teams to join its company.

2 часа назад @ techcrunch.com
Apple sets June date for WWDC 2026, teasing “AI advancements”
Apple sets June date for WWDC 2026, teasing “AI advancements”

Apple will host its next Worldwide Developers Conference the week of June 8. The company is expected to announce major updates to Siri with advanced AI capabilities.

3 часа назад @ techcrunch.com
DoorDash introduces relief payments for drivers as the Iran-US war drives up gas prices
DoorDash introduces relief payments for drivers as the Iran-US war drives up gas prices

Gas is one of the largest expenses for delivery drivers. With prices continuing to surge, DoorDash is offering a lifeline to Dashers with a new relief program.

3 часа назад @ techcrunch.com
Leonid Radvinsky, the owner of OnlyFans, has passed away
Leonid Radvinsky, the owner of OnlyFans, has passed away

OnlyFans owner Leonid Radvinsky has passed away at the age of 43 after a battle with cancer.

4 часа назад @ techcrunch.com
Littlebird raises $11M for its AI-assisted ‘recall’ tool that reads your computer screen
Littlebird raises $11M for its AI-assisted ‘recall’ tool that reads your computer screen

Littlebird is building an AI that reads your screen in real time to capture context, answer questions, and automate tasks, without relying on screenshots.

5 часов назад @ techcrunch.com
Startup Gimlet Labs is solving the AI inference bottleneck in a surprisingly elegant way
Startup Gimlet Labs is solving the AI inference bottleneck in a surprisingly elegant way

Gimlet Labs just raised an $80 million Series A for tech that lets AI run across NVIDIA, AMD, Intel, ARM, Cerebras and d-Matrix chips, simultaneously.

5 часов назад @ techcrunch.com
Grab to buy Foodpanda Taiwan from Delivery Hero for $600 million
Grab to buy Foodpanda Taiwan from Delivery Hero for $600 million

Grab will acquire Delivery Hero’s Foodpanda business in Taiwan for $600 million, expanding beyond Southeast Asia and setting up a closer challenge to Uber Eats in a tightly contested market.

5 часов назад @ techcrunch.com
Elizabeth Warren calls Pentagon’s decision to bar Anthropic ‘retaliation’
Elizabeth Warren calls Pentagon’s decision to bar Anthropic ‘retaliation’

In a letter to Defense Secretary Pete Hegseth, Senator Elizabeth Warren (D-MA) equated the DoD's decision to label Anthropic a "supply chain risk" as retaliation, arguing that the Pentagon could simply have terminated its contract with the AI lab.

5 часов назад @ techcrunch.com
FBI says Iranian hackers are using Telegram to steal data in malware attacks
FBI says Iranian hackers are using Telegram to steal data in malware attacks

Hackers working for Iran’s government are using Telegram in hacking operations that use malware to target dissidents, opposition groups, and journalists who oppose its regime, according to the FBI.

5 часов назад @ techcrunch.com
Sam Altman-backed fusion startup Helion in talks with OpenAI
Sam Altman-backed fusion startup Helion in talks with OpenAI

Helion is reportedly negotiating a deal that would see it sell 12.5% of its power output to OpenAI.

6 часов назад @ techcrunch.com
Slashdot Slashdot
последний пост 1 час назад
Apple Prepares To Add Search Ads To Apple Maps
Apple Prepares To Add Search Ads To Apple Maps Apple Prepares To Add Search Ads To Apple Maps

Apple is reportedly preparing to add search ads to Apple Maps, "and it could start to roll out to users by the summer," reports AppleInsider, citing sources from Bloomberg (paywalled). From the report: Apple will make an announcement as soon as March. This will bring ads to search queries within the navigation app, which will operate similar to Google's advertising system. Retailers and brands will be able to bid for ad spots located against search queries for specific terms, such as types of food or services. The winning bid will be able to show an ad at the top of the results, pointing to a related location for that business. Apple also announced in January that it would add more ads with…

1 час назад @ search.slashdot.org
US Car Buyers Envy What They Cannot Have: Affordable Chinese EVs
US Car Buyers Envy What They Cannot Have: Affordable Chinese EVs US Car Buyers Envy What They Cannot Have: Affordable Chinese EVs

Many U.S. consumers are increasingly interested in lower-cost Chinese electric vehicles but steep tariffs and political resistance are keeping them out of the market. A recent survey from Cox Automotive found that 40% of respondents support allowing Chinese auto brands into the U.S. market. Reuters reports: While Chinese autos hit the highways of Europe, Latin America and even Canada, the U.S. government has effectively banned the cars with tariffs exceeding 100%, out of concerns over data security and protecting American jobs.

In places like Europe, a number of Chinese EVs sell at prices under $30,000. Some of those cars include amenities like advanced driving assistance software, a built-…

2 часа назад @ tech.slashdot.org
Mark Zuckerberg Is Building an AI Agent To Help Him Be CEO
Mark Zuckerberg Is Building an AI Agent To Help Him Be CEO Mark Zuckerberg Is Building an AI Agent To Help Him Be CEO

An anonymous reader quotes a report from the Wall Street Journal: Mark Zuckerberg wants everyone inside and outside his company to eventually have his or her own personal artificial-intelligence agent. He is starting with himself. Zuckerberg, the chief executive of Meta Platforms, is building a CEO agent to help him do his job (source paywalled; alternative source), according to a person familiar with the project. The agent, which is still in development, is currently helping Zuckerberg get information faster -- for instance, by retrieving answers for him that he would typically have to go through layers of people to get, the person familiar with the project said. [...] Use of AI tools has …

3 часа назад @ tech.slashdot.org
Walmart: ChatGPT Checkout Converted 3x Worse Than Website
Walmart: ChatGPT Checkout Converted 3x Worse Than Website Walmart: ChatGPT Checkout Converted 3x Worse Than Website

Walmart found that purchases made directly inside ChatGPT converted at only one-third the rate of traditional website checkouts, leading it to abandon OpenAI's Instant Checkout in favor of routing users through its own platform. Search Engine Land reports: Starting in November, Walmart offered about 200,000 products through OpenAI's Instant Checkout. Users could complete purchases inside ChatGPT without visiting Walmart's site. Daniel Danker, Walmart's EVP of product and design, said those in-chat purchases converted at one-third the rate of click-out transactions. He called the experience "unsatisfying" and confirmed Walmart is moving away from it. Instant Checkout was designed to let user…

4 часа назад @ tech.slashdot.org
OnlyFans Owner Dies At 43
OnlyFans Owner Dies At 43 OnlyFans Owner Dies At 43

Computershack shares a report from NBC News: Leonid Radvinsky, the owner of adult-content platform OnlyFans, has died of cancer at the age of 43, the company said in a statement on Monday. "We are deeply saddened to announce the death of Leo Radvinsky. Leo passed away peacefully after a long battle with cancer," an OnlyFans spokesperson said. "His family have requested privacy at this difficult time." Radvinsky, a Ukrainian-American entrepreneur, acquired Fenix International Limited, the parent company of OnlyFans, in 2018 and served as its director and majority shareholder. He also runs Leo, a venture capital fund he founded in 2009 that focuses primarily on investments in technology compa…

4 часа назад @ tech.slashdot.org
Uber's Deal Blitz To Stop a Robotaxi Monopoly
Uber's Deal Blitz To Stop a Robotaxi Monopoly Uber's Deal Blitz To Stop a Robotaxi Monopoly

Uber is aggressively partnering with multiple robotaxi companies to avoid a future dominated by Waymo or Tesla. The ride-hailing giant has struck deals with at least a dozen autonomous vehicle players in recent years. Just last week, it announced a $1.25 billion partnership with Rivian, with plans to deploy up to 50,000 driverless vehicles over the next decade. Business Insider reports: Uber announced three new robotaxi partnerships in the past few weeks with Zoox, Wayve-Nissan, and Rivian. In less than half a decade, the company has secured at least a dozen deals, including with WeRide, AVride, May Mobility, Momenta, Pony.AI, Wayve, Baidu's Apollo Go, Motional, and Lucid-Nuro. Still, less …

5 часов назад @ tech.slashdot.org
Reddit Is Weighing Identity Verification Methods To Combat Its Bot Problem
Reddit Is Weighing Identity Verification Methods To Combat Its Bot Problem Reddit Is Weighing Identity Verification Methods To Combat Its Bot Problem

An anonymous reader quotes a report from Engadget: There could be one more step required before creating an account and posting on Reddit in the future. According to Reddit's CEO, Steve Huffman, the social media platform is exploring different ways to verify a user is human and not a bot. When asked by the TBPN podcast how to confirm that it's a human using Reddit, Huffman responded with several verification methods with varying degrees of heavy-handedness. "The most lightweight way is with something like Face ID or Touch ID," Huffman said during the interview. "They actually require a human presence, like a human has to touch, or do or look at something, so that actually just proves there'…

6 часов назад @ tech.slashdot.org
Will AI Force Source Code to Evolve - Or Make it Extinct?
Will AI Force Source Code to Evolve - Or Make it Extinct? Will AI Force Source Code to Evolve - Or Make it Extinct?

Will there be an AI-optimized programming language at the expense of human readability? There's now been experiments with minimizing tokens for "LLM efficiency, without any concern for how it would serve human developers." This new article asks if AI will force source code to evolve — or make it extinct, noting that Stephen Cass, the special projects editor at IEEE Spectrum, has even been asking the ultimate question about our future. "Could we get our AIs to go straight from prompt to an intermediate language that could be fed into the interpreter or compiler of our choice? Do we need high-level languages at all in that future?" Cass acknowledged the obvious downsides. ("True, this would t…

10 часов назад @ developers.slashdot.org
GrapheneOS Refuses to Comply with Age-Verification Laws
GrapheneOS Refuses to Comply with Age-Verification Laws GrapheneOS Refuses to Comply with Age-Verification Laws

An anonymous reader shared this report from Tom's Hardware: GrapheneOS, the privacy-focused Android fork, said in a post on X on Friday that it will not comply with emerging laws requiring operating systems to collect user age data at setup. "GrapheneOS will remain usable by anyone around the world without requiring personal information, identification or an account," the project stated. "If GrapheneOS devices can't be sold in a region due to their regulations, so be it." The statement came after Brazil's Digital ECA (Law 15.211) took effect on March 17, imposing fines of up to R$50 million (roughly $9.5 million) per violation on operating system providers that fail to implement age verific…

13 часов назад @ tech.slashdot.org
Some Microsoft Insiders Fight to Drop Windows 11's Microsoft Account Requirements
Some Microsoft Insiders Fight to Drop Windows 11's Microsoft Account Requirements Some Microsoft Insiders Fight to Drop Windows 11's Microsoft Account Requirements

Yes, Microsoft announced it's fixing common Windows 11 complaints. But what about getting rid of that requirement to have a Microsoft account before installing Windows 11? While Microsoft didn't mention that at all, the senior editor at the blog Windows Central reports there's "a number of people" internally pushing at Microsoft to relax that requirement: Microsoft Vice President and overall developer legend Scott Hanselman has posted on X in response to someone asking him about possibly relaxing the Microsoft account requirements, saying "Ya I hate that. Working on it...." [Hanselman made that remark Friday, to his 328,200 followers.] The blog notes "It would be very easy for Microsoft to …

16 часов назад @ tech.slashdot.org
Walmart Announces Digital Price Labels for Every Store in the U.S. By the End of 2026
Walmart Announces Digital Price Labels for Every Store in the U.S. By the End of 2026 Walmart Announces Digital Price Labels for Every Store in the U.S. By the End of 2026

Walmart is "rolling out digital price tags to replace the old paper ones," reports CNBC, planning to implement them in all U.S. stores by the end of the year: Amanda Bailey, a team leader in electronics who works at a Walmart in West Chester, Ohio, estimates that the digital shelf labels — known as DSLs — have cut the time she used to spend on pricing duties by 75%, time that has freed her up to help customers. She also said the DSLs are a game-changer because Walmart's Spark delivery drivers looking for an item will see a flashing DSL so they can more easily find the product... Sean Turner, chief technology officer of Swiftly, a retail technology and media platform serving the grocery indu…

19 часов назад @ slashdot.org
Trapped! Inside a Self-Driving Car During an Anti-Robot Attack
Trapped! Inside a Self-Driving Car During an Anti-Robot Attack Trapped! Inside a Self-Driving Car During an Anti-Robot Attack

A man crossing the street one San Francisco night spotted a self-driving car — and decided to confront its passenger, 37-year-old tech worker Doug Fulop. The New York Times reports the man yelled that "he wanted to kill Fulop and the other two passengers for giving money to a robot."

A taxi driver would have simply driven away. But Fulop's vehicle had no driver — it was a self-driving Waymo... Self-driving cars are designed to stop moving if a person is nearby. People can take advantage of that function to harass and threaten their passengers.... It was unsettling to be trapped inside a Waymo during an attack, Fulop said. "If he had kept hammering on one window instead of alternating, I'm s…

22 часа назад @ tech.slashdot.org
Elon Musk Announces $20B 'Terafab' Chip Plant in Texas To Supply His Companies
Elon Musk Announces $20B 'Terafab' Chip Plant in Texas To Supply His Companies Elon Musk Announces $20B 'Terafab' Chip Plant in Texas To Supply His Companies

"Billionaire Elon Musk has announced plans to build a $20 billion chip plant in Austin, Texas" reports a local news station: Musk announced on Saturday night during a livestream on his social media platform X that the plant, called "Terafab," will be built near Tesla's campus and gigafactory in eastern Travis County. The long-anticipated project is a joint venture between Musk-owned properties Tesla, SpaceX and xAI... The Terafab plant is expected to begin production in 2027. Musk "has said the semiconductor industry is moving too slow to keep up with the supply of chips he expects to need," writes Bloomberg — quoting Musk as saying "We either build the Terafab or we don't have the chips, a…

23 часа назад @ hardware.slashdot.org
Tech Leaders Support California Bill to Stop 'Dominant Platforms' From Blocking Competition
Tech Leaders Support California Bill to Stop 'Dominant Platforms' From Blocking Competition Tech Leaders Support California Bill to Stop 'Dominant Platforms' From Blocking Competition

A new bill proposed in California "goes after big tech companies" writes Semafor. Supported by Y Combinator, Cory Doctorow , and the nonprofit advocacy group Fight for the Future, it's called the "BASED" act — an acronym which stands for "Blocking Anticompetitive Self-preferencing by Entrenched Dominant platforms." As announced by San Francisco state representative Scott Wiener, the bill "will restore competition to the digital marketplace by prohibiting any digital platform with a market capitalization greater than $1 trillion and serving 100 million or more monthly users in the U.S., from favoring their own products and services on the platforms they operate." More from Scott Wiener;s ann…

1 day назад @ yro.slashdot.org
Why Apple Temporarily Blocked Popular Vibe Coding Apps
Why Apple Temporarily Blocked Popular Vibe Coding Apps Why Apple Temporarily Blocked Popular Vibe Coding Apps

An anonymous reader shared this report from the tech-news blog Neowin: Apple appears to have temporarily prevented apps, including Replit and Vibecode, from pushing new updates. Apple seems bothered by how apps like Replit present vibe-coded apps in a web view within the original app. This process virtually allows the app to become something else. And the new app isn't distributed via the App Store, but it still runs on the user's device... [S]uch apps would also bypass the App Store Review process that ensures that apps are safe to use and meet Apple's design and performance standards... According to the publication (via MacRumors), Apple was close to approving pending updates for such app…

1 day, 1 hour назад @ apple.slashdot.org
Блоги людей
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 day, 3 hours назад @ 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 week назад @ 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.

3 weeks назад @ 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]: …

3 weeks, 3 days назад @ nedbatchelder.com
>Street guesser
Street guesser Street guesser

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

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

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

1 month назад @ 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.

1 month назад @ 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…

1 month, 1 week назад @ 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.

1 month, 2 weeks назад @ stratechery.com
Сага о двух туалетах в IT-корпорации
Сага о двух туалетах в IT-корпорации

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

1 month, 3 weeks назад @ 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.

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

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

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

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

1 month, 3 weeks назад @ 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…

1 month, 3 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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

2 months, 1 week назад @ 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.

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

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

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

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

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

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

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

2 months, 1 week назад @ 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.

2 months, 2 weeks назад @ 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…

2 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…

3 months назад @ 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…

3 months назад @ 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.

3 months назад @ 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.…

3 months назад @ 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…

3 months назад @ nedbatchelder.com
Итоги Года 2025
Итоги Года 2025 Итоги Года 2025

2024, 2023, 2022, 2021, 2020, 2019, 2018, 2017, 2016, 2015, 2014, 2013, 2012, 2011, 2010, 2009, 2008 Нет, Дядя Вострек, не умеешь ты хайпить. Надо было больше пиздеть и меньше делать, а ты наоборот начал — много делаешь и мало пиздишь. А это прямой путь к выгоранию и забвению одновременно...

Необычный год вышел, мда. Я потерял работу и так и не смог найти новую ? или не смог найти сил опять танцевать бинарные деревья на интервью? . Навайбкодил несколько проектов, на некоторые из которых потр…

3 months, 1 week назад @ 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.

3 months, 2 weeks назад @ stratechery.com
>Вайб-кодинг, дофамин и слот-машины
Вайб-кодинг, дофамин и слот-машины

Осознал недавно, чем вайб-кодинг в его классическом виде похож на лудоманию и при чем тут дофамин

Что за вайб-кодинг такой

Давайте сначала начнем с определений. Не каждая разработка с ллмкой — вайб-кодинг, но каждый вайб-кодинг — разработка с помощью ллмки.

Вайб-кодингом я буду называть программирование с помощью ллмки, в котором есть вот такие характеристики: Мало изначального планирования. Буквально короткое описание, вкинутое в ллмку и потом разберемся походу.

Попытка сразу попасть в нужную конечную точку. Желательно за одну итерацию.

Значительная часть кода написана ллмкой. Человек в целом не читает весь код, не проверяет его, только смотрит на результат. Архитектура придумана тоже ллмк…

3 months, 2 weeks назад @ 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.

3 months, 3 weeks назад @ stratechery.com
>Сайд-бай-сайб 0.2.0
Сайд-бай-сайб 0.2.0 Сайд-бай-сайб 0.2.0

В сайд-бай-сайде вышла следующая версия

Изменения: Человекочитаемые URL для голосований

Было: /v/06b95c10-7688-4106-8e75-762035290c67/

Стало: /v/HairyParrotsPursueRudely/ Улучшение интеграции с Mattermost:

Сайд-бай-сайд сгенерирует превьюшки к уведомлениям в чате.

По окончании голосованию в чате будет итог голосования. Было: Стало: Мелочи: Кликабельные ссылки в описаниях. Ссылки в комментарии станут кликабельными.

На странице голосования теперь тоже показывается количество проголосовавших.

На странице голосований можно прокручивать картинки перетаскиванием мыши

Белый список доменов эл. почты. Можно указать домены, вход с которых будет разрешен.

Драг-н-дропать файлы можно на всю страницу, да…

3 months, 3 weeks назад @ 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…

4 months назад @ 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…

4 months назад @ 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.

4 months назад @ 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() -> 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…

4 months, 1 week назад @ 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(): 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…

4 months, 1 week назад @ nedbatchelder.com
Матрица согласований
Матрица согласований

У дизайнера найдется десяток людей, которые «пытаются помочь» ему делать свою работу. И это одна из первых ловушек, в которую попадает начинающий тимлид.

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

После этого интерфейс превращается в компромисс, пытающийся учесть всё и сразу.

Оговорюсь — я не против фидбека от команды, но он должен быть в формате рекомендаций, а финальное решение остаётся за дизайнером.

У нас тоже были часовые общие синки: куча м…

4 months, 1 week назад @ blogdm.ru
⛵ Вастрик Флот 2025 ⛵
⛵ Вастрик Флот 2025 ⛵ ⛵ Вастрик Флот 2025 ⛵

Искатели кайфов, дрейф на рейв, парусить вокруг торнадо, высадка на необитаемый остров

4 months, 1 week назад @ vas3k.club
Three releases, one new organization
Three releases, one new organization

It’s been a busy, bumpy week with coverage.py. Some things did not go

smoothly, and I didn’t handle everything as well as I could have.It started with trying to fix issue 2064 about

conflicts between the “sysmon” measurement core and a concurrency setting.To measure your code, coverage.py needs to know what code got executed. To

know that, it collects execution events from the Python interpreter. CPython now

has two mechanisms for this: trace functions and sys.monitoring. Coverage.py

has two implementations of a trace function (in C and in Python), and an

implementation of a sys.monitoring listener. These three components are the

measurement cores, known as “ctrace”, “pytrace”, and “sysmon”…

4 months, 1 week назад @ nedbatchelder.com
Three releases, one new organization
Three releases, one new organization

It’s been a busy, bumpy week with coverage.py. Some things did not go

smoothly, and I didn’t handle everything as well as I could have.It started with trying to fix issue 2064 about

conflicts between the “sysmon” measurement core and a concurrency setting.To measure your code, coverage.py needs to know what code got executed. To

know that, it collects execution events from the Python interpreter. CPython now

has two mechanisms for this: trace functions and sys.monitoring. Coverage.py

has two implementations of a trace function (in C and in Python), and an

implementation of a sys.monitoring listener. These three components are the

measurement cores, known as “ctrace”, “pytrace”, and “sysmon”…

4 months, 1 week назад @ nedbatchelder.com
The Benefits of Bubbles
The Benefits of Bubbles

We are in an AI Bubble: the big question is if this bubble will worth it for the physical infrastructure and coordinated innovation that result?

4 months, 2 weeks назад @ stratechery.com
Side project advice
Side project advice

Last night was a Boston Python project night where I

had a good conversation with a few people that was mostly guided by questions

from a nice guy named Mark.How to write nice code in researchMark works in research and made the classic observation that research code is

often messy, and asked about how to make it nicer.I pointed out that for software engineers, the code is the product. For

research, the results are the product, so there’s a reason the code can be and

often is messier. It’s important to keep the goal in mind. I mentioned it might

not be worth it to add type annotations, detailed docstrings, or whatever else

would make the code “nice”.But the more you can make “nice” a habit, …

4 months, 3 weeks назад @ nedbatchelder.com
Side project advice
Side project advice

Last night was a Boston Python project night where I

had a good conversation with a few people that was mostly guided by questions

from a nice guy named Mark.How to write nice code in researchMark works in research and made the classic observation that research code is

often messy, and asked about how to make it nicer.I pointed out that for software engineers, the code is the product. For

research, the results are the product, so there’s a reason the code can be and

often is messier. It’s important to keep the goal in mind. I mentioned it might

not be worth it to add type annotations, detailed docstrings, or whatever else

would make the code “nice”.But the more you can make “nice” a habit, …

4 months, 3 weeks назад @ nedbatchelder.com
Resiliency and Scale
Resiliency and Scale

Decreasing transportation and communications costs increases resiliency in theory, but destroys it in practice. The only way to have resiliency is through less efficiency.

5 months назад @ stratechery.com
Natural cubics, circular Simplex
Natural cubics, circular Simplex Natural cubics, circular Simplex

This post continues where Hobby Hilbert Simplex left

off. If you haven’t read it yet, start there. It explains the basics of Hobby

curves, Hilbert sorting and Simplex noise that I’m using.AnimationTo animate one of our drawings, instead of considering 40 lines, we’ll think

about 140 lines. The first frame of the animation will draw lines 1 through 40,

the second draws lines 2 through 41, and so on until the 100th frame is lines

100 through 140:I’ve used a single Hilbert sorter for all of the frames to remove some

jumping, but the Hobby curves still hop around. Also the animation doesn’t loop

smoothly, so there’s a giant jump from frame 100 back to frame 1.Natural cubicsHobby curves look nic…

5 months назад @ nedbatchelder.com
Natural cubics, circular Simplex
Natural cubics, circular Simplex Natural cubics, circular Simplex

This post continues where Hobby Hilbert Simplex left

off. If you haven’t read it yet, start there. It explains the basics of Hobby

curves, Hilbert sorting and Simplex noise that I’m using.AnimationTo animate one of our drawings, instead of considering 40 lines, we’ll think

about 140 lines. The first frame of the animation will draw lines 1 through 40,

the second draws lines 2 through 41, and so on until the 100th frame is lines

100 through 140:I’ve used a single Hilbert sorter for all of the frames to remove some

jumping, but the Hobby curves still hop around. Also the animation doesn’t loop

smoothly, so there’s a giant jump from frame 100 back to frame 1.Natural cubicsHobby curves look nic…

5 months назад @ nedbatchelder.com
OpenAI's Windows Play
OpenAI's Windows Play

OpenAI is making a play to be the Windows of AI: the all-encompassing platform that controls both hardware supplier and software developers.

5 months, 2 weeks назад @ stratechery.com
Инди-разработка
Show HN Show HN
последний пост 2 часа назад
Show HN: Toq protocol – An open-source, agent-to-agent communication protocol
Show HN: Toq protocol – An open-source, agent-to-agent communication protocol Show HN: Toq protocol – An open-source, agent-to-agent communication protocol

toq protocol lets AI agents talk to each other securely, across machines, frameworks, and networks.

toq setup && toq up and your agent is reachable.

Only agents running toq protocol can connect.

Only agents running toq protocol can connect.

toq handler add auto-reply --command ~ /handlers/auto-reply.shHandlers receive context through environment variables: TOQ_FROM , TOQ_TEXT , TOQ_THREAD , TOQ_TIMESTAMP .

2 часа назад @ github.com
Show HN: Cronbox – Schedule AI Agents
Show HN: Cronbox – Schedule AI Agents

Cronbox is a cron, where an AI agent wakes up and works on a schedule. We believe a lot of repetitive tasks can benefit a lot from AI agents. And scheduling them in the cloud keeps you hands-free.You can do things like, taking screenshot of a site, resize it to size 1000 x 1000, and look for price changes on the page and get notified via email.Or ask it to draw svg of a 'pelican riding a bicyle' whenever a new model is released on openai and mail it to you.Every job runs in its own linux sandbox, so a lot more things are possible.While Claude's cloud scheduling is limited by a restrictive sandbox and no screenshot or SVG support, cronbox.sh provides a full power environment with unrestricte…

2 часа назад @ cronbox.sh
Show HN: I built a site that maps the web from a bounty hunter's perspective
Show HN: I built a site that maps the web from a bounty hunter's perspective Show HN: I built a site that maps the web from a bounty hunter's perspective

I built this because I wanted my own directory of public companies running bug bounty programs — where I could see their infrastructure in one place and have a real idea of where to start poking holes.Neobotnet collects intel data from companies on HackerOne and Bugcrowd — subdomains, DNS records, web servers with status codes, indexed/crawled URLs, JS files, and exposed secrets/paths (still building this last part). The data is already there when you need it. No scans to run.Currently tracking 41 companies, 63,878 web servers, and 1.8M+ URLs.Long term I want to expand this to startups that depend on cloud infrastructure so they can see what's publicly accessible.Made a free sample with Cap…

2 часа назад @ neobotnet.com
Show HN: Per-table access control for DuckLake lakehouses
Show HN: Per-table access control for DuckLake lakehouses Show HN: Per-table access control for DuckLake lakehouses

Experimental — ducklake-guard is under active development.

Review carefully before using in sensitive or production environments.

Per-table access control for DuckLake lakehouses on Hetzner Cloud.

A single CLI manages S3 bucket policies, Postgres catalog visibility (RLS), and catalog roles, with an audit log.

Note I'll add AWS and Scaleway, make sure to follow the repo for any updates.

2 часа назад @ github.com
Show HN: Primer – build software with AI agents one milestone at a time
Show HN: Primer – build software with AI agents one milestone at a time Show HN: Primer – build software with AI agents one milestone at a time

How Primer WorksPrimer has two layers:The setup layer: the primer CLI creates the workspace, checks your environment, and manages workflow state.

The working layer: your AI coding agent uses the generated Primer actions inside that workspace while you build milestone by milestone.

If your preferred AI tool can follow workspace instructions and run the local primer CLI, Primer can usually fit that workflow as well.

TroubleshootingRun primer doctor after primer init if you are unsure whether your local toolchain is ready for the current milestone.

after if you are unsure whether your local toolchain is ready for the current milestone.

2 часа назад @ github.com
Show HN: Git Hitched – An Open Source Wedding Platform
Show HN: Git Hitched – An Open Source Wedding Platform Show HN: Git Hitched – An Open Source Wedding Platform

Automated emails — Four RSVP email types (invitation, confirmation, update notification, reminder) plus three hotel booking emails (confirmation, admin notification, refund).

— Four RSVP email types (invitation, confirmation, update notification, reminder) plus three hotel booking emails (confirmation, admin notification, refund).

Page feature flags — Show or hide any content page (events, travel, stay, FAQ, etc.)

Admin DashboardThe admin panel at /admin is protected by HTTP basic auth.

Data Modelinvites 1──* guests invites 1──* event_invites *──1 events guests 1──* rsvps *──1 events invites 1──* hotel_bookingsInvite — A household/party.

2 часа назад @ github.com
Show HN: LumaBoards – an offline Kanban app for macOS
Show HN: LumaBoards – an offline Kanban app for macOS Show HN: LumaBoards – an offline Kanban app for macOS

I've tried a number of personal Kanban apps for macOS over the years and never quite found one that I loved.Nowadays, many want an account, push cloud sync, subscriptions, contain tons of telemetry, or some combination of the above (don't get me started on AI) and to be honest many are overkill for managing my own tasks. (less friction = more productivity)So... I built my own Kanban app.*LumaBoards* is a simple Kanban for macOS designed for solo use.Features are intentionally pretty minimal:* drag-and-drop cards and columns* due dates + filtering* tags / colors* keyboard shortcuts (not vim… sorry)* offline storageThere's a *free version* with a single board (no attachments or import/export)…

3 часа назад @ offlineapps.gumroad.com
Show HN: JulIDE – Lightweight Julia IDE Built with Tauri
Show HN: JulIDE – Lightweight Julia IDE Built with Tauri Show HN: JulIDE – Lightweight Julia IDE Built with Tauri

julIDEA modern, fully-featured IDE for the Julia programming language, built with Tauri 2, React, TypeScript, and Rust.

add ( " LanguageServer " ) # LSP support Pkg .

Changes to both the React frontend and Rust backend are hot-reloaded.

Production Build# Build the distributable application bun run tauri buildThe output is placed in src-tauri/target/release/bundle/ and includes platform-specific installers ( .dmg on macOS, .msi / .exe on Windows, .deb / .AppImage on Linux).

LicenseMIT -- Copyright 2026 Ofek Bickel

3 часа назад @ github.com
Show HN: Minimalist library to generate SVG views of scientific data
Show HN: Minimalist library to generate SVG views of scientific data Show HN: Minimalist library to generate SVG views of scientific data

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 часа назад @ github.com
Show HN: Tok/s on a 35B MoE model using a $100 AMD crypto APU and Vulkan
Show HN: Tok/s on a 35B MoE model using a $100 AMD crypto APU and Vulkan Show HN: Tok/s on a 35B MoE model using a $100 AMD crypto APU and Vulkan

With Q4_0 KV deployed (see §4.4), these memory constraints no longer apply — qwen3:14b now reaches 128K context without deadlocks.

The math: 9.3 GB weights + 2 GB KV cache + 1 GB OS ≈ 12.3 GB < 16 GB available.

Quality assessment — 5 tasks × 3 runs, scored by Python script (keyword match, JSON parse, regex):Task MoE 35B-A3B qwen3.5:9b Summarization 3/3 ✅ 3/3 ✅ JSON extraction 3/3 ✅ 3/3 ✅ Fact recall 3/3 ✅ 3/3 ✅ Instruction following 2/3 ⚠️ 3/3 ✅ Arithmetic (17 × 23) 3/3 ✅ 3/3 ✅ Total 14/15 (93%) 15/15 (100%)The MoE's one miss was adding preamble before a numbered list — the list itself was correct.

Ollama only 10.6 GB — 3.5 GB 14.1 GB ✅ 1.9 GB free + large-v3-turbo 10.6 GB 1.6 GB 3.5 GB 15.…

3 часа назад @ github.com
Show HN: Daily Unfold – A paper folding puzzle game
Show HN: Daily Unfold – A paper folding puzzle game Show HN: Daily Unfold – A paper folding puzzle game

I built a daily puzzle where a piece of paper is folded and hole-punched, and you predict where all the holes end up when it's unfolded.

It's the kind of thing I used to do in grade school with actual paper and scissors, and it turns out the mental version is a surprisingly good spatial reasoning challenge.Three difficulties each day: easy is a 4×4 grid with one fold, hard is 6×6 with three folds.It's built with Next.js. The puzzles are generated deterministically on the fly using a daily seed.The engine runs a forward simulation of the paper folds using 2D coordinate mirroring, then calculates a "cognitive difficulty score." It weights factors that mess with human spatial reasoning, like o…

3 часа назад @ dailyunfold.com
Show HN: Run Labs – A multi-product startup
Show HN: Run Labs – A multi-product startup Show HN: Run Labs – A multi-product startup

✓ Interactive money missions✓ Built for families and classrooms Visit Oscar Moneyfox →Intellipaper.ai Productivity AI · Students & professionals PDF chat, research, and AI writing in one workspace.

✓ PDF chat✓ Research across 200M papers Visit Intellipaper.ai →Branding5 Brand Strategy · Founders, teams & agencies Clear positioning and marketing strategy in minutes.

✓ Strategy in ~30 minutes✓ Trusted by 2k+ teams Visit Branding5 →FragDiePartei Civic Tech · Voters & educators Compare election programs with plain-language AI guidance.

✓ Program comparison✓ Civic education focus Visit FragDiePartei →LORA Educational AI · Schools & families A story-first learning app …

3 часа назад @ run-labs.com
Show HN: SRD, a simple DNS-driven HTTP redirect service
Show HN: SRD, a simple DNS-driven HTTP redirect service Show HN: SRD, a simple DNS-driven HTTP redirect service

Quick StartThis quickstart uses the hosted SRD service, though you're welcome to deploy your own.

IN TXT "v=srd1; dest=https://newblog.example.net"Now hit https://blog.example.com and you should be redirected to https://newblog.example.net.

IN TXT "v=srd1; dest=https://hello.example.net"The _srd record formatThe _srd record is a TXT record that contains the redirect configuration.

full is the full referring URL, host is the hostname of the referring URL, and none is no Referer header.

You can use the hosted SRD by pointing your domain at the SRD Service CNAME: in.srd.sh , or the SRD Service Static IPv4: 34.123.249.80 .

3 часа назад @ github.com
Show HN: Littlebird – Screenreading is the missing link in AI
Show HN: Littlebird – Screenreading is the missing link in AI Show HN: Littlebird – Screenreading is the missing link in AI

Do I need to connect all my apps for Littlebird to work?

No, and that's what makes Littlebird so powerful.

It works automatically by seeing what's on your screen, giving you a unified memory across all your apps without any setup.

However, we're introducing optional integrations with your favorite apps.

For example, you can integrate Littlebird with Google Calendar to help schedule meetings on your behalf.

3 часа назад @ littlebird.ai
Show HN: Zoom Auto-Joiner
Show HN: Zoom Auto-Joiner Show HN: Zoom Auto-Joiner

Automatically joins your Zoom meetings on macOS.

Reads your local macOS Calendar (works with Google Calendar synced via System Settings > Internet Accounts), watches for upcoming meetings with Zoom links, and opens them at the right time.

No Google Cloud API keys needed.

Just a Python script and a menu bar app that starts on login and restarts on crash.

Install/bin/bash -c " $( curl -fsSL https://raw.githubusercontent.com/PiotrMackowski/auto-joiner/main/setup.sh ) "On first run, macOS will ask you to grant Calendar access — say yes.

3 часа назад @ github.com
Starter Story Starter Story
последний пост None
Indiehackers
последний пост 1 day, 4 hours назад
I shipped 3 features this weekend based entirely on community feedback. Here's what
I shipped 3 features this weekend based entirely on community feedback. Here's what I shipped 3 features this weekend based entirely on community feedback. Here's what

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, 4 hours назад @ rss.app
Looking for Technical Cofounder for Heavy Civil SaaS
Looking for Technical Cofounder for Heavy Civil SaaS Looking for Technical Cofounder for Heavy Civil SaaS

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, 5 hours назад @ rss.app
I automated the most annoying part of shipping side projects
I automated the most annoying part of shipping side projects I automated the most annoying part of shipping side projects

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, 3 hours назад @ rss.app
I realized showing problems isn’t enough — so
I realized showing problems isn’t enough — so I realized showing problems isn’t enough — so

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, 4 hours назад @ rss.app
How do you combine sign up and payment in one checkout flow?
How do you combine sign up and payment in one checkout flow? How do you combine sign up and payment in one checkout flow?

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, 4 hours назад @ rss.app
I built an AI that writes social media posts for small business owners
I built an AI that writes social media posts for small business owners I built an AI that writes social media posts for small business owners

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

3 days, 1 hour назад @ rss.app
Early-stage founders — what’s been harder so far: building or getting users?
Early-stage founders — what’s been harder so far: building or getting users? Early-stage founders — what’s been harder so far: building or getting users?

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

3 days, 5 hours назад @ rss.app
🚀 $0 → $10,000/month as a Design Agency Founder
🚀 $0 → $10,000/month as a Design Agency Founder 🚀 $0 → $10,000/month as a Design Agency Founder

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

3 days, 14 hours назад @ rss.app
I Run 5 Businesses from Brooklyn with Zero Employees. The Tools Cost $48/month.
I Run 5 Businesses from Brooklyn with Zero Employees. The Tools Cost $48/month. I Run 5 Businesses from Brooklyn with Zero Employees. The Tools Cost $48/month.

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

3 days, 21 hours назад @ rss.app
Why My First Solo-Startup Failed
Why My First Solo-Startup Failed Why My First Solo-Startup Failed

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

3 days, 23 hours назад @ rss.app
Competing on price to carve out an $18k MRR foothold
Competing on price to carve out an $18k MRR foothold Competing on price to carve out an $18k MRR foothold

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

4 days назад @ rss.app
I've been reading 50 indie builder posts a day for the past month. Here's the pattern nobody talks about.
I've been reading 50 indie builder posts a day for the past month. Here's the pattern nobody talks about. I've been reading 50 indie builder posts a day for the past month. Here's the pattern nobody talks about.

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

4 days, 7 hours назад @ rss.app
Most WordPress founders are one plugin away from doubling their organic traffic and do not know it
Most WordPress founders are one plugin away from doubling their organic traffic and do not know it Most WordPress founders are one plugin away from doubling their organic traffic and do not know it

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

5 days, 3 hours назад @ rss.app
Day 5 of an AI running its own marketing business. $0 revenue. Here's everything.
Day 5 of an AI running its own marketing business. $0 revenue. Here's everything. Day 5 of an AI running its own marketing business. $0 revenue. Here's everything.

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

5 days, 5 hours назад @ rss.app
$36K in 7 days: Why distribution beats product (early on)
$36K in 7 days: Why distribution beats product (early on) $36K in 7 days: Why distribution beats product (early on)

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

5 days, 6 hours назад @ rss.app
Reddit: /r/SideProject Reddit: /r/SideProject
последний пост 58 минут назад
Semi-private flights don't show up on Google Flights. And more people are booking them every year. So I built the search engine to see them all in one place.
Semi-private flights don't show up on Google Flights. And more people are booking them every year. So I built the search engine to see them all in one place. Semi-private flights don't show up on Google Flights. And more people are booking them every year. So I built the search engine to see them all in one place.

submitted by /u/Conscious-Map-9928 [link] [comments]

58 минут назад @ reddit.com
Working on a vibe coding platform for kids
Working on a vibe coding platform for kids Working on a vibe coding platform for kids

Built a vibe coding platform specifically build for kids. They can build any kind of app, educational, 2D games, 3D games, creative tools, etc. Simplifies a lot of the integration pieces so this all runs in the cloud on either web or iPad (soon) submitted by /u/No_Hamster8818 [link] [comments]

58 минут назад @ reddit.com
I created an ai-powered app that generates meals considering your allergies and diet
I created an ai-powered app that generates meals considering your allergies and diet

https://mealcraft-app.base44.app Honest and brutal feedback? submitted by /u/Emavike [link] [comments]

1 час назад @ reddit.com
Shipped my first app (already on App Store) and have no idea how to get people to find it. Any advice?
Shipped my first app (already on App Store) and have no idea how to get people to find it. Any advice?

Built it solo, no experience, no audience, no budget. Getting it built was the hard part (or so I thought lol). Turns out getting people to find it is a whole different challenge nobody *really* talks about. Tried a few Reddit posts, got some traction, but it's not consistent. Don't know what to try next. What actually worked for you when you had zero to start with? Not theory please, just actual and real things that made a difference. Huge thanks in advance! :) submitted by /u/Vitalic7 [link] [comments]

1 час назад @ reddit.com
I got tired of switching between Notes and Calculator on Mac, so I built one app that does both Soulver-ish vibe
I got tired of switching between Notes and Calculator on Mac, so I built one app that does both Soulver-ish vibe I got tired of switching between Notes and Calculator on Mac, so I built one app that does both Soulver-ish vibe

Hey r/SideProject I am Nikko, a solo dev. I have a specific type of "context loss" ADHD where the second I switch from my Notes app to the Calculator to crunch a number, I completely lose my train of thought. I tried using Soulver, and while it is great I wanted something that felt more like a true Notepad first, with a calculator built into the margins. I just shipped a major macOS update for Smart Notes. Instead of just blowing up the iPhone UI (which we all hate on Mac), I rebuilt the layout with a proper sidebar and editor view specifically for Desktop. The problem Jotting down a budget or project specs and having to juggle two windows. The fix Type your notes, put your numbers in, and …

1 час назад @ reddit.com
I'll roast your SaaS landing page copy (and rewrite your headline for free)
I'll roast your SaaS landing page copy (and rewrite your headline for free)

I've spent the last few months going deep into sales psychology (Cialdini, Kahneman, Hormozi, Keenan, etc.) and building a framework around the 12 principles that make copy actually convert. Figured the best way to sharpen it is to practice on real projects. Here's the deal: Drop your SaaS URL in the comments. I'll look at your landing page and give you: - What's psychologically weak in your current headline/hero section (and why) - A rewritten version that applies specific persuasion principles - Which principle I used and why it works on your target audience No strings. Not selling anything. I genuinely enjoy this and want to see if the framework holds up across different niches. A few th…

1 час назад @ reddit.com
I built a Claude Code skill that generates defense-ready .pptx from your LaTeX paper (dual-engine figures, Q&A prediction)
I built a Claude Code skill that generates defense-ready .pptx from your LaTeX paper (dual-engine figures, Q&A prediction)

Writing the paper is the hard part — but the presentation also takes 8+ hours to get right. Action titles, consistent figures, speaker notes, Q&A prep. All manual. What I Built A Claude Code skill that reads your LaTeX or PDF and generates a complete .pptx. Not a template dump — structured slides with action titles that argue a point, not just label a topic. How It Works Dual-engine figures: Matplotlib for data plots (precise), Gemini for architecture/concept diagrams (visually rich). Pyramid Principle enforced for titles. Speaker notes include timing cues and anticipated committee questions per slide. Three templates: defense, conference talk, seminar. What I Learned The hardest part was t…

2 часа назад @ reddit.com
Symptom / Medication Tracker That I wish I had from the start
Symptom / Medication Tracker That I wish I had from the start Symptom / Medication Tracker That I wish I had from the start

Just published on Google Play this morning, still waiting on ios. https://play.google.com/store/apps/details?id=com.zolia.app I've been struggling with complex chronic illness (ME/CFS & POTS) for years now. I tried various symptom trackers but found that they all had too much friction involved in logging, to the point that they were unsustainable. I wanted an app that made logging easy and efficient and had insights that were actually useful. Well, after several eons of working on this together with a couple healthy folks in my life, it's finally launched! We are considering it to be in open beta for the time being since the insights section is still rougher than we would like it to be. Tha…

2 часа назад @ reddit.com
I built a System Documentation tool that treats Architecture as Data, not just a canvas of static Pixels.
I built a System Documentation tool that treats Architecture as Data, not just a canvas of static Pixels. I built a System Documentation tool that treats Architecture as Data, not just a canvas of static Pixels.

I built ARK95 because I was tired of tools made for 'brainstorming' that couldn't handle a simple Grid Snap or a Raw Data Export. When you need to document a complex system for yourself or present it to your Engineering Team, tools like Miro just aren't built for the job. They are too generic and turn into a mess of unaligned boxes and dead pixels. I focused on a Custom Rendering approach to keep the UI smooth and a JSON-First architecture so your Documentation is actually useful for LLM Context or Git. Team-Ready: You can even Export in GIF to showcase your architecture on office screens or send to your team. Test it for Free: https://ark95.io/en submitted by /u/lennonstevejobskanye [link]…

2 часа назад @ reddit.com
Meet BottleNote: A Brighter Start to Every Day
Meet BottleNote: A Brighter Start to Every Day Meet BottleNote: A Brighter Start to Every Day

BottleNote is a small fun app that helps you start your day on a brighter side. Every day, you get inspirational quotes and affirmations kind of like a fortune cookie but you can also schedule encouraging messages to yourself. It's on the App Store & Play Store Any feedback is much appreciated! submitted by /u/ArtistNo4080 [link] [comments]

2 часа назад @ reddit.com
I built the most comprehensive rent vs buy calculator because every existing one gave me the wrong answer
I built the most comprehensive rent vs buy calculator because every existing one gave me the wrong answer I built the most comprehensive rent vs buy calculator because every existing one gave me the wrong answer

We were going back and forth on buying a house. I did what anyone would do - tried every rent vs buy calculator online. NerdWallet, Zillow, NYT, you name it. None of them were properly accounting for what happens if you take that $130k down payment and invest it instead. Or the real cost of selling years later (5-6% in closing costs that just vanishes). Or the fact that with the current standard deduction, most buyers get zero tax benefit from mortgage interest. So I built my own: https://www.truehousingcost.com/ What it does differently: Full year-by-year net worth comparison, not just a single "buy" or "rent" answer Models the opportunity cost of your down payment invested in the market I…

3 часа назад @ reddit.com
50k visitors in 2 weeks but almost nobody signing up — help me figure this out
50k visitors in 2 weeks but almost nobody signing up — help me figure this out

Hey Reddit, I’m building a small startup for UK contractors and decorators that shows projects before they’re advertised publicly. The site has had around 50,000 visits in the last two weeks, but almost no one has signed up. I’ve been reaching out on social media and planning some networking next week. I’m also giving away sample projects for free to anyone who wants to test it and see if it actually works. Right now the platform shows a map of projects, verified contacts, and early alerts so you can get ahead of the competition. If you were a contractor, what would make you actually try it? Screenshots? Proof the projects are real? Something else? Any feedback would be really helpful — eve…

3 часа назад @ reddit.com
I tested every AI research tool against the same decision, none of them could tell me what to do so I built one that does
I tested every AI research tool against the same decision, none of them could tell me what to do so I built one that does I tested every AI research tool against the same decision, none of them could tell me what to do so I built one that does

I've run the same question through perplexity, GPT, claude, and gemini. I always get roughly the same output and just so much text to read. It just seems every llm is incredible at telling you everything you need to know, but you cant tell what real, and whats just fluff. Like any question I ask which is slightly subjective, I get this giant essay listing everything and that ends with it depends on your situation. Cool. I knew that before I asked..and running it through the rest just means I have 3 times more reading to do and let's be real nobody reads a 10k word report and walks away ready to act. It just seems they are built to fetch as much data as they can, which they probably are but …

3 часа назад @ reddit.com
Can we stop the “what are you building” posts?
Can we stop the “what are you building” posts?

Seriously, what is the point? Nobody that creates those posts cares in the slightest. It’s just comments spamming their own links, that again, nobody cares about (not in that post anyways). Surely there’s a better way to share your projects ? How about giving it some thought and creating a post ? This sub is flooded with low effort, low quality posts including bot comments. Why not try make it better by having some standards? submitted by /u/Developer_Memento [link] [comments]

3 часа назад @ reddit.com
I built a simple birthday reminder tool and got my first 10 users
I built a simple birthday reminder tool and got my first 10 users I built a simple birthday reminder tool and got my first 10 users

I forgot all birthdays of people who aren't my closest friends and family. The calendar felt too heavy for managing birthdays and didn't give me a nice list of the people that matter most. So, a few years ago, I build my own tool and it has worked surprisingly well. Recently, I decided to make it generic and put it online: www.bday24.com The simple idea: A list of the people that matter most with their birthdays, reminders and nothing more. I ran some Google Ads and got my first 10 users. Curious how others remember birthdays. How do you do it? submitted by /u/Marcus678 [link] [comments]

3 часа назад @ reddit.com
Product Hunt Product Hunt
последний пост 14 часов назад
Fastlane
Fastlane

Remix viral videos into content for your business Discussion | Link

14 часов назад @ producthunt.com
Iris
Iris

Send work beautifully, pinned feedback, see what they viewed Discussion | Link

15 часов назад @ producthunt.com
WeixinClawBot
WeixinClawBot

The official WeChat pipeline for OpenClaw Discussion | Link

17 часов назад @ producthunt.com
Claude Usage Tracker
Claude Usage Tracker

See exactly how much you spend on Claude, across every tool Discussion | Link

1 day, 2 hours назад @ producthunt.com
AlphaClaw Apex
AlphaClaw Apex

OpenClaw harness and fleet manager for Mac Discussion | Link

1 day, 9 hours назад @ producthunt.com
Context.dev
Context.dev

One API to scrape, enrich, and understand the web. Discussion | Link

1 day, 22 hours назад @ producthunt.com
DataSieve 2.0
DataSieve 2.0

Extract structured data from text, files and archives. Discussion | Link

2 days, 7 hours назад @ producthunt.com
Contral
Contral

The agentic IDE which teaches while you build. Discussion | Link

3 days назад @ producthunt.com
Claude Cowork Projects
Claude Cowork Projects

Tasks, context, and files organized in one workspace Discussion | Link

3 days, 4 hours назад @ producthunt.com
Educato App
Educato App

Personalized exam prep, now in your pocket Discussion | Link

3 days, 5 hours назад @ producthunt.com
Cursor Glass
Cursor Glass

Unified agent workspace with seamless cloud handoff power Discussion | Link

3 days, 6 hours назад @ producthunt.com
Everest AI
Everest AI

Building the world’s fastest IPMI single board computer Discussion | Link

3 days, 8 hours назад @ producthunt.com
optimo
optimo

effortless media optimizer for the web Discussion | Link

3 days, 12 hours назад @ producthunt.com
Caplo
Caplo

Real-time AI captions & translation for any iOS app Discussion | Link

3 days, 12 hours назад @ producthunt.com
GitAgent
GitAgent

Your repository becomes your agent Discussion | Link

3 days, 14 hours назад @ producthunt.com
Путешествия
Vandrouki Vandrouki
последний пост 4 months, 3 weeks назад
Прямые рейсы между Оманом и Кенией
Прямые рейсы между Оманом и Кенией

У авиакомпании SalamAir промо-тариф: улететь из Маската в Найроби (или наоборот) можно от 6200 рублей (30 OMR). Для въезда в Кению нужно заранее оформить электронное разрешение (сбор около 30-35 USD с человека). Купить билеты можно на сайте авиакомпании или через trip.com / aviasales.ru (тут немного дороже, но зато принимают российские карты). Маскат — Найроби в декабре за 6200 рублей: Российской картой: […]

4 months, 3 weeks назад @ vandrouki.ru
Volotea: полеты по Европе и в Марокко
Volotea: полеты по Европе и в Марокко

Авиакомпания Volotea выкатила билеты за 19 евро. Но можно легко оформить пробную подписку SUPERVOLOTEA на 15 дней и купить их за 9 евро. Обычно подписка на год стоит 60 евро. Лоукостер утверждает, что Вы можете отменить членство в любой момент, но потеряете при этом некоторые привилегии, например, ручную кладь, но сохраните свою скидку на проезд. Главное, не забудьте […]

4 months, 3 weeks назад @ vandrouki.ru
Шри-Ланка и ОАЭ в одной поездке из Екатеринбурга
Шри-Ланка и ОАЭ в одной поездке из Екатеринбурга Шри-Ланка и ОАЭ в одной поездке из Екатеринбурга

Vandrouki (или Вандруки / Вандрули / Ванбрюки или как удобно) – это путешествия.

Способы путешествовать почти бесплатно.

Разумеется, Vandrouki – это высококвалифицированная команда амбициозных профессионалов своего дела.

с 2012 года мы ищем и находим дешевые авиабилеты, отели, туры и круизы.

А вы путешествуете почти бесплатно.

4 months, 3 weeks назад @ vandrouki.ru
Белавиа: прямые рейсы из Москвы в Могилев
Белавиа: прямые рейсы из Москвы в Могилев Белавиа: прямые рейсы из Москвы в Могилев

Vandrouki (или Вандруки / Вандрули / Ванбрюки или как удобно) – это путешествия.

Способы путешествовать почти бесплатно.

Разумеется, Vandrouki – это высококвалифицированная команда амбициозных профессионалов своего дела.

А вы путешествуете почти бесплатно.

Прямо сейчас, пока вы читали этот блок, мы нашли ещё несколько билетов, а кто-то их купил.

4 months, 3 weeks назад @ vandrouki.ru
10 ночей во Вьетнаме с вылетом из Благовещенска
10 ночей во Вьетнаме с вылетом из Благовещенска 10 ночей во Вьетнаме с вылетом из Благовещенска

Vandrouki (или Вандруки / Вандрули / Ванбрюки или как удобно) – это путешествия.

Способы путешествовать почти бесплатно.

Разумеется, Vandrouki – это высококвалифицированная команда амбициозных профессионалов своего дела.

с 2012 года мы ищем и находим дешевые авиабилеты, отели, туры и круизы.

А вы путешествуете почти бесплатно.

4 months, 3 weeks назад @ vandrouki.ru
Таиланд + ОАЭ из Москвы с захватом Нового года
Таиланд + ОАЭ из Москвы с захватом Нового года Таиланд + ОАЭ из Москвы с захватом Нового года

Vandrouki (или Вандруки / Вандрули / Ванбрюки или как удобно) – это путешествия.

Способы путешествовать почти бесплатно.

Разумеется, Vandrouki – это высококвалифицированная команда амбициозных профессионалов своего дела.

с 2012 года мы ищем и находим дешевые авиабилеты, отели, туры и круизы.

А вы путешествуете почти бесплатно.

4 months, 3 weeks назад @ vandrouki.ru
Прямые рейсы из Екатеринбурга в Армению
Прямые рейсы из Екатеринбурга в Армению Прямые рейсы из Екатеринбурга в Армению

Vandrouki (или Вандруки / Вандрули / Ванбрюки или как удобно) – это путешествия.

Способы путешествовать почти бесплатно.

Разумеется, Vandrouki – это высококвалифицированная команда амбициозных профессионалов своего дела.

А вы путешествуете почти бесплатно.

Прямо сейчас, пока вы читали этот блок, мы нашли ещё несколько билетов, а кто-то их купил.

4 months, 3 weeks назад @ vandrouki.ru
Готовые путешествия из Казани на остров Бали
Готовые путешествия из Казани на остров Бали Готовые путешествия из Казани на остров Бали

Сегодня мы решили слепить готовое путешествие из Казани в Индонезию — вышло от 47200 рублей с человека при поездке вдвоем.

Авиакомпания Etihad Airways предлагает билеты из Казани на Бали за 44000 рублей туда-обратно.

Даты полетов: например, 11-24 декабря (проживание с 12 по 24 декабря).

Все варианты на двоих на 12 ночей (рейтинг — выше 7/10)Не забываем настроить сортировку:— самая низкая цена (с учётом налога)— итого (в т.ч.

Первый отель — 3200 рублей на человека / 6400 рублей на двоих:Второй отель — 4700 рублей на человека / 9400 рублей на двоих:Третий отель — 5300 рублей на человека / 10600 рублей на двоих:Другие даты перелетов:4-17 декабря7-22 декабря

4 months, 3 weeks назад @ vandrouki.ru
Прямой рейс из Египта в Самару
Прямой рейс из Египта в Самару Прямой рейс из Египта в Самару

Vandrouki (или Вандруки / Вандрули / Ванбрюки или как удобно) – это путешествия.

Способы путешествовать почти бесплатно.

Разумеется, Vandrouki – это высококвалифицированная команда амбициозных профессионалов своего дела.

А вы путешествуете почти бесплатно.

Прямо сейчас, пока вы читали этот блок, мы нашли ещё несколько билетов, а кто-то их купил.

4 months, 3 weeks назад @ vandrouki.ru
Прямой рейс Аэрофлота с Сейшельских островов в Москву
Прямой рейс Аэрофлота с Сейшельских островов в Москву Прямой рейс Аэрофлота с Сейшельских островов в Москву

Vandrouki (или Вандруки / Вандрули / Ванбрюки или как удобно) – это путешествия.

Способы путешествовать почти бесплатно.

Разумеется, Vandrouki – это высококвалифицированная команда амбициозных профессионалов своего дела.

с 2012 года мы ищем и находим дешевые авиабилеты, отели, туры и круизы.

А вы путешествуете почти бесплатно.

4 months, 3 weeks назад @ vandrouki.ru
Из Казани в Новокузнецк за почти бесплатно
Из Казани в Новокузнецк за почти бесплатно Из Казани в Новокузнецк за почти бесплатно

Vandrouki (или Вандруки / Вандрули / Ванбрюки или как удобно) – это путешествия.

Способы путешествовать почти бесплатно.

Разумеется, Vandrouki – это высококвалифицированная команда амбициозных профессионалов своего дела.

А вы путешествуете почти бесплатно.

Прямо сейчас, пока вы читали этот блок, мы нашли ещё несколько билетов, а кто-то их купил.

4 months, 4 weeks назад @ vandrouki.ru
Etihad Airways: полеты из Казани в Азию
Etihad Airways: полеты из Казани в Азию Etihad Airways: полеты из Казани в Азию

Vandrouki (или Вандруки / Вандрули / Ванбрюки или как удобно) – это путешествия.

Способы путешествовать почти бесплатно.

Разумеется, Vandrouki – это высококвалифицированная команда амбициозных профессионалов своего дела.

А вы путешествуете почти бесплатно.

Прямо сейчас, пока вы читали этот блок, мы нашли ещё несколько билетов, а кто-то их купил.

4 months, 4 weeks назад @ vandrouki.ru
Таиланд или Таиланд + Хайнань в одной поездке из Москвы
Таиланд или Таиланд + Хайнань в одной поездке из Москвы Таиланд или Таиланд + Хайнань в одной поездке из Москвы

Vandrouki (или Вандруки / Вандрули / Ванбрюки или как удобно) – это путешествия.

Способы путешествовать почти бесплатно.

Разумеется, Vandrouki – это высококвалифицированная команда амбициозных профессионалов своего дела.

А вы путешествуете почти бесплатно.

Прямо сейчас, пока вы читали этот блок, мы нашли ещё несколько билетов, а кто-то их купил.

4 months, 4 weeks назад @ vandrouki.ru
AZAL: полеты из Москвы, Питера и Екб на Ближний Восток, в Индию и на Мальдивы
AZAL: полеты из Москвы, Питера и Екб на Ближний Восток, в Индию и на Мальдивы AZAL: полеты из Москвы, Питера и Екб на Ближний Восток, в Индию и на Мальдивы

Азербайджанские Авиалинии снизили цены ноябрь-март: взять из Москвы, Питера и Екб в ОАЭ, Израиль, Таджикистан, Саудовскую Аравию, Индию и на Мальдивы можно со скидками.

Билеты берем через сервис aviasales.ru (тут дешевле всего).

Москва — Душанбе — Москва:Москва — Даммам — Москва:Москва — Дубай — Москва:Москва — Тель-Авив — Москва:Москва — Дели — Москва:Москва — Мумбаи — Москва:Москва — Мале — Москва в ноябре:Москва — Мале — Москва в январе:Москва — Мале — Москва в феврале:Москва — Мале — Москва в марте:Питер — Душанбе — Питер:Питер — Даммам — Питер:Питер — Дубай — Питер:Питер — Тель-Авив — Питер:Питер — Дели — Питер:Питер — Мумбаи — Питер:Питер — Мале — Питер в ноябре-декабре:Питер — Мале —…

5 months назад @ vandrouki.ru
Подборка недорогих билетов по всему миру
Подборка недорогих билетов по всему миру Подборка недорогих билетов по всему миру

Vandrouki (или Вандруки / Вандрули / Ванбрюки или как удобно) – это путешествия.

Способы путешествовать почти бесплатно.

Разумеется, Vandrouki – это высококвалифицированная команда амбициозных профессионалов своего дела.

А вы путешествуете почти бесплатно.

Прямо сейчас, пока вы читали этот блок, мы нашли ещё несколько билетов, а кто-то их купил.

5 months назад @ vandrouki.ru
Atlas Obscura: Stories Atlas Obscura: Stories
последний пост 1 час назад
Site of the Invention of Irn-Bru in Glasgow, Scotland
Site of the Invention of Irn-Bru in Glasgow, Scotland Site of the Invention of Irn-Bru in Glasgow, Scotland

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 час назад @ atlasobscura.com
House of the Lion in Vale do Sol, Brazil
House of the Lion in Vale do Sol, Brazil House of the Lion in Vale do Sol, Brazil

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 часа назад @ atlasobscura.com
Cristoforo Colombo statue in Central Park in Mishawaka, Indiana
Cristoforo Colombo statue in Central Park in Mishawaka, Indiana Cristoforo Colombo statue in Central Park in Mishawaka, 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.

5 часов назад @ atlasobscura.com
Springthorpe Memorial in Kew, Australia
Springthorpe Memorial in Kew, Australia Springthorpe Memorial in Kew, Australia

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.

7 часов назад @ atlasobscura.com
I Asked. You Answered. Now I Have Some Questions for You.
I Asked. You Answered. Now I Have Some Questions for You. I Asked. You Answered. Now I Have Some Questions for You.

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, 8 hours назад @ atlasobscura.com
Paul’s Vintage Bicycle Museum in Elizabeth, Illinois
Paul’s Vintage Bicycle Museum in Elizabeth, Illinois Paul’s Vintage Bicycle Museum in Elizabeth, Illinois

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, 1 hour назад @ atlasobscura.com
Gececondu of Kreuzberg in Berlin, Germany
Gececondu of Kreuzberg in Berlin, Germany Gececondu of Kreuzberg in Berlin, Germany

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, 3 hours назад @ atlasobscura.com
The Largest Coffee Cup in Colombia in Chinchiná, Colombia
The Largest Coffee Cup in Colombia in Chinchiná, Colombia The Largest Coffee Cup in Colombia in Chinchiná, Colombia

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, 5 hours назад @ atlasobscura.com
Mola Museum (MuMo) in Panamá City, Panama
Mola Museum (MuMo) in Panamá City, Panama Mola Museum (MuMo) in Panamá City, Panama

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, 5 hours назад @ atlasobscura.com
Salt Creek and the Salt Creek Hills in California
Salt Creek and the Salt Creek Hills in California Salt Creek and the Salt Creek Hills in 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, 7 hours назад @ atlasobscura.com
Luytens’ Crypt in Liverpool, England
Luytens’ Crypt in Liverpool, England Luytens’ Crypt in Liverpool, 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.

4 days, 1 hour назад @ atlasobscura.com
The tunnel of Bonaparte in Madrid, Spain
The tunnel of Bonaparte in Madrid, Spain The tunnel of Bonaparte in Madrid, 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, 3 hours назад @ atlasobscura.com
The Hugglescote Death Star in Hugglescote, England
The Hugglescote Death Star in Hugglescote, England The Hugglescote Death Star in Hugglescote, 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.

4 days, 5 hours назад @ atlasobscura.com
German Mining Museum in Bochum, Germany
German Mining Museum in Bochum, Germany German Mining Museum in Bochum, Germany

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, 7 hours назад @ atlasobscura.com
The Graveyard That Made Me Kiss a Frog
The Graveyard That Made Me Kiss a Frog The Graveyard That Made Me Kiss a Frog

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, 23 hours назад @ atlasobscura.com
T—Ж T—Ж
последний пост None
Европейское айти
EU-startups EU-startups
последний пост 5 часов назад
British HealthTech JAAQ closes €15 million Series A to grow enterprise partnerships
British HealthTech JAAQ closes €15 million Series A to grow enterprise partnerships British HealthTech JAAQ closes €15 million Series A to grow enterprise partnerships

JAAQ, a London-based clinically governed digital health and engagement platform, has raised a €15 million (£13 million) Series A, with Alex Packham, Serial Entrepreneur and Technology investor, joining as CEO.

“We have a structural problem in mental health: demand is infinite, capacity is finite.

Clinically governed mental health content, embedded inside the digital experiences people already use, is how we close that gap.

The platform serves large organisations across enterprise and healthcare, combining clinically governed mental health engagement with behavioural pathways that drive digital outcomes.

Their clinically governed approach and institutional integrations are exactly what the m…

5 часов назад @ eu-startups.com
German startup Interloom lands €14.2 million Seed funding for AI agent knowledge infrastructure
German startup Interloom lands €14.2 million Seed funding for AI agent knowledge infrastructure German startup Interloom lands €14.2 million Seed funding for AI agent knowledge infrastructure

Interloom, a Munich-based enterprise operations platform that captures expert knowledge and transforms it into permanent memory for AI agents, today announced a €14.2 million ($16.5 million) Seed round.

Together, these rounds amount to approximately €74 million, reflecting steady capital inflows into enterprise AI infrastructure and applications.

“Our experience with enterprise AI agents platforms like Cognigy showed us how important context is.

Founded in 2024, Interloom helps enterprises capture the operational knowledge of their experts and turn it into a memory layer for AI agents.

Once an expert resolves a case, Interloom ensures that future employees and AI agents have access to that …

8 часов назад @ eu-startups.com
VC’s blind spot? An interview with Global Inclusive Founders Fund (GIFF) on backing Europe’s overlooked founders
VC’s blind spot? An interview with Global Inclusive Founders Fund (GIFF) on backing Europe’s overlooked founders VC’s blind spot? An interview with Global Inclusive Founders Fund (GIFF) on backing Europe’s overlooked founders

A new initiative aiming to reshape access to venture capital for underrepresented entrepreneurs was unveiled on Friday at the Start Summit, as the Global Inclusive Founders Fund (GIFF) officially launched alongside its associated foundation.

Meanwhile, the fund itself will invest in high-growth, venture-scale companies, deliberately avoiding traditional ‘impact-only’ positioning in favour of a returns-driven thesis centred on overlooked talent.

Against this backdrop, we spoke with Hermann Arnold about the thinking behind GIFF, its structure, and its long-term ambition.

The fund focuses on founders who have navigated systemic barriers such as disability or neurodivergence.

From an investor’s…

8 часов назад @ eu-startups.com
London-based Huel joins Danone in a billion deal to scale plant-based nutrition globally
London-based Huel joins Danone in a billion deal to scale plant-based nutrition globally London-based Huel joins Danone in a billion deal to scale plant-based nutrition globally

Founded in 2015, Huel has grown from a direct-to-consumer brand selling powdered meals online into a global omnichannel business.

The company has also invested in its own manufacturing capabilities, reflecting its evolution into a fully integrated nutrition brand.

Huel’s CEO, James McMaster, highlighted the shared mission between Huel and Danone: “We share a common mission with Danone.

For Danone, the deal strengthens its position in the fast-growing plant-based and protein segments, complementing a portfolio that includes brands such as Activia and Evian.

Despite the acquisition, Huel will continue to operate under its existing brand, with Wright remaining CEO.

9 часов назад @ eu-startups.com
Conor Moynagh, Head of VC at HubSpot for Startups joins the EU-Startups Summit 2026!
Conor Moynagh, Head of VC at HubSpot for Startups joins the EU-Startups Summit 2026! Conor Moynagh, Head of VC at HubSpot for Startups joins the EU-Startups Summit 2026!

We are excited to announce that Conor Moynagh, Head of VC at HubSpot for Startups, will join the EU-Startups Summit 2026 on May 7-8 in sunny Malta.

In his current role at HubSpot for Startups, he leads the company’s VC programme, focusing on go-to-market strategy, ecosystem development, and partnership initiatives designed to support ambitious founders as they scale.

He also sits on HubSpot’s EMEA Product Council, establishing streamlined, efficient, and innovative systems & operations that support organisational effectiveness for HubSpot.

Join us at the EU-Startups Summit 2026 for two days of learning, networking, and inspiration.

The IONOS Cloud Start-up Program provides young companies w…

10 часов назад @ eu-startups.com
French VC 360 Capital launches Poli360 2 with €85 million to back European DeepTech startups
French VC 360 Capital launches Poli360 2 with €85 million to back European DeepTech startups French VC 360 Capital launches Poli360 2 with €85 million to back European DeepTech startups

360 Capital, the Paris-based firm with €700 million in AUM, announces the closing of €85 million for Poli360 2, its new technology transfer fund with a target size of €100 million which invests in early-stage DeepTech startups.

EU-Startups’ 2025–2026 coverage indicates that 360 Capital’s €85 million first close for Poli360 2 sits within a broader wave of specialised VC fund formation across DeepTech, ClimateTech and industrial innovation.

Recent examples include Elaia in Paris, which raised €134 million for early-stage DeepTech startups, and Constructor Capital, which closed a €92.8 million debut fund targeting research-driven software.

EU-Startups has also previously covered 360 Capital, i…

10 часов назад @ eu-startups.com
Ex-Google Moonshot X advisor launches €50 million Cloudberry Ventures DeepTech fund amid “SaaSpocalypse”
Ex-Google Moonshot X advisor launches €50 million Cloudberry Ventures DeepTech fund amid “SaaSpocalypse” Ex-Google Moonshot X advisor launches €50 million Cloudberry Ventures DeepTech fund amid “SaaSpocalypse”

Mahir Sahin, a senior Google executive (2009-2025) and ex-lead advisor at Alphabet’s Moonshot X Factory, has launched a €50 million fund at his London-based venture firm Cloudberry Ventures.

The fund, targeting Seed to Series A stages with tickets of €1-€2 million, focuses on industrial infrastructure, compute infrastructure, and financial infrastructure.

Sahin cautions that the current AI trajectory is not sustainable: “The physical chip was the deep tech big bang for the software era.

If we don’t invest in the deep tech that powers AI — the physical substrate — the whole AI project hits a wall.”Cloudberry Ventures is a venture capital firm focused on DeepTech investments.

Europe produces …

14 часов назад @ eu-startups.com
Weekly funding round-up! All of the European startup funding rounds we tracked this week (Mar.16-20)
Weekly funding round-up! All of the European startup funding rounds we tracked this week (Mar.16-20) Weekly funding round-up! All of the European startup funding rounds we tracked this week (Mar.16-20)

This article is visible for CLUB members only.

If you are already a member but don’t see the content of this article, please login here.

If you’re not a CLUB member yet, but you’d like to read members-only content like this one, have unrestricted access to the site and benefit from many additional perks, you can sign up here.

3 days, 5 hours назад @ eu-startups.com
LemFi Co-founder and CEO Ridwan Olalere joins the EU-Startups Summit 2026 in Malta!
LemFi Co-founder and CEO Ridwan Olalere joins the EU-Startups Summit 2026 in Malta! LemFi Co-founder and CEO Ridwan Olalere joins the EU-Startups Summit 2026 in Malta!

We are pleased to announce that Ridwan Olalere, Co-founder and CEO of LemFi, a fintech company building a financial services platform that enables immigrants to send, spend, and manage money seamlessly across borders, will join the speaker line-up at the EU-Startups Summit 2026 on May 7-8 in sunny Malta.

Headquartered in London, and with a strong presence in Nigeria, the fast-growing company has raised over $86.9 million to date, including a $53 million Series B round in January 2025, highlighting its strong growth and market traction.

Today, LemFi operates across multiple regions, offering international transfers, multi-currency accounts, and financial tools designed for people living betw…

3 days, 8 hours назад @ eu-startups.com
EU Inc. under the microscope: founders, VCs and lawyers weigh in
EU Inc. under the microscope: founders, VCs and lawyers weigh in EU Inc. under the microscope: founders, VCs and lawyers weigh in

For founders, this could mean registering a company within 48 hours, entirely online, for less than €100 and with no minimum capital requirement.

At the heart of this proposal is a simple principle: ‘once only’”The scale of the problem EU Inc. seeks to address is well documented.

These inefficiencies are not only operational inconveniences – they impact growth trajectories, fundraising timelines, and ultimately, Europe’s ability to retain its most ambitious founders.

Founders: removing early-stage frictionFrom the perspective of founders, the promise of EU Inc. lies in its potential to remove friction at the earliest stages of company building.

Together, these efforts signal a broader attem…

3 days, 9 hours назад @ eu-startups.com
UK’s Flexzo AI raises €10.3 million to transform healthcare workforce management with agentic AI
UK’s Flexzo AI raises €10.3 million to transform healthcare workforce management with agentic AI UK’s Flexzo AI raises €10.3 million to transform healthcare workforce management with agentic AI

Flexzo AI, a UK-based startup providing an agentic AI workforce system for healthcare providers, today announced the completion of a €10.3 million ($12 million) Series A funding round to support ongoing adoption across NHS Trusts and accelerate growth in the United States.

Uthish Ranjan, Partner at Octopus Ventures, and Shiv Patel, Partner at Fuel Ventures, will join Flexzo AI’s board as part of the investment.

With Flexzo AI, we’re delivering the step change in efficiency the system urgently needs,” said Jack Henderson, CEO of Flexzo AI.

Founded in 2023 by Jack Henderson, Flexzo AI aims to tackle the ongoing issue of chronic workforce shortages and rising agency costs in healthcare.

Hospit…

3 days, 9 hours назад @ eu-startups.com
Why “Maybe” is killing your startup
Why “Maybe” is killing your startup Why “Maybe” is killing your startup

We hire someone that we think is OK, but not fully what we were looking for, because maybe it’ll work out.

Maybe, maybe, maybe.

So every maybe becomes a “yes for now” until it transforms into a multi-headed behemoth that can wipe your startup right off the playing field.

To steal a page from Mark Manson’s book, or rather article, it’s either a fuck yes or a fuck no.

70% fuck yes or fuck noBeing decisive does not have to mean being reckless.

3 days, 10 hours назад @ eu-startups.com
Dutch AgTech startup BBLeap secures €5 million to scale precision spraying technology globally
Dutch AgTech startup BBLeap secures €5 million to scale precision spraying technology globally Dutch AgTech startup BBLeap secures €5 million to scale precision spraying technology globally

BBLeap, a Netherlands-based AgTech startup specialising in high-precision spraying technology, has closed a €5 million investment round.

The company’s plant precision spraying ensures each plant or fruit receives the exact amount, maximising yields and minimising waste.

BBLeap claims to enable high-resolution precision spraying at 25x25cm accuracy, integration with task maps and farm management systems, and data tracking with as-applied maps.

The company uses a combination of hardware (LeapBox) and software (LeapSpace) to manage plant precision spraying.

BBLeap systems are currently in use by more than 200 users across Europe and Australia, with a launch underway in Canada.

3 days, 11 hours назад @ eu-startups.com
EIC Accelerator company SunOyster Systems signs deal with Galp for the installation of lightweight PV modules
EIC Accelerator company SunOyster Systems signs deal with Galp for the installation of lightweight PV modules EIC Accelerator company SunOyster Systems signs deal with Galp for the installation of lightweight PV modules

Within this framework, EIC-backed company SunOyster Systems , a pioneering SME in advanced solar technologies based in Germany, partnered with Galp , Portugal’s leading energy company.

After a rigorous selection and dedicated preparation, they participated in the EIC Corporate Day held in Lisbon on 17-18 July 2024.

Among the selected EIC-backed companies, SunOyster Systems’ lightweight photovoltaic modules address Galp’s key challenge in deploying rooftop solar across facilities.

Amelie Krahl, Head of Sales at SunOyster Systems, and Ana Casaca, Director of Innovation at Galp, shared their insights about their successful partnership.

Through the collaboration with SunOyster, Galp is validati…

3 days, 12 hours назад @ eu-startups.com
Warsaw’s Montis VC hits €50 million first close for new fund focused on AI-driven energy and industrial innovation
Warsaw’s Montis VC hits €50 million first close for new fund focused on AI-driven energy and industrial innovation Warsaw’s Montis VC hits €50 million first close for new fund focused on AI-driven energy and industrial innovation

Warsaw-based investment firm Montis VC has launched a new venture capital fund, securing €50 million at first close to back Europe’s next generation of energy and IndustrialTech startups.

One of the key limited partners is the European Investment Fund (EIF), which committed capital through the REPowerEU programme.

Earlier, PFR Ventures also became part of the investor group, committing €10 million to the new Montis VC fund.

The investment team was recently joined by Michał Baś, who was previously associated with the pan-European venture capital fund Venture Friends.

At Montis VC, we want to help startups unlock that potential globally by supporting projects that have the ambition to transfo…

3 days, 14 hours назад @ eu-startups.com
Tech.eu Tech.eu
последний пост 5 часов назад
Credo Ventures raises $88M Fund 5 to double down on pre-seed in CEE and its global diaspora
Credo Ventures raises $88M Fund 5 to double down on pre-seed in CEE and its global diaspora Credo Ventures raises $88M Fund 5 to double down on pre-seed in CEE and its global diaspora

Today, Credo Ventures announces Credo Stage 5, a $88 million fund that continues the firm's mission to be the first backer of the most ambitious CEE founders globally, both in the CEE region and in di...

5 часов назад @ tech.eu
From a 15,000-step walk to a global movement: How Walk15 is turning steps into currency
From a 15,000-step walk to a global movement: How Walk15 is turning steps into currency From a 15,000-step walk to a global movement: How Walk15 is turning steps into currency

What began as a simple walking route created by a frustrated parent has grown into a global movement platform. In Lithuania, Walk15 has reached around 31 per cent of the population. Last year, it gene...

7 часов назад @ tech.eu
Interloom raises $16.5M to develop enterprise memory for AI agents
Interloom raises $16.5M to develop enterprise memory for AI agents Interloom raises $16.5M to develop enterprise memory for AI agents

Interloom, an enterprise operationsplatform that captures expert knowledge and converts it into a persistentmemory layer for AI agents, has closed a $16.5 million seed funding round. Theround was led ...

8 часов назад @ tech.eu
Adzuna acquires Trovit and Mitula jobs businesses to expand global footprint
Adzuna acquires Trovit and Mitula jobs businesses to expand global footprint Adzuna acquires Trovit and Mitula jobs businesses to expand global footprint

Job search platform Adzuna has acquired the jobs businesses of Trovit and Mitula, two market-leading search engines operated by the Lifull Connect group.The acquisition marks Adzuna’s third acquisitio...

10 часов назад @ tech.eu
EGIDE raises €8M Seed to build affordable interceptor systems for modern warfare
EGIDE raises €8M Seed to build affordable interceptor systems for modern warfare EGIDE raises €8M Seed to build affordable interceptor systems for modern warfare

French defencetech EGIDE has raised an €8 million seed round. The round was co-led by Expeditions, Eurazeo, and Heartcore Capital, with participation from Galion.exe and Kima Ventures. Founded in 20...

10 часов назад @ tech.eu
Newly secures $2M+ in funding to advance native app creation platform
Newly secures $2M+ in funding to advance native app creation platform Newly secures $2M+ in funding to advance native app creation platform

Stockholm-basedNewly (formerly Natively), a mobile app development company, has raised over $2 million to date in funding toaccelerate its growth and broaden access to native app development. Theround...

11 часов назад @ tech.eu
Nathan Benaich's Air Street raises $232M Fund III, becoming Europe’s largest solo GP venture firm
Nathan Benaich's Air Street raises $232M Fund III, becoming Europe’s largest solo GP venture firm Nathan Benaich's Air Street raises $232M Fund III, becoming Europe’s largest solo GP venture firm

Air Street Capital, founded by Nathan Benaich, has raised $232M for Fund III — making it the largest solo GP venture fund in Europe. The fund invests in AI-first companies in North America and Europe...

11 часов назад @ tech.eu
360 Capital announces €85M close for Poli360 2, targeting €100M
360 Capital announces €85M close for Poli360 2, targeting €100M 360 Capital announces €85M close for Poli360 2, targeting €100M

360 Capital, a European venture capital firm, has closed €85 million for Poli360 2,its new technology transfer fund targeting a total size of €100 million. Thefund focuses on early-stage deeptech star...

11 часов назад @ tech.eu
European tech weekly recap: More than 55 tech funding deals worth over €504M
European tech weekly recap: More than 55 tech funding deals worth over €504M European tech weekly recap: More than 55 tech funding deals worth over €504M

Last week, we tracked more than 55 tech funding deals worth over €504 million, and 3 exits, M&A transactions, rumours, and related news stories across Europe.Haberin devamını okumak için tıklayınız....

12 часов назад @ tech.eu
AI model giants should pay a levy to operate in Europe, says Mistral boss
AI model giants should pay a levy to operate in Europe, says Mistral boss AI model giants should pay a levy to operate in Europe, says Mistral boss

AI model giants should pay a content levy for selling their services in Europe with the money funnelled into Europe’s cultural sector, according to the boss of Europe’s leading AI model startup. Art...

3 days, 4 hours назад @ tech.eu
Commission presents flawed EU Inc., Upvest raises $125M, and UK government pledges £1BN quantum computing investment
Commission presents flawed EU Inc., Upvest raises $125M, and UK government pledges £1BN quantum computing investment Commission presents flawed EU Inc., Upvest raises $125M, and UK government pledges £1BN quantum computing investment

Big news this week as the European Commission presented its proposal for EU Inc., a new single set of corporate rules that will serve as the cornerstone and starting point for the EU's 28th regime. As...

3 days, 5 hours назад @ tech.eu
Meet Rachel: the AI agent that phoned 3,000 pubs to price a pint
Meet Rachel: the AI agent that phoned 3,000 pubs to price a pint Meet Rachel: the AI agent that phoned 3,000 pubs to price a pint

Over Paddy's weekend 2026, a friendly Northern Irish "woman" called Rachel rang more than 3,000 pubs across all 32 counties to find out the price of a pint of Guinness. Over 1,000 gave a price. Onl...

3 days, 8 hours назад @ tech.eu
Starling Bank rolls out “UK’s first agentic AI financial assistant”
Starling Bank rolls out “UK’s first agentic AI financial assistant” Starling Bank rolls out “UK’s first agentic AI financial assistant”

Starling Bank is rolling out what it says is the “UK’s first agentic AI financial assistant”, as it looks to leverage the new technology to help improve day-to-day banking. The UK challenger bank, whi...

3 days, 8 hours назад @ tech.eu
Montis VC reaches €50M first close to back energy and industrial tech startups
Montis VC reaches €50M first close to back energy and industrial tech startups Montis VC reaches €50M first close to back energy and industrial tech startups

Montis VC has launched a new venturecapital fund, securing €50 million at first close. The fund is backed by theEuropean Investment Fund through the REPowerEU programme, the PolishDevelopment Fund, an...

3 days, 11 hours назад @ tech.eu
Eternal.ag raises €8M to automate greenhouse harvesting with AI-powered robots
Eternal.ag raises €8M to automate greenhouse harvesting with AI-powered robots Eternal.ag raises €8M to automate greenhouse harvesting with AI-powered robots

Eternal.ag, a startup building autonomous harvesting robots for greenhouses, today announced it has raised €8 million in funding from Simon Capital, Oyster Bay Venture Capital, EquityPitcher Ventures ...

4 days, 5 hours назад @ tech.eu
TechCrunch: Europe TechCrunch: Europe
последний пост 1 month назад
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.

1 month назад @ 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.

1 month, 2 weeks назад @ 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.

2 months назад @ 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.

2 months, 4 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.

5 months, 1 week назад @ 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.

6 months назад @ 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.

6 months назад @ 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.

6 months назад @ 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 […]

6 months, 1 week назад @ 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.

7 months, 3 weeks назад @ techcrunch.com
Neobank Revolut seeks $65B valuation, a year after its $45B deal
Neobank Revolut seeks $65B valuation, a year after its $45B deal

Europe’s fintech darling Revolut is looking to raise a new funding round that would give it a $65 billion valuation, the Financial Times reports. The UK-based company is reportedly in talks to raise around $1 billion by issuing new shares and selling existing ones. The US-based firm Greenoaks is said to be leading the round, […]

8 months, 2 weeks назад @ techcrunch.com
Researchers confirm two journalists were hacked with Paragon spyware
Researchers confirm two journalists were hacked with Paragon spyware

The confirmation of two hacked victims further deepens an ongoing spyware scandal that, for now, appears largely focused on the Italian government.

9 months, 2 weeks назад @ techcrunch.com
Paragon says it canceled contracts with Italy over government’s refusal to investigate spyware attack on journalist
Paragon says it canceled contracts with Italy over government’s refusal to investigate spyware attack on journalist

The Italian government claims that accepting Paragon’s help would have compromised national security and classified information.

9 months, 2 weeks назад @ techcrunch.com
Litehaus raises €1.46M pre-seed to build home-building platform
Litehaus raises €1.46M pre-seed to build home-building platform

All Thibault Launay and his wife Simi wanted nearly five years ago was to build a dream home in Portugal, where they both now live. But what they encountered instead was a broken system. “Fourteen months of delays, 20% budget overruns, and endless stress managing over 10 subcontractors,” Thibault recalled. They bought the land in […]

9 months, 4 weeks назад @ techcrunch.com