Вастрик
👉 vas3k.ru
Веду блог о технологиях, пишу код, отвратительно путешествую и фотографирую это
Hacker News Hacker News
последний пост 1 час назад
CBP says it can't comply with refund order
CBP says it can't comply with refund order

Comments

1 час назад @ cnbc.com
Show HN: Moongate – Ultima Online server emulator in .NET 10 with Lua scripting
Show HN: Moongate – Ultima Online server emulator in .NET 10 with Lua scripting Show HN: Moongate – Ultima Online server emulator in .NET 10 with Lua scripting

Moongate v2Moongate v2 is a modern Ultima Online server project built with .NET 10.

:D :DManual trigger:Command: .spawn_doorsScope: console + in-game admin commandBehavior: runs only the doors generator and streams progress lines to command output.

Lua runtime is integrated (commands, speech, targeting, gump builder), but high-level game systems are still script-surface growth areas.

scripts/run_benchmarks_lua.sh : runs Lua script engine benchmarks only (JIT, MoonSharp is NativeAOT-incompatible).

Lua Script EngineRun locally:./scripts/run_benchmarks_lua.shNote: MoonSharp relies on reflection and dynamic code generation — NativeAOT is not supported for this suite.

3 часа назад @ github.com
Good Bad ISPs
Good Bad ISPs Good Bad ISPs

Comments

3 часа назад @ community.torproject.org
Why Going to Mars Would Be Bad for Your Health
Why Going to Mars Would Be Bad for Your Health Why Going to Mars Would Be Bad for Your Health

There are innumerable challenges with human space travel, but one huge one that we have no good solutions for is that space is really, really bad for your health.

There are a few main issues that we know about when it comes to space and human well-being.

The next issue is space radiation.

But for the actual space travel—the time humans spend commuting across the vacuum—we currently have no real solution.

As far as human space travel goes, it’s probably best that it stays in the realm of science fiction, at least for the foreseeable future.

3 часа назад @ slate.com
I Dropped Our Production Database and Now Pay 10% More for AWS
I Dropped Our Production Database and Now Pay 10% More for AWS I Dropped Our Production Database and Now Pay 10% More for AWS

~11:00 PM: A Terraform auto-approve command inadvertently wiped out all production infrastructure, including the Amazon Relational Database Service (RDS).

I later discovered that all snapshots were also deleted, prompting me to create an AWS support ticket.

~1:00-2:00 AM: Had a phone call with AWS support, which was escalated to their internal team for restoration.

What AWS Support FoundAWS support confirmed that my database and all snapshots were deleted, which I didn’t see coming.

What I’ve Been Working On Recently1) AI Engineering BuildcampI finished recording the DIY Monitoring Platform section for the monitoring module at the AI Engineering Buildcamp.

3 часа назад @ alexeyondata.substack.com
CT Scans of Health Wearables
CT Scans of Health Wearables CT Scans of Health Wearables

A plastic water bottle, whose entire usable lifespan is measured in seconds, is the result of decades upon decades of engineering across a range of functions.

Walking past the bottled water I pause—the selection there is honestly incredible, a little Darwinian competition playing out on the shelves.

I stand there, registering the different phenotypes and thinking about how each species and sub-species of water bottle evolved.

Coca-Cola was first bottled (in glass) in 1899, the same year that Pellegrino, with their distinctive green glass bottle, was founded.

Bottled water boom Looking back on it now, the bottled water boom feels like a ridiculous—yet understandable—evolution of our early ‘9…

3 часа назад @ lumafield.com
Show HN: Interactive 3D globe of EU shipping emissions
Show HN: Interactive 3D globe of EU shipping emissions Show HN: Interactive 3D globe of EU shipping emissions

Comments

3 часа назад @ seafloor.pages.dev
Global Warming Has Accelerated Significantly
Global Warming Has Accelerated Significantly

Access deniedYou do not have access to www.researchgate.net.

The site owner may have set restrictions that prevent you from accessing the site.

3 часа назад @ researchgate.net
US economy unexpectedly sheds 92,000 jobs in February
US economy unexpectedly sheds 92,000 jobs in February US economy unexpectedly sheds 92,000 jobs in February

Even if healthcare employment bounces back as expected, the figures dented hopes that hiring might be starting to accelerate after the 2025 slowdown, which was the weakest year for jobs since the pandemic, said Samuel Tombs, chief US economist for Pantheon Macroeconomics.

3 часа назад @ bbc.com
Workers who love 'synergizing paradigms' might be bad at their jobs
Workers who love 'synergizing paradigms' might be bad at their jobs Workers who love 'synergizing paradigms' might be bad at their jobs

“Unlike technical jargon, which can sometimes make office communication a little easier, corporate bullshit confuses rather than clarifies.

Corporate BS seems to be ubiquitous – but Littrell wondered if it is actually harmful.

Those more receptive to corporate BS also scored significantly worse on a test of effective workplace decision-making.

The study found that being more receptive to corporate bullshit was also positively linked to job satisfaction and feeling inspired by company mission statements.

Moreover, those who were more likely to fall for corporate BS were also more likely to spread it.

4 часа назад @ news.cornell.edu
Elite Overproduction
Elite Overproduction

Comments

5 часов назад @ en.wikipedia.org
First MacBook Neo Benchmarks Are In
First MacBook Neo Benchmarks Are In First MacBook Neo Benchmarks Are In

Benchmarks for the new MacBook Neo surfaced today, and unsurprisingly, CPU performance is almost identical to the iPhone 16 Pro.

The ‌MacBook Neo‌ uses the same 6-core A18 Pro chip that was first introduced in the iPhone 16 Pro, but it has one fewer GPU core.

When comparing the ‌MacBook Neo‌'s performance to existing Macs, the A18 Pro's multi-core performance is on par with the M1 chip in the MacBook Air, but single-core performance is much higher than it was with the ‌M1‌.

Apple does not compare ‌MacBook Neo‌ performance to other Macs, iPads, or iPhones.

The ‌MacBook Neo‌ is priced starting at $599, and it is available for preorder now.

5 часов назад @ macrumors.com
Hardening Firefox with Anthropic's Red Team
Hardening Firefox with Anthropic's Red Team Hardening Firefox with Anthropic's Red Team

A few weeks ago, Anthropic’s Frontier Red Team approached us with results from a new AI-assisted vulnerability-detection method that surfaced more than a dozen verifiable security bugs, with reproducible tests.

Anthropic’s team got in touch with Firefox engineers after using Claude to identify security bugs in our JavaScript engine.

Critically, their bug reports included minimal test cases that allowed our security team to quickly verify and reproduce each issue.

In addition to the 22 security-sensitive bugs, Anthropic discovered 90 other bugs, most of which are now fixed.

Mozilla has historically led in deploying advanced security techniques to protect Firefox users.

5 часов назад @ blog.mozilla.org
Async Programming Is Just Inject Time
Async Programming Is Just Inject Time Async Programming Is Just Inject Time

This is not too dissimilar to passing a Runnable to a Java method:void twice ( Runnable block ) { block .

= nil def do_thing ( & block : Proc ( Nil )) puts "setting thing" @block = block end end def use_thingie ( th : Thingie ) th .

In languages with async / await you must decorate a call to an async function with await , and the function you’re calling from must be async .

I got into this mess because I was reading about ways of handling errors and also ways of handling async programming.

The language could be less prescriptive over how async code is written, perhaps allowing certain codepaths to have strict guarantees on how fibres can be cancelled, for example.

5 часов назад @ willhbr.net
U.S. Capabilities Are Showing Signs of Rot
U.S. Capabilities Are Showing Signs of Rot U.S. Capabilities Are Showing Signs of Rot

On multiple occasions after President Trump launched a massive air campaign against Iran this past weekend, retaliatory attacks by simply constructed Iranian drones have penetrated American defenses with serious results.

Brynn Tannehill: The dangerous mismatch between American missiles and Iranian dronesWhen a complex system starts to decay, the first signs are usually subtle.

In the third century, after the Roman empire had reached its geographic maximum, literacy began to decline across Roman society.

The capabilities of the U.S. military are still far superior to Iran’s.

Americans and Europeans might still refer to each other as “allies,” but the signs of rot are obvious.

6 часов назад @ theatlantic.com
Hacker News Hacker News
последний пост 1 час назад
How Much Money Jeff Bezos Made Since You Started Reading This Page
How Much Money Jeff Bezos Made Since You Started Reading This Page How Much Money Jeff Bezos Made Since You Started Reading This Page

This is how much Jeff Bezos made...$...since you started reading this page.

7 часов назад @ bezoscalculator.com
LibreSprite – open-source pixel art editor
LibreSprite – open-source pixel art editor LibreSprite – open-source pixel art editor

Social NetworksThis program is distributed under the GNU General Public License Version 2 | WebSite Designed With ❤️

8 часов назад @ libresprite.github.io
If AI has a bright future, why does AI think it doesn't?
If AI has a bright future, why does AI think it doesn't?

Comments

8 часов назад @ claude.ai
We Might All Be AI Engineers Now
We Might All Be AI Engineers Now We Might All Be AI Engineers Now

We Might All Be AI Engineers NowI enjoy writing code.

Lately I’ve been spending most of my time writing agents and tools.

Building systems that supervise AI agents, training models, wiring up pipelines where the AI does the heavy lifting and I do the thinking.

The skill isn’t writing code anymore.

I think we all might be AI Engineers now, and I’m not sure how I feel about that.

8 часов назад @ yasint.dev
GPL upgrades via section 14 proxy delegation
GPL upgrades via section 14 proxy delegation

This is provided solely for the purposes of general information and does not constitute legal advice, guidance, or counsel.

ProblemLet’s say that you wrote a piece of software, and publish it under the GNU General Public License, version 3.0, or the GNU Affero General Public License, version 3.0 (for the sake of simplicity let’s just call them GPL because the networking clause is irrelevant).

You would need to choose between two variants:GPL-3.0-only: Even when the Free Software Foundation publishes a newer version, your project will stay on GPL version 3.0.

So, in my projects, I simply write something like this:This project is licensed under the GNU Affero General Public License, Version 3…

8 часов назад @ runxiyu.org
"I'm obviously taking a risk here by advertising emoji directly."
"I'm obviously taking a risk here by advertising emoji directly." "I'm obviously taking a risk here by advertising emoji directly."

It’s hard to imagine it now, but during iPhone’s first year, no emoji were available at all.

It took four years until 2011’s iOS 5 gave everyone an emoji keyboard.

But in between 2008 and 2011, there existed a peculiar interregnum where emoji were only available on Japanese iPhones.

Fung: I’m obviously taking a risk here by advertising Emoji directly on iTunes. That being said, I’m not the first.

Worst case scenario, I’ll update the application with Emoji support removed.

9 часов назад @ unsung.aresluna.org
Stardex (YC S21) is hiring customer success engineers
Stardex (YC S21) is hiring customer success engineers Stardex (YC S21) is hiring customer success engineers

Stardex is an AI-native ATS and CRM built specifically for executive search firms.

We're backed by Y Combinator and are changing how recruiting firms leverage their data and institutional knowledge.

Our customers are boutique and mid-market executive search firms who are moving off legacy platforms — and they need someone to make that transition seamless.

You're comfortable writing TypeScript/SQL scripts to transform, clean, and migrate messy data from one system to anotherYou're extremely detail-oriented.

Data migration has zero margin for error and you take pride in getting things right.

10 часов назад @ ycombinator.com
TeX Live 2026 is available for download now
TeX Live 2026 is available for download now

TeX Live availabilityTeX Live is available for download now.

You can acquire TeX Live in many ways.

There are no updates to TeX Live YYYY after YYYY+1 is released.

On other systems, you'll need to install GPG through your operating system's package manager, outside of TeX Live.

Getting TeX via your distroThis page is about acquiring the “original” TeX Live—the version of TeX released by the TeX user groups.

12 часов назад @ tug.org
Show HN: Swarm – Program a colony of 200 ants using a custom assembly language
Show HN: Swarm – Program a colony of 200 ants using a custom assembly language Show HN: Swarm – Program a colony of 200 ants using a custom assembly language

Comments

13 часов назад @ dev.moment.com
System76 on Age Verification Laws
System76 on Age Verification Laws System76 on Age Verification Laws

He asked ChatGPT to add El Mencho to a photo.

In practice, this means anyone under 18 isn’t supposed to create a computer account on their own.

A parent that creates a non-admin account on a computer, sets the age for a child account they create, and hands the computer over is in no different state.

Remember El Mencho.

Carl RichellCEOSystem76—Some of these laws impose requirements on System76 and Linux distributions in general.

13 часов назад @ blog.system76.com
Breaking Down 50M Pins: A Smarter Way to Design 3D IC Packages
Breaking Down 50M Pins: A Smarter Way to Design 3D IC Packages

Comments

13 часов назад @ allaboutcircuits.com
The home computer war
The home computer war The home computer war

Oddly enough, the creation of the Color Computer (affectionately known as CoCo) began with a 1978 federal grant, for a computer system to disseminate information to Kentucky tobacco farmers.

[4]The TRS-80 Color Computer [Bilby / CC BY 3.0]The Color Computer came in two versions, a $399 model with four kilobytes of RAM, and a $599 model with sixteen kilobytes and a more feature-rich BASIC interpreter.

This discouraged software developers from authoring Color Computer software, and at launch there were only a handful of Radio-Shack-authored titles available (mostly games, of course).

[23]Tandy never seriously tried to win the home computer wars, nor did they have a real opportunity to do so.

15 часов назад @ technicshistory.com
How to install and start using LineageOS on your phone
How to install and start using LineageOS on your phone How to install and start using LineageOS on your phone

Making the camera work with SELinux set to “Enforcing” was the last part of my debugging process.

The first one is that it does make a lot of sense to give the app process its own SELinux context (domain, label).

It also meant that I can add permissions to this label, without interfering with the main SELinux policy.

-neverallow { appdomain -bluetooth -network_stack } self:capability_class_set *; +neverallow { appdomain -bluetooth -network_stack -opluscamera_app } self:capability_class_set *; # Block device access.

neverallow appdomain dev_type:blk_file { read write }; @@ -746,7 +746,7 @@ neverallow { }:file no_x_file_perms; # Don't allow apps access to any of the following character device…

16 часов назад @ lockywolf.net
Where things stand with the Department of War
Where things stand with the Department of War Where things stand with the Department of War

Yesterday (March 4) Anthropic received a letter from the Department of War confirming that we have been designated as a supply chain risk to America’s national security.

The language used by the Department of War in the letter (even supposing it was legally sound) matches our statement on Friday that the vast majority of our customers are unaffected by a supply chain risk designation.

Even for Department of War contractors, the supply chain risk designation doesn’t (and can’t) limit uses of Claude or business relationships with Anthropic if those are unrelated to their specific Department of War contracts.

Anthropic has much more in common with the Department of War than we have differences…

16 часов назад @ anthropic.com
The next generations of Bubble Tea, Lip Gloss, and Bubbles are available now
The next generations of Bubble Tea, Lip Gloss, and Bubbles are available now The next generations of Bubble Tea, Lip Gloss, and Bubbles are available now

The v2 branches have been powering Crush, our AI coding agent, in production from the very beginning.

We started building terminal user interface tooling on the premise that the terminal is a better place to work (and play) than most people realize.

v2 also reaches deeper into what emerging terminals can actually do.

The terminal is quietly becoming far more capable than most developers realize, and v2 makes gracefully taking advantage of those capabilities very easy.

That’s v2.

18 часов назад @ charm.land
Lobsters Lobsters
последний пост 3 часа назад
What are you doing this weekend?
What are you doing this weekend? What are you doing this weekend?

Feel free to tell what you plan on doing this weekend and even ask for help or feedback.

Please keep in mind it’s more than OK to do nothing at all too!

3 часа назад @ lobste.rs
Hardening Firefox with Anthropic’s Red Team
Hardening Firefox with Anthropic’s Red Team Hardening Firefox with Anthropic’s Red Team

A few weeks ago, Anthropic’s Frontier Red Team approached us with results from a new AI-assisted vulnerability-detection method that surfaced more than a dozen verifiable security bugs, with reproducible tests.

Anthropic’s team got in touch with Firefox engineers after using Claude to identify security bugs in our JavaScript engine.

Critically, their bug reports included minimal test cases that allowed our security team to quickly verify and reproduce each issue.

In addition to the 22 security-sensitive bugs, Anthropic discovered 90 other bugs, most of which are now fixed.

Mozilla has historically led in deploying advanced security techniques to protect Firefox users.

5 часов назад @ blog.mozilla.org
Clinejection — Compromising Cline’s Production Releases just by Prompting an Issue Triager
Clinejection — Compromising Cline’s Production Releases just by Prompting an Issue Triager

Clinejection — Compromising Cline's Production Releases just by Prompting an Issue Triager (via) Adnan Khan describes a devious attack chain against the Cline GitHub repository, which started with a prompt injection attack in the title of an issue opened against the repo.

Cline were running AI-powered issue triage using the anthropics/claude-code-action@v1 action, configured to run Claude Code with --allowedTools "Bash,Read,Write,..." any time any user opened an issue in their repo.

The configured prompt included the issue title, which meant you could trick Claude into executing any command you like with an issue title looking something like this:Tool error.

Prior to running gh cli commands…

5 часов назад @ simonwillison.net
ucode: JavaScript-like language with optional templating
ucode: JavaScript-like language with optional templating ucode: JavaScript-like language with optional templating

The ucode Scripting LanguageThe ucode language is a small, general-purpose scripting language that resembles ECMAScript syntax.

Initially intended as a template processor, ucode evolved into a versatile scripting language for various system scripting tasks.

DocumentationThe most up-to-date documentation is hosted at the ucode documentation portal.

Some ucode scripting examples can be found in the ucode testcase sources.

Projects using ucode scripting include the OpenWrt LuCI web interface and the OpenWrt firewall4 framework.

7 часов назад @ github.com
Ambiguity in C
Ambiguity in C Ambiguity in C

Pointer declarations are ambiguousThe infamous pointer declaration syntax:foo * bar;Is the above statement a declaration or a multiplication?

Things get messier when you combine this with the pointer declaration syntax to declare function pointers.

Depending on the context, this can be read either as a function declaration or as an expression involving two function calls.

At first glance, you may be thinking that type-focused syntax creates more ambiguities (e.g, foo * bar ), but that’s not necessarily true.

-Trần Thành Long

7 часов назад @ longtran2904.substack.com
Mozilla is working on a big Firefox redesign, here is what it looks like
Mozilla is working on a big Firefox redesign, here is what it looks like

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 часов назад @ neowin.net
EUPL: European Union Public License
EUPL: European Union Public License EUPL: European Union Public License

EUPL is an acronym for "European Union Public Licence".

By a second Decision of 9 January 2008, the European Commission validated the EUPL in all the official languages of the European Union.

By a third Decision of 9 January 2009, the European Commission clarified specific points of the EUPL, publishing the version 1.1 in all the official languages of the European Union.

The purpose of the European Commission is first of all to distribute its own software under the licence.

This website is not sponsored or endorsed by the European Commission or any other institution, body or agency of the European Union.

7 часов назад @ eupl.eu
XKCD dependency in p5.js
XKCD dependency in p5.js XKCD dependency in p5.js

Comments

7 часов назад @ editor.p5js.org
elfconv: Linux Apps to High-Performance Wasm Binary Translator (2025)
elfconv: Linux Apps to High-Performance Wasm Binary Translator (2025)

Comments

8 часов назад @ medium.com
OpenWrt 25.12.0 Released
OpenWrt 25.12.0 Released

Comments

9 часов назад @ forum.openwrt.org
A new chapter for the Nix language, courtesy of WebAssembly
A new chapter for the Nix language, courtesy of WebAssembly A new chapter for the Nix language, courtesy of WebAssembly

The Nix language is a domain-specific language for describing software configurations.

Determinate Nix now has a better way to extend the Nix language: through the power of WebAssembly.

The Wasm function takes a single Nix value as input (in this case 33 ), and returns a single Nix value as output.

collect :: < Vec < _ >> (), ) } fn yaml_to_value ( yaml : & Yaml ) -> Value { match yaml { Yaml :: Integer ( n ) => Value :: make_int ( * n ), Yaml :: String ( s ) => Value :: make_string ( s ), Yaml :: Array ( array ) => { Value :: make_list ( & array .

The Nix language has its detractors but it’s nonetheless provided a stable foundation for Nix for many years.

9 часов назад @ determinate.systems
Fixing a major evaluation order footgun in Rye 0.2
Fixing a major evaluation order footgun in Rye 0.2 Fixing a major evaluation order footgun in Rye 0.2

* versions because this Rye brings a major change in evaluation rules and terminology.

The changes remove a major “footgun” behavior related to evaluation order especially in regards to operators.

It introduces a new word type dot-word, and somewhat changes (existing) op-word behavior.

* 12 - 6 - 4 ; returns 2 11 + 2 > 12 ; returns trueRye comes from the Rebol family, where consistent left-to-right operator evaluation is the norm - not C-like operator precedence rules.

Simpler Type Constructors#Value constructors were always just the name of the type in Rye.

10 часов назад @ ryelang.org
10% of Firefox crashes are caused by bitflips
10% of Firefox crashes are caused by bitflips 10% of Firefox crashes are caused by bitflips

To use the Mastodon web application, please enable JavaScript.

Alternatively, try one of the native apps for Mastodon for your platform.

11 часов назад @ mas.to
Howard Abrams' Literate Programming with Org Mode
Howard Abrams' Literate Programming with Org Mode Howard Abrams' Literate Programming with Org Mode

Comments

13 часов назад @ youtube.com
Play the New York Times Connections puzzle with DuckDB
Play the New York Times Connections puzzle with DuckDB Play the New York Times Connections puzzle with DuckDB

Be wary: this README contains spoilers for the New York Times Connections puzzle for 2026-02-26 and 2026-02-27 in America/New_York time.

DuckDB is already more fun than a barrel of ducks.

But sometimes the toil of crunching entities leaves you wanting a little side quest, a diversion from your data destination.

What if you could take a break and play the New York Times Connections puzzle, all without leaving your DuckDB REPL?

Introducing the first database that lets you play the New York Times Connections puzzle: connections.duckdb .

14 часов назад @ github.com
Techmeme Techmeme
последний пост 1 час назад
Robinhood debuts its $658.4M venture fund on the NYSE, pricing the IPO at $25 per share, offering retail investors access to private companies like Databricks (Manya Saini/Reuters)
Robinhood debuts its $658.4M venture fund on the NYSE, pricing the IPO at $25 per share, offering retail investors access to private companies like Databricks (Manya Saini/Reuters) Robinhood debuts its $658.4M venture fund on the NYSE, pricing the IPO at $25 per share, offering retail investors access to private companies like Databricks (Manya Saini/Reuters)

Manya Saini / Reuters:

Robinhood debuts its $658.4M venture fund on the NYSE, pricing the IPO at $25 per share, offering retail investors access to private companies like Databricks — Robinhood (HOOD.O) debuted its flagship $658.4 million venture fund on the New York Stock Exchange on Friday …

1 час назад @ techmeme.com
Hayden AI, which raised $180M for its traffic management system, sues its ex-CEO Chris Carson Jr. for allegedly using its data to start a competitor and more (William Hicks/San Francisco Business ...)
Hayden AI, which raised $180M for its traffic management system, sues its ex-CEO Chris Carson Jr. for allegedly using its data to start a competitor and more (William Hicks/San Francisco Business ...) Hayden AI, which raised $180M for its traffic management system, sues its ex-CEO Chris Carson Jr. for allegedly using its data to start a competitor and more (William Hicks/San Francisco Business ...)

William Hicks / San Francisco Business Times:

Hayden AI, which raised $180M for its traffic management system, sues its ex-CEO Chris Carson Jr. for allegedly using its data to start a competitor and more — A San Francisco AI startup best known for giving drivers tickets for bus lane infractions has filed an explosive lawsuit …

2 часа назад @ techmeme.com
Mozilla says Claude Opus 4.6 found 100+ bugs in Firefox in two weeks in January, 14 of them high-severity, more than the bugs typically reported in two months (Robert McMillan/Wall Street Journal)
Mozilla says Claude Opus 4.6 found 100+ bugs in Firefox in two weeks in January, 14 of them high-severity, more than the bugs typically reported in two months (Robert McMillan/Wall Street Journal) Mozilla says Claude Opus 4.6 found 100+ bugs in Firefox in two weeks in January, 14 of them high-severity, more than the bugs typically reported in two months (Robert McMillan/Wall Street Journal)

Robert McMillan / Wall Street Journal:

Mozilla says Claude Opus 4.6 found 100+ bugs in Firefox in two weeks in January, 14 of them high-severity, more than the bugs typically reported in two months — New AI-powered tools are increasingly adept at spotting flaws. Hacking experts worry they will be good at exploiting them, too.

3 часа назад @ techmeme.com
Sources: SoftBank is seeking a bridge loan of up to $40B, its largest-ever borrowing denominated solely in dollars, to help finance its investment in OpenAI (Bloomberg)
Sources: SoftBank is seeking a bridge loan of up to $40B, its largest-ever borrowing denominated solely in dollars, to help finance its investment in OpenAI (Bloomberg) Sources: SoftBank is seeking a bridge loan of up to $40B, its largest-ever borrowing denominated solely in dollars, to help finance its investment in OpenAI (Bloomberg)

Bloomberg:

Sources: SoftBank is seeking a bridge loan of up to $40B, its largest-ever borrowing denominated solely in dollars, to help finance its investment in OpenAI — SoftBank Group Corp. is seeking a loan of as much as $40 billion to mostly help finance its investment in US tech giant OpenAI …

4 часа назад @ techmeme.com
Indonesia says it will ban "high-risk" platforms, including YouTube, TikTok, Facebook, Instagram, Threads, X, and Roblox, for children under 16 from March 28 (Associated Press)
Indonesia says it will ban "high-risk" platforms, including YouTube, TikTok, Facebook, Instagram, Threads, X, and Roblox, for children under 16 from March 28 (Associated Press) Indonesia says it will ban "high-risk" platforms, including YouTube, TikTok, Facebook, Instagram, Threads, X, and Roblox, for children under 16 from March 28 (Associated Press)

Associated Press:

Indonesia says it will ban “high-risk” platforms, including YouTube, TikTok, Facebook, Instagram, Threads, X, and Roblox, for children under 16 from March 28 — Indonesia will ban social media for children under 16, Communication and Digital Affairs Minister Meutya Hafid said Friday.

6 часов назад @ techmeme.com
US federal regulators say banks don't need extra capital against losses when dealing with blockchain-based securities, calling their rules "technology neutral" (Reuters)
US federal regulators say banks don't need extra capital against losses when dealing with blockchain-based securities, calling their rules "technology neutral" (Reuters) US federal regulators say banks don't need extra capital against losses when dealing with blockchain-based securities, calling their rules "technology neutral" (Reuters)

Reuters:

US federal regulators say banks don't need extra capital against losses when dealing with blockchain-based securities, calling their rules “technology neutral” — U.S. banking regulators clarified on Thursday that banks should not have to hold additional capital against losses …

6 часов назад @ techmeme.com
Microsoft plans to keep Anthropic's tools embedded in client products, after its lawyers determine the DOD's designation doesn't apply to non-defense projects (Jordan Novet/CNBC)
Microsoft plans to keep Anthropic's tools embedded in client products, after its lawyers determine the DOD's designation doesn't apply to non-defense projects (Jordan Novet/CNBC) Microsoft plans to keep Anthropic's tools embedded in client products, after its lawyers determine the DOD's designation doesn't apply to non-defense projects (Jordan Novet/CNBC)

Jordan Novet / CNBC:

Microsoft plans to keep Anthropic's tools embedded in client products, after its lawyers determine the DOD's designation doesn't apply to non-defense projects — Microsoft said Thursday that it will keep startup Anthropic's artificial intelligence technology embedded in its products for clients, excluding the U.S. Department of War.

7 часов назад @ techmeme.com
A look at SpaceX's IPO, reportedly aiming to raise up to $50B at a $1.75T valuation, more than seven times higher than its ~$200B valuation in October 2024 (Financial Times)
A look at SpaceX's IPO, reportedly aiming to raise up to $50B at a $1.75T valuation, more than seven times higher than its ~$200B valuation in October 2024 (Financial Times) A look at SpaceX's IPO, reportedly aiming to raise up to $50B at a $1.75T valuation, more than seven times higher than its ~$200B valuation in October 2024 (Financial Times)

Financial Times:

A look at SpaceX's IPO, reportedly aiming to raise up to $50B at a $1.75T valuation, more than seven times higher than its ~$200B valuation in October 2024 — Star Trek's warp drive allows a starship to bend space-time and exceed the speed of light without breaking Einstein's general theory of relativity.

8 часов назад @ techmeme.com
Rozana, which offers rural e-commerce and logistics services to 21,000 villages across India, raised a $31.6M Series B led by Bertelsmann India Investments (Gyan Vardhan/Entrackr)
Rozana, which offers rural e-commerce and logistics services to 21,000 villages across India, raised a $31.6M Series B led by Bertelsmann India Investments (Gyan Vardhan/Entrackr) Rozana, which offers rural e-commerce and logistics services to 21,000 villages across India, raised a $31.6M Series B led by Bertelsmann India Investments (Gyan Vardhan/Entrackr)

Gyan Vardhan / Entrackr:

Rozana, which offers rural e-commerce and logistics services to 21,000 villages across India, raised a $31.6M Series B led by Bertelsmann India Investments — Rural omnichannel retail platform Rozana has raised Rs 290 crore ($31.6 million) in a Series B funding round led by Bertelsmann India Investments.

11 часов назад @ techmeme.com
Sources: the UK plans to delay copyright rule changes for AI training after a two-month consultation failed to land on a favored proposal among stakeholders (Financial Times)
Sources: the UK plans to delay copyright rule changes for AI training after a two-month consultation failed to land on a favored proposal among stakeholders (Financial Times) Sources: the UK plans to delay copyright rule changes for AI training after a two-month consultation failed to land on a favored proposal among stakeholders (Financial Times)

Financial Times:

Sources: the UK plans to delay copyright rule changes for AI training after a two-month consultation failed to land on a favored proposal among stakeholders — Government goes back to drawing board after its proposals triggered backlash from creative industries

11 часов назад @ techmeme.com
An interview with Tim Sweeney on the Google/Epic settlement, what Play Store changes mean for developers, why Epic's case against Apple is different, and more (Dean Takahashi/GamesBeat)
An interview with Tim Sweeney on the Google/Epic settlement, what Play Store changes mean for developers, why Epic's case against Apple is different, and more (Dean Takahashi/GamesBeat) An interview with Tim Sweeney on the Google/Epic settlement, what Play Store changes mean for developers, why Epic's case against Apple is different, and more (Dean Takahashi/GamesBeat)

Dean Takahashi / GamesBeat:

An interview with Tim Sweeney on the Google/Epic settlement, what Play Store changes mean for developers, why Epic's case against Apple is different, and more — It's been 2,030 days since Fortnite was put in jail, with both Google and Apple pulling it down worldwide on August 13, 2020 …

12 часов назад @ techmeme.com
Cursor launches Automations, a new tool that lets users automatically launch agents triggered through new additions to a codebase, a Slack message, or a timer (Russell Brandom/TechCrunch)
Cursor launches Automations, a new tool that lets users automatically launch agents triggered through new additions to a codebase, a Slack message, or a timer (Russell Brandom/TechCrunch) Cursor launches Automations, a new tool that lets users automatically launch agents triggered through new additions to a codebase, a Slack message, or a timer (Russell Brandom/TechCrunch)

Russell Brandom / TechCrunch:

Cursor launches Automations, a new tool that lets users automatically launch agents triggered through new additions to a codebase, a Slack message, or a timer — As agentic coding spreads, the working life of a software engineer has become dazzlingly complex.

12 часов назад @ techmeme.com
Filing: the US SEC settles with Tron founder Justin Sun over its 2023 case that alleged securities fraud; a Tron-affiliated company will pay the $10M fine (Nikhilesh De/CoinDesk)
Filing: the US SEC settles with Tron founder Justin Sun over its 2023 case that alleged securities fraud; a Tron-affiliated company will pay the $10M fine (Nikhilesh De/CoinDesk) Filing: the US SEC settles with Tron founder Justin Sun over its 2023 case that alleged securities fraud; a Tron-affiliated company will pay the $10M fine (Nikhilesh De/CoinDesk)

Nikhilesh De / CoinDesk:

Filing: the US SEC settles with Tron founder Justin Sun over its 2023 case that alleged securities fraud; a Tron-affiliated company will pay the $10M fine — Rainberry, a company affiliated with the Tron network, will pay a $10 million fine. Charges against Sun will be dismissed.

13 часов назад @ techmeme.com
ByteDance's Seedance 2.0 AI model is held back by limited compute resources that create a bottleneck, forcing users to wait hours to generate a single video (Zeyi Yang/Wired)
ByteDance's Seedance 2.0 AI model is held back by limited compute resources that create a bottleneck, forcing users to wait hours to generate a single video (Zeyi Yang/Wired) ByteDance's Seedance 2.0 AI model is held back by limited compute resources that create a bottleneck, forcing users to wait hours to generate a single video (Zeyi Yang/Wired)

Zeyi Yang / Wired:

ByteDance's Seedance 2.0 AI model is held back by limited compute resources that create a bottleneck, forcing users to wait hours to generate a single video — ByteDance's new Seedance 2.0 AI video model seemed unstoppable—until heavy demand strained the company's compute capacity and copyright complaints began piling up.

13 часов назад @ techmeme.com
Sources: OpenAI employees claim the DOD tested Microsoft's Azure version of OpenAI models before OpenAI lifted its blanket ban on military use in January 2024 (Maxwell Zeff/Wired)
Sources: OpenAI employees claim the DOD tested Microsoft's Azure version of OpenAI models before OpenAI lifted its blanket ban on military use in January 2024 (Maxwell Zeff/Wired) Sources: OpenAI employees claim the DOD tested Microsoft's Azure version of OpenAI models before OpenAI lifted its blanket ban on military use in January 2024 (Maxwell Zeff/Wired)

Maxwell Zeff / Wired:

Sources: OpenAI employees claim the DOD tested Microsoft's Azure version of OpenAI models before OpenAI lifted its blanket ban on military use in January 2024 — Sources allege the Defense Department experimented with Microsoft's version of OpenAI technology before the ChatGPT-maker lifted its prohibition on military applications.

14 часов назад @ techmeme.com
Techmeme Techmeme
последний пост 1 час назад
The US Senate passed COPPA 2.0 again, which would create new protections for young users; the bill now heads to the House, where it has struggled to pass (Anna Washenko/Engadget)
The US Senate passed COPPA 2.0 again, which would create new protections for young users; the bill now heads to the House, where it has struggled to pass (Anna Washenko/Engadget) The US Senate passed COPPA 2.0 again, which would create new protections for young users; the bill now heads to the House, where it has struggled to pass (Anna Washenko/Engadget)

Anna Washenko / Engadget:

The US Senate passed COPPA 2.0 again, which would create new protections for young users; the bill now heads to the House, where it has struggled to pass — The measure for protecting children and teens' personal data could once more fail in the House. — Today the US Senate unanimously …

14 часов назад @ techmeme.com
A look at Cloverleaf, which strikes deals with utility companies and secures land for AI companies and their data center needs; the company has raised $300M (New York Times)
A look at Cloverleaf, which strikes deals with utility companies and secures land for AI companies and their data center needs; the company has raised $300M (New York Times) A look at Cloverleaf, which strikes deals with utility companies and secures land for AI companies and their data center needs; the company has raised $300M (New York Times)

New York Times:

A look at Cloverleaf, which strikes deals with utility companies and secures land for AI companies and their data center needs; the company has raised $300M — Brian Janous, a former Microsoft executive, and his firm Cloverleaf have become modern-day land men, packaging electricity and land for data centers.

15 часов назад @ techmeme.com
Dario Amodei says Anthropic has been "having productive conversations" with the DOD and apologizes for a leaked memo that criticized Trump and Sam Altman (Anthropic)
Dario Amodei says Anthropic has been "having productive conversations" with the DOD and apologizes for a leaked memo that criticized Trump and Sam Altman (Anthropic) Dario Amodei says Anthropic has been "having productive conversations" with the DOD and apologizes for a leaked memo that criticized Trump and Sam Altman (Anthropic)

Anthropic:

Dario Amodei says Anthropic has been “having productive conversations” with the DOD and apologizes for a leaked memo that criticized Trump and Sam Altman — Yesterday (March 4) Anthropic received a letter from the Department of War confirming that we have been designated …

16 часов назад @ techmeme.com
Google has quietly released an unsupported Workspace CLI, making it easier for agentic AI tools to access Gmail, Calendar, Drive, Docs, and other apps (Ben Patterson/PCWorld)
Google has quietly released an unsupported Workspace CLI, making it easier for agentic AI tools to access Gmail, Calendar, Drive, Docs, and other apps (Ben Patterson/PCWorld) Google has quietly released an unsupported Workspace CLI, making it easier for agentic AI tools to access Gmail, Calendar, Drive, Docs, and other apps (Ben Patterson/PCWorld)

Ben Patterson / PCWorld:

Google has quietly released an unsupported Workspace CLI, making it easier for agentic AI tools to access Gmail, Calendar, Drive, Docs, and other apps — A new command-line interface for Google Workspace greases the wheels for personal AI assistants like OpenClaw to tap directly into Workspace documents.

16 часов назад @ techmeme.com
Cluely's CEO, Roy Lee, says he lied about its $7M annual recurring revenue last year, calling it "the only blatantly dishonest thing I've said publicly online" (Julie Bort/TechCrunch)
Cluely's CEO, Roy Lee, says he lied about its $7M annual recurring revenue last year, calling it "the only blatantly dishonest thing I've said publicly online" (Julie Bort/TechCrunch) Cluely's CEO, Roy Lee, says he lied about its $7M annual recurring revenue last year, calling it "the only blatantly dishonest thing I've said publicly online" (Julie Bort/TechCrunch)

Julie Bort / TechCrunch:

Cluely's CEO, Roy Lee, says he lied about its $7M annual recurring revenue last year, calling it “the only blatantly dishonest thing I've said publicly online” — The $7 million in annual recurring revenue that Cluely co-founder and CEO Roy Lee shared with TechCrunch last summer was a lie …

17 часов назад @ techmeme.com
Sources: the US is considering requiring countries whose companies buy large volumes of Nvidia and AMD AI chips to invest in US AI infrastructure (Demetri Sevastopulo/Financial Times)
Sources: the US is considering requiring countries whose companies buy large volumes of Nvidia and AMD AI chips to invest in US AI infrastructure (Demetri Sevastopulo/Financial Times) Sources: the US is considering requiring countries whose companies buy large volumes of Nvidia and AMD AI chips to invest in US AI infrastructure (Demetri Sevastopulo/Financial Times)

Demetri Sevastopulo / Financial Times:

Sources: the US is considering requiring countries whose companies buy large volumes of Nvidia and AMD AI chips to invest in US AI infrastructure — Draft rule would require countries to invest in America in exchange for advanced semiconductors — The US commerce department …

18 часов назад @ techmeme.com
Sources: Together AI is in talks to raise ~$1B at a $7.5B pre-money valuation, up from $3.3B in 2025; its annualized revenue has hit ~$1B, up 3x+ from mid-2025 (The Information)
Sources: Together AI is in talks to raise ~$1B at a $7.5B pre-money valuation, up from $3.3B in 2025; its annualized revenue has hit ~$1B, up 3x+ from mid-2025 (The Information) Sources: Together AI is in talks to raise ~$1B at a $7.5B pre-money valuation, up from $3.3B in 2025; its annualized revenue has hit ~$1B, up 3x+ from mid-2025 (The Information)

The Information:

Sources: Together AI is in talks to raise ~$1B at a $7.5B pre-money valuation, up from $3.3B in 2025; its annualized revenue has hit ~$1B, up 3x+ from mid-2025 — Together AI, one of several up-and-coming cloud providers renting out Nvidia chip servers to AI developers …

19 часов назад @ techmeme.com
Anthropic says Claude's free active users grew 60%+ and daily signups grew 4x since the start of the year, with Monday being its strongest day ever (Shirin Ghaffary/Bloomberg)
Anthropic says Claude's free active users grew 60%+ and daily signups grew 4x since the start of the year, with Monday being its strongest day ever (Shirin Ghaffary/Bloomberg) Anthropic says Claude's free active users grew 60%+ and daily signups grew 4x since the start of the year, with Monday being its strongest day ever (Shirin Ghaffary/Bloomberg)

Shirin Ghaffary / Bloomberg:

Anthropic says Claude's free active users grew 60%+ and daily signups grew 4x since the start of the year, with Monday being its strongest day ever — The Claude maker gains new traction with everyday users while its enterprise business is under pressure — Anthropic is gaining ground …

20 часов назад @ techmeme.com
Anthropic launches an early-warning system for potential AI-driven destruction of white-collar jobs, says it shows "limited evidence" of AI-led job loss so far (Courtenay Brown/Axios)
Anthropic launches an early-warning system for potential AI-driven destruction of white-collar jobs, says it shows "limited evidence" of AI-led job loss so far (Courtenay Brown/Axios) Anthropic launches an early-warning system for potential AI-driven destruction of white-collar jobs, says it shows "limited evidence" of AI-led job loss so far (Courtenay Brown/Axios)

Courtenay Brown / Axios:

Anthropic launches an early-warning system for potential AI-driven destruction of white-collar jobs, says it shows “limited evidence” of AI-led job loss so far — - An occupation's specific tasks; — An estimate of which of those tasks can be performed by large language models.

20 часов назад @ techmeme.com
Microsoft's new gaming CEO, Asha Sharma, teases the next-gen Xbox, codenamed Project Helix, saying it "will lead in performance and play your Xbox and PC games" (Jay Peters/The Verge)
Microsoft's new gaming CEO, Asha Sharma, teases the next-gen Xbox, codenamed Project Helix, saying it "will lead in performance and play your Xbox and PC games" (Jay Peters/The Verge) Microsoft's new gaming CEO, Asha Sharma, teases the next-gen Xbox, codenamed Project Helix, saying it "will lead in performance and play your Xbox and PC games" (Jay Peters/The Verge)

Jay Peters / The Verge:

Microsoft's new gaming CEO, Asha Sharma, teases the next-gen Xbox, codenamed Project Helix, saying it “will lead in performance and play your Xbox and PC games” — The new Xbox boss Asha Sharma revealed the codename as one of her first big announcements.

21 час назад @ techmeme.com
X revamps its Creator Subscriptions with exclusive threads, a refreshed subscriptions paywall, a new dashboard, a shareable subscriptions card, and more (Sarah Perez/TechCrunch)
X revamps its Creator Subscriptions with exclusive threads, a refreshed subscriptions paywall, a new dashboard, a shareable subscriptions card, and more (Sarah Perez/TechCrunch) X revamps its Creator Subscriptions with exclusive threads, a refreshed subscriptions paywall, a new dashboard, a shareable subscriptions card, and more (Sarah Perez/TechCrunch)

Sarah Perez / TechCrunch:

X revamps its Creator Subscriptions with exclusive threads, a refreshed subscriptions paywall, a new dashboard, a shareable subscriptions card, and more — Elon Musk-owned X announced on Thursday that it's revamping the social network's Creator Subscriptions offering with a number of new features …

21 час назад @ techmeme.com
Meta recently hired the engineering team from Atma Sciences, the company behind the vibe coding app Gizmo, to join its Superintelligence Labs (Sydney Bradley/Business Insider)
Meta recently hired the engineering team from Atma Sciences, the company behind the vibe coding app Gizmo, to join its Superintelligence Labs (Sydney Bradley/Business Insider) Meta recently hired the engineering team from Atma Sciences, the company behind the vibe coding app Gizmo, to join its Superintelligence Labs (Sydney Bradley/Business Insider)

Sydney Bradley / Business Insider:

Meta recently hired the engineering team from Atma Sciences, the company behind the vibe coding app Gizmo, to join its Superintelligence Labs — - Meta hired the engineers behind the vibe-coding app Gizmo. — The app lets people use AI to create and share interactive content, like mini apps or games.

22 часа назад @ techmeme.com
GPT-5.4 is priced at $2.50/1M input tokens and $15/1M output tokens; GPT-5.4 Pro is priced at $30/1M input tokens and $180/1M output tokens (Carl Franzen/VentureBeat)
GPT-5.4 is priced at $2.50/1M input tokens and $15/1M output tokens; GPT-5.4 Pro is priced at $30/1M input tokens and $180/1M output tokens (Carl Franzen/VentureBeat) GPT-5.4 is priced at $2.50/1M input tokens and $15/1M output tokens; GPT-5.4 Pro is priced at $30/1M input tokens and $180/1M output tokens (Carl Franzen/VentureBeat)

Carl Franzen / VentureBeat:

GPT-5.4 is priced at $2.50/1M input tokens and $15/1M output tokens; GPT-5.4 Pro is priced at $30/1M input tokens and $180/1M output tokens — The AI updates aren't slowing down. Literally two days after OpenAI launched a new underlying AI model for ChatGPT called GPT-5.3 Instant …

22 часа назад @ techmeme.com
A senior defense official says Pentagon has formally notified Anthropic that the company and its products are deemed a supply chain risk (Katrina Manson/Bloomberg)
A senior defense official says Pentagon has formally notified Anthropic that the company and its products are deemed a supply chain risk (Katrina Manson/Bloomberg) A senior defense official says Pentagon has formally notified Anthropic that the company and its products are deemed a supply chain risk (Katrina Manson/Bloomberg)

Katrina Manson / Bloomberg:

A senior defense official says Pentagon has formally notified Anthropic that the company and its products are deemed a supply chain risk — The Pentagon said it has formally notified Anthropic PBC that it's determined the company and its products pose a risk to the US supply chain …

23 часа назад @ techmeme.com
OpenAI says users can now use ChatGPT directly in Microsoft Excel and Google Sheets and debuts a suite of financial-services tools to better tackle office work (Rachel Metz/Bloomberg)
OpenAI says users can now use ChatGPT directly in Microsoft Excel and Google Sheets and debuts a suite of financial-services tools to better tackle office work (Rachel Metz/Bloomberg) OpenAI says users can now use ChatGPT directly in Microsoft Excel and Google Sheets and debuts a suite of financial-services tools to better tackle office work (Rachel Metz/Bloomberg)

Rachel Metz / Bloomberg:

OpenAI says users can now use ChatGPT directly in Microsoft Excel and Google Sheets and debuts a suite of financial-services tools to better tackle office work — OpenAI is releasing a new flagship artificial intelligence model and a suite of financial-services tools that are meant to be better …

23 часа назад @ techmeme.com
GitHub Trending GitHub Trending
последний пост 14 часов назад
anthropics/prompt-eng-interactive-tutorial
anthropics/prompt-eng-interactive-tutorial anthropics/prompt-eng-interactive-tutorial

Welcome to Anthropic's Prompt Engineering Interactive TutorialCourse introduction and goalsThis course is intended to provide you with a comprehensive step-by-step understanding of how to engineer optimal prompts within Claude.

The course is broken up into 9 chapters with accompanying exercises, as well as an appendix of even more advanced methods.

Anthropic has two other models, Claude 3 Sonnet and Claude 3 Opus, which are more intelligent than Haiku, with Opus being the most intelligent.

This tutorial also exists on Google Sheets using Anthropic's Claude for Sheets extension.

When you are ready to begin, go to 01_Basic Prompt Structure to proceed.

14 часов назад @ github.com
superset-sh/superset
superset-sh/superset superset-sh/superset

Superset is a turbocharged terminal that allows you to run any CLI coding agents along with the tools to 10x your development workflow.

Install dependencies and run bun install bun run dev 5.

Build the desktop app bun run build open apps/desktop/releaseKeyboard ShortcutsAll shortcuts are customizable via Settings > Keyboard Shortcuts ( ⌘/ ).

{ "setup" : [ " ./.superset/setup.sh " ], "teardown" : [ " ./.superset/teardown.sh " ] }Option Type Description setup string[] Commands to run when creating a workspace teardown string[] Commands to run when deleting a workspaceExample setup script#!

/bin/bash # .superset/setup.sh # Copy environment variables cp ../.env .env # Install dependencies bun i…

14 часов назад @ github.com
ruvnet/ruflo
ruvnet/ruflo ruvnet/ruflo

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.

1 day, 14 hours назад @ github.com
ruvnet/RuView
ruvnet/RuView ruvnet/RuView

WiFi DensePose turns commodity WiFi signals into real-time human pose estimation, vital sign monitoring, and presence detection — all without a single pixel of video.

The CSI signal field acts as a "sixth sense" for detecting humans in the environment without requiring line-of-sight.

It reads WiFi signal data and makes decisions locally in under 10 ms. ADR-041 defines 60 modules across 13 categories — all 60 are implemented with 609 tests passing.

Raw WiFi CSI (56 subcarriers, noisy) | +-- ruvector-mincut ---------- Which channels carry body-motion signal?

Fine-tune ESP32 CSI + camera pseudo-labels Environment-specific multipath adaptation ruvector-solver for Fresnel geometry, ruvector-attn…

2 days, 14 hours назад @ github.com
xpzouying/xiaohongshu-mcp
xpzouying/xiaohongshu-mcp xpzouying/xiaohongshu-mcp

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.

2 days, 14 hours назад @ github.com
alibaba/OpenSandbox
alibaba/OpenSandbox alibaba/OpenSandbox

Sandbox Protocol : Defines sandbox lifecycle management APIs and sandbox execution APIs so you can extend custom sandbox runtimes.

: Defines sandbox lifecycle management APIs and sandbox execution APIs so you can extend custom sandbox runtimes.

git clone https://github.com/alibaba/OpenSandbox.git cd OpenSandbox/server uv sync cp example.config.toml ~ /.sandbox.toml # Copy configuration file uv run python -m src.main # Start the service2.

Create a sandbox sandbox = await Sandbox .

Create a code interpreter interpreter = await CodeInterpreter .

3 days, 15 hours назад @ github.com
shareAI-lab/learn-claude-code
shareAI-lab/learn-claude-code shareAI-lab/learn-claude-code

/ \ yes no | | execute tools return text append results loop back -----------------> messages[] That's the minimal loop.

create ( model = MODEL , system = SYSTEM , messages = messages , tools = TOOLS , ) messages .

append ({ "role" : "user" , "content" : results })Every session layers one mechanism on top of this loop -- without changing the loop itself.

Cron -- the agent can schedule its own future tasks, executed automatically when the time comes.

claw0 is our companion teaching repo that deconstructs these mechanisms from scratch:claw agent = agent core + heartbeat + cron + IM chat + memory + soullearn-claude-code claw0 (agent runtime core: (proactive always-on assistant: loop, tools, pl…

3 days, 15 hours назад @ github.com
moeru-ai/airi
moeru-ai/airi moeru-ai/airi

Project AIRIRe-creating Neuro-sama, a soul container of AI waifu / virtual characters to bring them into our world.

Note We've got a whole dedicated organization @proj-airi for all the sub-projects born from Project AIRI.

Have you dreamed about having a cyber living being (cyber waifu, digital pet) or digital companion that could play with and talk to you?

Therefore, this project, AIRI, offers another possibility here: let you own your digital life, cyber living, easily, anywhere, anytime.

pnpm i pnpm devStage Web (Browser Version at airi.moeru.ai)pnpm devStage Tamagotchi (Desktop Version)pnpm dev:tamagotchiA Nix package for Tamagotchi is included.

3 days, 15 hours назад @ github.com
moonshine-ai/moonshine
moonshine-ai/moonshine moonshine-ai/moonshine

This means calling the speech to text model repeatedly over time as a sentence is spoken.

The main steps involved are microphone capture, voice activity detection (to break a continuous stream of audio into sections of speech), speech to text, speaker identification, and intent recognition.

text } " ) transcriber .

start () # Loop through the audio data in chunks to simulate live streaming # from a microphone or other source.

log_output_text : If this is enabled then the results of the speech to text model will be logged to the console.

5 days, 15 hours назад @ github.com
NVlabs/GR00T-WholeBodyControl
NVlabs/GR00T-WholeBodyControl NVlabs/GR00T-WholeBodyControl

It hosts model checkpoints and scripts for training, evaluating, and deploying advanced whole-body controllers for humanoid robots.

In this repo, we will release SONIC's training code, deployment framework, model checkpoints, and teleoperation stack for data collection.

VR Whole-Body TeleoperationSONIC supports real-time whole-body teleoperation via PICO VR headset, enabling natural human-to-robot motion transfer for data collection and interactive control.

The NVIDIA Open Model License permits commercial use with attribution and requires compliance with NVIDIA's Trustworthy AI terms.

Decoupled WBCFor the Decoupled WBC used in GR00T N1.5 and N1.6 models, please refer to the Decoupled WBC do…

5 days, 15 hours назад @ github.com
abhigyanpatwari/GitNexus
abhigyanpatwari/GitNexus abhigyanpatwari/GitNexus

GitNexus lets you analyze it — because a knowledge graph tracks every relationship, not just descriptions.

CLI + MCP (recommended)The CLI indexes your repository and runs an MCP server that gives AI agents deep codebase awareness.

When an AI agent starts, the MCP server reads the registry and can serve any indexed repo.

name , r . confidence ORDER BY r . confidence DESCWiki GenerationGenerate LLM-powered documentation from your knowledge graph:# Requires an LLM API key (OPENAI_API_KEY, etc.)

gitnexus wiki # Use a custom model or provider gitnexus wiki --model gpt-4o gitnexus wiki --base-url https://api.anthropic.com/v1 # Force full regeneration gitnexus wiki --forceThe wiki generator reads …

5 days, 15 hours назад @ github.com
anthropics/claude-code
anthropics/claude-code anthropics/claude-code

Claude CodeClaude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows -- all through natural language commands.

Install Claude Code: MacOS/Linux (Recommended): curl -fsSL https://claude.ai/install.sh | bash Homebrew (MacOS/Linux): brew install --cask claude-code Windows (Recommended): irm https: // claude.ai / install.ps1 | iex WinGet (Windows): winget install Anthropic.ClaudeCode NPM (Deprecated): npm install -g @anthropic-ai/claude-code Navigate to your project directory and run claude .

PluginsThis repository includes several Claude Code plugins tha…

5 days, 15 hours назад @ github.com
vxcontrol/pentagi
vxcontrol/pentagi vxcontrol/pentagi

Accessing PentAGI from External NetworksBy default, PentAGI binds to 127.0.0.1 (localhost only) for security.

Podman Rootful ModeIf you're running Podman in rootful mode (with sudo), you can use the default configuration without modifications.

base_url } /api/v1/graphql" , json = { "query" : query , "variables" : { "provider" : provider , "input" : target } }, headers = self .

By setting LLM_SERVER_PROVIDER=moonshot , you can use the same provider configuration file for both direct API access and LiteLLM proxy access without modifications.

While typical agent workflows consume around 64K tokens, PentAGI uses 110K context size for safety margin and handling complex penetration testing scenar…

6 days, 15 hours назад @ github.com
bytedance/deer-flow
bytedance/deer-flow bytedance/deer-flow

🦌 DeerFlow - 2.0DeerFlow (Deep Exploration and Efficient Research Flow) is an open-source super agent harness that orchestrates sub-agents, memory, and sandboxes to do almost anything — powered by extensible skills.

If you're looking for the original Deep Research framework, it's maintained on the 1.x branch — contributions there are still welcome.

From Deep Research to Super Agent HarnessDeerFlow started as a Deep Research framework — and the community ran with it.

The lead agent can spawn sub-agents on the fly — each with its own scoped context, tools, and termination conditions.

Regression coverage includes Docker sandbox mode detection and provisioner kubeconfig-path handling tests in b…

6 days, 15 hours назад @ github.com
clockworklabs/SpacetimeDB
clockworklabs/SpacetimeDB clockworklabs/SpacetimeDB

Development at the speed of light.

InstallationYou can run SpacetimeDB as a standalone database server via the spacetime CLI tool.

# Clone SpacetimeDB git clone https: // github.com / clockworklabs / SpacetimeDB # Build and install the CLI cd SpacetimeDB cargo build -- locked -- release - p spacetimedb - standalone - p spacetimedb - update - p spacetimedb - cli # Create directories $stdbDir = " $HOME \AppData\Local\SpacetimeDB " $stdbVersion = & " .\target\release\spacetimedb-cli " -- version | Select-String - Pattern ' spacetimedb tool version ([0-9.

# %USERPROFILE%\AppData\Local\SpacetimeDB # Set the current version spacetime version use $STDB_VERSIONYou can verify that the correct versio…

1 week назад @ github.com
Технологии
Reddit: /r/technology/ Reddit: /r/technology/
последний пост 2 часа назад
Netflix, After Walking Away From Warner Bros. Deal, Will "Move Forward" With "$2.8 Billion in Our Pocket That We Didn’t Have a Few Weeks Ago," CFO Spence Neumann Says
Netflix, After Walking Away From Warner Bros. Deal, Will "Move Forward" With "$2.8 Billion in Our Pocket That We Didn’t Have a Few Weeks Ago," CFO Spence Neumann Says Netflix, After Walking Away From Warner Bros. Deal, Will "Move Forward" With "$2.8 Billion in Our Pocket That We Didn’t Have a Few Weeks Ago," CFO Spence Neumann Says

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

2 часа назад @ reddit.com
Pentagon follows through with its threat, labels Anthropic a supply chain risk ‘effective immediately’
Pentagon follows through with its threat, labels Anthropic a supply chain risk ‘effective immediately’

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

2 часа назад @ reddit.com
When Using AI Leads to “Brain Fry” | "Participants in a recent study described a 'buzzing' feeling or a mental fog with difficulty focusing, slower decision-making, and headaches"
When Using AI Leads to “Brain Fry” | "Participants in a recent study described a 'buzzing' feeling or a mental fog with difficulty focusing, slower decision-making, and headaches"

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

3 часа назад @ reddit.com
The War on Iran Puts Global Chip Supplies and AI Expansion at Risk | From helium extraction in Qatar to shipping lanes in the Strait of Hormuz, the semiconductor industry depends on fragile links across the Gulf. Escalation could ripple through global chip
The War on Iran Puts Global Chip Supplies and AI Expansion at Risk | From helium extraction in Qatar to shipping lanes in the Strait of Hormuz, the semiconductor industry depends on fragile links across the Gulf. Escalation could ripple through global chip The War on Iran Puts Global Chip Supplies and AI Expansion at Risk | From helium extraction in Qatar to shipping lanes in the Strait of Hormuz, the semiconductor industry depends on fragile links across the Gulf. Escalation could ripple through global chip

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

3 часа назад @ reddit.com
India's tech state Karnataka bans social media for children under 16
India's tech state Karnataka bans social media for children under 16 India's tech state Karnataka bans social media for children under 16

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

4 часа назад @ reddit.com
UK government delays AI copyright rules amid artist outcry
UK government delays AI copyright rules amid artist outcry UK government delays AI copyright rules amid artist outcry

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

4 часа назад @ reddit.com
Indonesia to restrict social media access for children under 16, minister says
Indonesia to restrict social media access for children under 16, minister says Indonesia to restrict social media access for children under 16, minister says

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

5 часов назад @ reddit.com
Google makes Gmail, Drive, and Docs ‘agent-ready’ for OpenClaw
Google makes Gmail, Drive, and Docs ‘agent-ready’ for OpenClaw Google makes Gmail, Drive, and Docs ‘agent-ready’ for OpenClaw

submitted by /u/Quantum-Coconut [link] [comments]

5 часов назад @ reddit.com
Indonesia Bans Social Media for Under-16s, Following Australia’s Lead: ‘Parents No Longer Have to Fight Alone Against the Giants of the Algorithm’
Indonesia Bans Social Media for Under-16s, Following Australia’s Lead: ‘Parents No Longer Have to Fight Alone Against the Giants of the Algorithm’ Indonesia Bans Social Media for Under-16s, Following Australia’s Lead: ‘Parents No Longer Have to Fight Alone Against the Giants of the Algorithm’

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

7 часов назад @ reddit.com
Sam Altman admits OpenAI can’t control Pentagon’s use of AI | Technology
Sam Altman admits OpenAI can’t control Pentagon’s use of AI | Technology Sam Altman admits OpenAI can’t control Pentagon’s use of AI | Technology

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

7 часов назад @ reddit.com
China's most senior semiconductor executives issued a public call this week for a consolidated national effort to build a domestic alternative to Dutch lithography giant ASML, warning that the country's chip equipment industry remains too "small, fragmente
China's most senior semiconductor executives issued a public call this week for a consolidated national effort to build a domestic alternative to Dutch lithography giant ASML, warning that the country's chip equipment industry remains too "small, fragmente China's most senior semiconductor executives issued a public call this week for a consolidated national effort to build a domestic alternative to Dutch lithography giant ASML, warning that the country's chip equipment industry remains too "small, fragmente

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

11 часов назад @ reddit.com
The future is looking more Dystopian
The future is looking more Dystopian

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

11 часов назад @ reddit.com
Okta CEO ‘paranoid’ as vibe coders stir SaaS-pocalypse fears
Okta CEO ‘paranoid’ as vibe coders stir SaaS-pocalypse fears Okta CEO ‘paranoid’ as vibe coders stir SaaS-pocalypse fears

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

12 часов назад @ reddit.com
Porn websites begin blocking Australian users as deadline for age verification compliance looms
Porn websites begin blocking Australian users as deadline for age verification compliance looms Porn websites begin blocking Australian users as deadline for age verification compliance looms

submitted by /u/Expensive-Horse5538 [link] [comments]

13 часов назад @ reddit.com
Netflix just bought an AI startup founded by Ben Affleck
Netflix just bought an AI startup founded by Ben Affleck Netflix just bought an AI startup founded by Ben Affleck

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

14 часов назад @ reddit.com
Pinboard: Popular Pinboard: Popular
последний пост 11 часов назад
Say hello to MacBook Neo - Apple
Say hello to MacBook Neo - Apple Say hello to MacBook Neo - Apple

With its soft, rounded corners, MacBook Neo looks elegant while feeling solid and comfortable to hold.

These colors extend to the Magic Keyboard in lighter shades and new wallpapers, creating a cohesive design aesthetic and making MacBook Neo the most colorful MacBook yet.

1080p Camera; Dual Speakers and MicsThe 1080p FaceTime HD camera on MacBook Neo has optimized image processing to deliver vibrant video calls.

MacBook Neo is manufactured with 45 percent renewable electricity, like wind and solar, across the supply chain.

MacBook Neo features two USB-C ports — USB 3 (left) and USB 2 (right).

11 часов назад @ apple.com
Qwen3.5 Fine-tuning Guide | Unsloth Documentation
Qwen3.5 Fine-tuning Guide | Unsloth Documentation Qwen3.5 Fine-tuning Guide | Unsloth Documentation

Learn how to fine-tune Qwen3.5 LLMs with Unsloth.

Qwen3.5 is powerful for multilingual fine-tuning as it supports 201 languages.

LoRA or full fine-tuning) (MoE QLoRA 4‑bit is not recommended due to BitsandBytes limitations).

Use the below Qwen3.5 notebooks and change the respective model names to your desired Qwen3.5 model.

Disabling Vision / Text-only fine-tuning:To fine-tune vision models, we now allow you to select which parts of the mode to finetune.

11 часов назад @ unsloth.ai
Lenovo’s New T-Series ThinkPads Score 10/10 for Repairability - iFixit
Lenovo’s New T-Series ThinkPads Score 10/10 for Repairability - iFixit Lenovo’s New T-Series ThinkPads Score 10/10 for Repairability - iFixit

There are “repairable” laptops, and then there are ThinkPad T-series laptops: the ones corporate IT buys by the pallet, images by the thousands, and expects to survive years of all-day use.

Easy access to the battery and a modular cooling system help round out the new T-Series repairability scores.

10/10 is Not the End10/10 is the highest repairability score we award, and the new T-series earns it.

The new T-Series perfect 10/10 score is a direct reflection of that trust and shared commitment.”Why the T-series Matters So MuchIf you want repairability to go mainstream, it has to show up where the volume is.

Instead, Lenovo just threw down a gauntlet by notching a 10/10 repairability score on…

11 часов назад @ ifixit.com
Defuddle — Get the main content of any page as Markdown.
Defuddle — Get the main content of any page as Markdown. 11 часов назад @ defuddle.md
Glaze by Raycast. Desktop apps, reimagined by you.
Glaze by Raycast. Desktop apps, reimagined by you. Glaze by Raycast. Desktop apps, reimagined by you.

Glaze is in private beta.

Join the waitlist and we ’ ll let you in as soon as we can.

Existing Raycast users will get priority access.

We ’ re also hosting in-person events, and those who attend will get early access.

Keep an eye on our Luma page.

11 часов назад @ glazeapp.com
Mailbag: URLs as UI – Unsung
Mailbag: URLs as UI – Unsung Mailbag: URLs as UI – Unsung

My post about Flickr URLs gathered some interesting responses (especially on Mastodon, thank you all!

Chris Silverman:The idea of URLs as user interface elements is such a good take.

I’ve seen some people use URLs as design/​communications elements as well, like Jessica Hische: www.jessicahische.is/thinkingthoughtswww.jessicahische.is/workingjessicahische.is/anoversharer I love that approach.

Modern browsers and preview cards often obscure URLs, but people still see these things; printed materials, links in emails, etc.

Matt Goldman:I really like letterboxd’s urls these days: all the films in my diary in 2024?

11 часов назад @ unsung.aresluna.org
Making Firefox's right-click not suck with about:config
Making Firefox's right-click not suck with about:config Making Firefox's right-click not suck with about:config

Why am I shown “Copy Clean Link” if there is no clean link (or the link is already clean)?

Why can’t I make it so it always defaults to the “clean link” no matter what (and get rid of “Copy Link” completely, instead)?

privacy.query_stripping.strip_on_share.enabled – Removes the “Copy Clean Link” / “Copy Link Without Site Tracking” buttons.

– Removes the “Copy Clean Link” / “Copy Link Without Site Tracking” buttons.

browser.ml.linkPreview.enabled – Disables Link Previews (and the AI-generated key points inside them), removing “Preview Link” button.

11 часов назад @ joshua.hu
xkcd dependency
xkcd dependency xkcd dependency 11 часов назад @ editor.p5js.org
AIエージェント用にCLIを書き直す必要がある
AIエージェント用にCLIを書き直す必要がある AIエージェント用にCLIを書き直す必要がある

These are different enough that retrofitting a human-first CLI for agents is a losing bet.

An --output json flag, an OUTPUT_FORMAT=json environment variable, or NDJSON-by-default when stdout isn’t a TTY lets existing CLIs serve agents without a rewrite of the human-facing UX.

If you’re retrofitting an existing CLI, here’s a practical order of operations:Add --output json — machine-readable output is table stakes.

Add a schema or --describe command — let agents introspect what your CLI accepts at runtime.

Any CLI that agents invoke needs machine-readable output, input hardening, and explicit documentation of invariants.

11 часов назад @ justin.poehnelt.com
My perfect Music app doesn’t exist - Hicks.design
My perfect Music app doesn’t exist - Hicks.design My perfect Music app doesn’t exist - Hicks.design

A long dive into the features that make my ideal music app, and why nothing currently fulfils the brief.

An Apple Music subscription also lets you sync your own music across devices, so it can potentially replace Plex in my equation.

This is because of that switch between 'Apple Music' (the streaming service) and 'Library' (your saved albums, be they Apple Music or your own digital files).

Wow, that's quite a bit of negativity for what is my default music app at the moment!

They're usually a small cost on top of the Apple Music subscription, but provide extra features, or even complete retakes on how a music app should work.

11 часов назад @ hicks.design
The View From RSS
The View From RSS The View From RSS

I consume almost everything through an RSS reader.

From my predecessor, I inherited a bundle of over a thousand RSS feeds that he used to put each edition together.

When you read via RSS, you see all of the SEO articles that the casual web reader never sees but which drive search traffic towards the site.

I see all of those, just by being an RSS reader.

My favourite thing of all, though, is when people have fun with the differing perspective that RSS gives you on the web.

11 часов назад @ carolinecrampton.com
Building Blocks for DC Energy Systems - Libre Solar
Building Blocks for DC Energy Systems - Libre Solar Building Blocks for DC Energy Systems - Libre Solar

Open EducationThe new Open Educational Resource (OER) explains how to develop, produce and use components in DC energy systems

11 часов назад @ libre.solar
Over 55.000 car brochures from brands around the world
Over 55.000 car brochures from brands around the world 11 часов назад @ autocatalogarchive.com
Apple introduces the new MacBook Air with M5 - Apple
Apple introduces the new MacBook Air with M5 - Apple Apple introduces the new MacBook Air with M5 - Apple

“With M5, MacBook Air powers through a wide range of tasks, from everyday productivity to creative workloads, and is even faster for AI.

MacBook Air is designed to be durable and repairable, while meeting Apple’s high standards for energy efficiency and safer chemistry.

The 13-inch MacBook Air with M5 starts at $1,099 (U.S.), and $999 (U.S.) for education, and the 15-inch MacBook Air with M5 starts at $1,299 (U.S.) and $1,199 (U.S.) for education.

Results are compared to MacBook Air with Apple M1, 8-core CPU, 8-core GPU, 16GB of unified memory, and a 2TB SSD.

Results are compared to MacBook Air systems with Apple M4, 10-core CPU, 10-core GPU, 32GB of unified memory, and a 2TB SSD.

11 часов назад @ apple.com
Gram
Gram

GRAMA code editor for humanoid apes and grumpy toads”What cannot be mended must be transcended.”– Ursula K. Le GuinGram is a fork of the Zed code editor.

It features solid performance and is highly configurable, yet comes with batteries included out of the box.

Gram supports many popular languages, and can use Zed extensions to support additional languages.

Other features include built-in documentation, debugger support via the DAP protocol, source control using git and more.

1 day, 11 hours назад @ gram.liten.app
Changelog Changelog
последний пост 3 days, 20 hours назад
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 days, 20 hours назад @ 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.

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

1 week, 3 days назад @ changelog.com
Selling SDKs in the era of many Claudes
Selling SDKs in the era of many Claudes Selling SDKs in the era of many Claudes

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

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

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

Changelog News!

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

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

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

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

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

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

Push-button deployments that scale to thousands of instances.

Check out the speedrun to get started in minutes.

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

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

3 weeks, 3 days назад @ changelog.com
It's a renaissance woman's world
It's a renaissance woman's world It's a renaissance woman's world

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

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

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

At an unbeatable price.

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

4 weeks, 1 day назад @ 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 назад @ 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 назад @ 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 назад @ changelog.com
Clawdbot triggers a run on Mac Minis
Clawdbot triggers a run on Mac Minis Clawdbot triggers a run on Mac Minis

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
The state of homelab tech (2026)
The state of homelab tech (2026) The state of homelab tech (2026)

It’s like, I don’t know if you’re a golfer, Tim, but that’s what golf folks say as well.

And golf tech, like any tech, is just limitless really what they can fine tune and dial in.

I’m being facetious, but you know, golf rounds aren’t cheap, golf trips with friends aren’t cheap, golf clubs are not cheap.

And so that today is my TrueNAS box.

I kind of want my TrueNAS box to do everything.

1 month, 1 week назад @ changelog.com
ZDNet ZDNet
последний пост 1 час назад
Can Meta see your private life through its Ray-Ban smart glasses? What to know
Can Meta see your private life through its Ray-Ban smart glasses? What to know Can Meta see your private life through its Ray-Ban smart glasses? What to know

Many Meta Ray-Ban users wear their smart glasses everywhere.

Human reviewers watch Meta Smart Glasses videos and label the objects in them.

Like the defunct Google Glass, Meta Ray-Ban smart glasses are notorious for their privacy red flags.

Unlike Google, Meta sold seven million units of its Ray-Ban smart glasses just last year, double the amount of the year before.

According to Meta's terms of service, the company reserves the right to share user data from Meta AI and wearable devices, such as the Meta Ray-Ban smart glasses, with moderators for review.

1 час назад @ zdnet.com
How the MacBook Neo compares to its closest Windows and Chromebook rivals - by the specs
How the MacBook Neo compares to its closest Windows and Chromebook rivals - by the specs How the MacBook Neo compares to its closest Windows and Chromebook rivals - by the specs

Weight and display size: The MacBook Neo weighs about 2.7 pounds and has a 13-inch display, making it highly portable.

For comparison, a 16-inch MacBook Pro with an M5 Pro or M5 Max chip weighs about 4.7 pounds.

The MacBook Neo weighs about 2.7 pounds and has a 13-inch display, making it highly portable.

Camera and audio: The MacBook Neo includes a 1080p FaceTime HD camera, dual microphones, and Spatial Audio speakers.

The MacBook Neo includes a 1080p FaceTime HD camera, dual microphones, and Spatial Audio speakers.

2 часа назад @ zdnet.com
Sick of Microsoft and Google? This new European office suite is a private, open-source alternative
Sick of Microsoft and Google? This new European office suite is a private, open-source alternative Sick of Microsoft and Google? This new European office suite is a private, open-source alternative

It aims to rival Microsoft 365 and Google Workspace.

This new cloud service is positioning itself as a fully European, open‑source‑based alternative to Microsoft 365 and Google Workspace.

The service deliberately mimics the look and feel of Microsoft 365 and Google Workspace to ease migration.

For documents, Office EU supports common Microsoft Office formats such as DOCX, XLSX, and PPTX.

Office.eu's pricing is set roughly in line with existing Microsoft 365 and Google Workspace subscriptions.

3 часа назад @ zdnet.com
We surveyed remote workers for their favorite tech gadgets - these 8 top the list
We surveyed remote workers for their favorite tech gadgets - these 8 top the list

My ZDNET coworkers shared their top recommendations for work-from-home gear to boost productivity and comfort.

5 часов назад @ zdnet.com
How I used CloneZilla to fully back up my PC in case disaster strikes (and it's free)
How I used CloneZilla to fully back up my PC in case disaster strikes (and it's free) How I used CloneZilla to fully back up my PC in case disaster strikes (and it's free)

ZDNET's key takeawaysA system image can save you from disaster.

Creating a backup image with Clonezilla1.

Start Clonezilla At the first screen of the Clonezilla wizard, make sure Start Clonezilla is highlighted and hit Enter on your keyboard.

Since we're using an external drive, select local_dev.

Select the drive In the next window, select the external drive that will house your image and hit Enter.

7 часов назад @ zdnet.com
Scaling agentic AI means trusting your data - here's what most CDOs are investing in
Scaling agentic AI means trusting your data - here's what most CDOs are investing in Scaling agentic AI means trusting your data - here's what most CDOs are investing in

Although AI adoption is increasing, the report found that data and AI literacy are a concern.

Of the CDOs surveyed, 75% believe their workforce needs upskilling in data literacy, and 74% in AI literacy to responsibly use AI or AI outputs in day-to-day operations.

The greater need for investments in data quality and management includes improving data privacy and security (43%), improving data and AI governance (41%), and improving data and AI literacy (39%).

The top challenges for adoption of agentic AI are data quality (50%), security concerns (43%), and lack of agentic AI expertise (42%).

Data leaders (41%) will increase their investments in data management in 2026, improving data and AI g…

15 часов назад @ zdnet.com
Wiim Sound review: This smart speaker is so close to fully replacing my Sonos
Wiim Sound review: This smart speaker is so close to fully replacing my Sonos

One of the buzzier smart speakers lately is from a brand you might be unfamiliar with.

16 часов назад @ zdnet.com
Own a Sony TV? Changing these 3 settings will greatly improve its picture quality
Own a Sony TV? Changing these 3 settings will greatly improve its picture quality

Sony's various Bravia TVs deliver cinema-quality picture and sound. With a few easy tweaks, you can push them even further.

16 часов назад @ zdnet.com
Is Amazon down? Why customers can't check out or add to cart - and Amazon's response
Is Amazon down? Why customers can't check out or add to cart - and Amazon's response Is Amazon down? Why customers can't check out or add to cart - and Amazon's response

If you're having trouble viewing an Amazon product's price or using the Amazon app, you're not the only one.

Downdetector's map shows the partial outage impacting major US cities, including New York, Chicago, Atlanta, Houston, San Francisco, and Seattle.

The actual number of those impacted by this partial outage may vary.

"We're sorry that some customers may be experiencing issues while shopping.

What caused the partial outage is still unclear.

19 часов назад @ zdnet.com
Beats Studio Pro headphones are over 40% off right now - and I can vouch for them
Beats Studio Pro headphones are over 40% off right now - and I can vouch for them Beats Studio Pro headphones are over 40% off right now - and I can vouch for them

Beats Studio Pro ZDNET's key takeaways The Beats Studio Pro are currently on sale for $200A beautiful design, compatibility with iOS and Android devices, and a lengthy battery life solidify these headphones' place in the premium categoryThese headphones have a neutral sound (to Beats' standards), so if you liked the company's heavy bass , you won't get it.

Since the release of the Beats Studio 3 in 2017, a lot has changed with the Beats Studio lineup's design.

Usually, the Beats Studio Pro retail for $350, placing them on the higher end of the headphones price range.

Also: The best AirPods: Expert tested and reviewedWith the feature turned on or not, the Studio Pro sounds very good.

ZDNET's…

19 часов назад @ zdnet.com
Get Disney+ and Hulu bundled for just $5 a month right now - here's how
Get Disney+ and Hulu bundled for just $5 a month right now - here's how

The price on a Hulu and Disney+ bundled just dropped from $13 to $5 a month for the first three months - the best price we've seen this year.

19 часов назад @ zdnet.com
Samsung Galaxy Book 6 Pro review: Why I'd buy this instead of the Ultra model
Samsung Galaxy Book 6 Pro review: Why I'd buy this instead of the Ultra model Samsung Galaxy Book 6 Pro review: Why I'd buy this instead of the Ultra model

Samsung Galaxy Book 6 Pro ZDNET's key takeaways Samsung's Galaxy Book 6 Pro launches March 11 with a starting price of $1,600.

I'll be brutally honest: I didn't expect to be super impressed by the Samsung's Galaxy Book 6 Pro.

On paper, it's essentially a toned-down version of the Galaxy Book 6 Ultra, a slightly more powerful laptop I reviewed earlier this year.

The Galaxy Book 6 Pro is a highly capable machine in its own right.

ZDNET's buying adviceSamsung's Galaxy Book 6 Pro launches on March 11 and will come in a 14-inch and 16-inch model.

20 часов назад @ zdnet.com
MacBook Neo vs. MacBook Air: Which is the better choice for you?
MacBook Neo vs. MacBook Air: Which is the better choice for you? MacBook Neo vs. MacBook Air: Which is the better choice for you?

In the past, that would have been a simple decision, as you likely would have opted for a 13-inch MacBook Air.

The Neo comes with Wi-Fi 6E, while the Air comes with Wi-Fi 7.

Also: Everything Apple just announced: The $599 MacBook Neo, M5 Pro, iPhone 17e, and moreThere is one more wrinkle here.

You're looking for a backup or secondary Mac, especially for travelMaybe you already have a larger and beefier MacBook Pro or MacBook Air and are looking for a second MacBook to take on the road.

Also: M5 MacBook Pro vs. M4 MacBook Air: I compared Apple's most popular laptops, and this one wins3.

20 часов назад @ zdnet.com
Your next Oura Ring powered by voice or gesture? What this AI buy means for Oura Ring 5
Your next Oura Ring powered by voice or gesture? What this AI buy means for Oura Ring 5 Your next Oura Ring powered by voice or gesture? What this AI buy means for Oura Ring 5

The next Oura Ring could get voice and gesture recognition.

Oura's latest acquisition suggests the smart ring company could add gestures and voice control to an upcoming wearable.

Is Oura implying that voice activation could be coming to its next smart ring?

The use cases for voice activation on a smart ring are plentiful, including symptom and mood logging, diet tracking, and chatbot initiation.

In fact, other smart ring brands, like Luna, are adding voice activation to their product offerings, though the voice activation is initiated by Siri through earbuds or a phone's microphone -- not the ring itself.

21 час назад @ zdnet.com
My new favorite headphones for work look like nothing I've worn before
My new favorite headphones for work look like nothing I've worn before My new favorite headphones for work look like nothing I've worn before

If you're the London-based Nothing, you'll give your headphones great battery life, add some smart quality-of-life improvements, and a distinct visual style.

Also: Forget iPhone 17e: Nothing's Phone 4a Pro costs less and looks a whole lot betterBut most importantly, you price them at $200 -- significantly less than competitors.

I'm talking about Nothing's Headphone (a), the brand's latest over-ear pair.

Nothing nailed the audio quality in its previous headphones, as I've written while testing its open-ear Nothing Open and the Nothing Ear (a).

They cost $199, for crying out loud, and offer many of the same features that far more expensive, established headphone brands boast.

21 час назад @ zdnet.com
TechCrunch TechCrunch
последний пост 1 час назад
These are the countries moving to ban social media for children
These are the countries moving to ban social media for children

Australia was the first country to issue a ban in late 2025, aiming to reduce the pressures and risks that young users may face on social media, including cyberbullying, social media addiction, and exposure to predators.

1 час назад @ techcrunch.com
TriZetto confirms 3.4M people’s health and personal data was stolen during breach
TriZetto confirms 3.4M people’s health and personal data was stolen during breach

Health tech giant TriZetto has confirmed that more than 3.4 million people had personal and health information stolen in a 2024 cyberattack, which the company failed to detect for almost a year.

3 часа назад @ techcrunch.com
Indonesia outlines plan to limit under-16s’ access to social media
Indonesia outlines plan to limit under-16s’ access to social media

Indonesian has outlined new regulations that would restrict users under 16 from accessing digital platforms.

3 часа назад @ techcrunch.com
City Detect, which uses AI to help cities stay safe and clean, raises $13M Series A
City Detect, which uses AI to help cities stay safe and clean, raises $13M Series A

City Detect, a company that helps local governments prevent urban decay, is in at least 17 cities so far, including Dallas and Miami.

3 часа назад @ techcrunch.com
Quantum scale-up Pasqal plans $2B SPAC listing, promises to ‘remain French’
Quantum scale-up Pasqal plans $2B SPAC listing, promises to ‘remain French’

A SPAC deal that is set to take French quantum company Pasqal public on the Nasdaq values the company at $2 billion pre-money.

3 часа назад @ techcrunch.com
India’s Karnataka signals intent to ban social media for under-16s
India’s Karnataka signals intent to ban social media for under-16s

Karnataka's proposal highlights a growing global debate over children’s rights and online policy.

3 часа назад @ techcrunch.com
After Europe, WhatsApp will let rival AI companies offer chatbots in Brazil
After Europe, WhatsApp will let rival AI companies offer chatbots in Brazil

Meta is now allowing rival AI companies to provide their chatbots on WhatsApp to Brazilian users for a fee, a day after the company confirmed a similar decision for users in Europe.

4 часа назад @ techcrunch.com
Anthropic to challenge DOD’s supply chain label in court
Anthropic to challenge DOD’s supply chain label in court

Anthropic CEO Dario Amodei said he plans to challenge the Department of Defense's designation of the AI firm as a supply chain risk. He claims most Anthropic customers are unaffected by the label.

16 часов назад @ techcrunch.com
DiligenceSquared uses AI, voice agents to make M&A research affordable
DiligenceSquared uses AI, voice agents to make M&A research affordable

Instead of relying on expensive management consultants, the startup uses AI voice agents to conduct interviews with customers of the companies the PE firms are considering buying.

18 часов назад @ techcrunch.com
Cluely CEO Roy Lee admits to publicly lying about revenue numbers last year
Cluely CEO Roy Lee admits to publicly lying about revenue numbers last year

The $7 million in annual recurring revenue that Cluely CEO Roy Lee shared last summer was a lie, its founder and CEO Roy Lee admitted on Thursday on X.

18 часов назад @ techcrunch.com
AWS launches a new AI agent platform specifically for health care
AWS launches a new AI agent platform specifically for health care

AWS is launching Amazon Connect Health, an AI agent platform that will help with patient scheduling, documentation and patient verification.

19 часов назад @ techcrunch.com
FBI investigating hack on its wiretap and surveillance systems: report
FBI investigating hack on its wiretap and surveillance systems: report

Hackers allegedly broke into the FBI’s networks, according to a report by CNN.

20 часов назад @ techcrunch.com
US reportedly considering sweeping new chip export controls
US reportedly considering sweeping new chip export controls

In an alleged drafted proposal, the U.S. government would play a role in every chip export sale regardless of which country it's coming from.

20 часов назад @ techcrunch.com
Amazon is rolling out a redesigned Fire TV app
Amazon is rolling out a redesigned Fire TV app

With the updated Fire TV app, users can browse and discover content directly from their phone, manage their watchlist on the go, and play titles on their TV from the mobile app.

20 часов назад @ techcrunch.com
BYD rolls out EV batteries with 5-minute ‘flash charging.’ But there’s a catch.
BYD rolls out EV batteries with 5-minute ‘flash charging.’ But there’s a catch.

The Chinese automaker's new Blade Battery 2.0 is capable of charging at up to 1.5 megawatts, dramatically slashing the time it takes to fill up.

21 час назад @ techcrunch.com
Slashdot Slashdot
последний пост 1 час назад
AI Startup Sues Ex-CEO Saying He Took 41GB of Email, Lied On Resume
AI Startup Sues Ex-CEO Saying He Took 41GB of Email, Lied On Resume AI Startup Sues Ex-CEO Saying He Took 41GB of Email, Lied On Resume

An anonymous reader quotes a report from Ars Technica: Hayden AI, a San Francisco startup that makes spatial analytics tools for cities worldwide, has sued its co-founder and former CEO, alleging that he stole a large quantity of proprietary information in the days leading up to his ouster from the company in September 2024. In a lawsuit filed late last month in San Francisco Superior Court but only made public this week, Hayden AI claims that former CEO Chris Carson undertook what it called "numerous fraudulent actions," which include "forged board signatures, unauthorized stock sales, and improper allocation of personal expenses." [...] Hayden AI, which is worth $464 million according to …

1 час назад @ yro.slashdot.org
The National Videogame Museum Acquires the Mythical Nintendo Playstation
The National Videogame Museum Acquires the Mythical Nintendo Playstation The National Videogame Museum Acquires the Mythical Nintendo Playstation

The National Videogame Museum has acquired an extremely rare MSF-1 development kit, believed to be the oldest surviving prototype of the canceled Nintendo PlayStation. Engadget reports: Nicknamed the Nintendo PlayStation, the idea was that a new CD-ROM format backed by Sony would be added to the cartridge-based Super NES, resulting in a hybrid console that could play both. The partnership didn't last long, though, with Nintendo backing out before it ever really got off the ground, announcing that it would instead be working with Philips. Sony decided to make the PlayStation on its own instead, in an act of revenge that you have to say paid off in the long run, and we never did get to see Cr…

2 часа назад @ games.slashdot.org
Florida Woman Gets Prison Time For Illegally Selling Microsoft Product Keys
Florida Woman Gets Prison Time For Illegally Selling Microsoft Product Keys Florida Woman Gets Prison Time For Illegally Selling Microsoft Product Keys

A Florida woman was sentenced to 22 months in federal prison and fined $50,000 for illegally trafficking thousands of Microsoft certificate-of-authenticity labels used to activate Windows and Office. Prosecutors said she bought genuine labels cheaply from suppliers and resold them without the accompanying licensed software, wiring over $5 million during the scheme. TechRadar reports: The indictment details how [52-year-old Heidi Richards] purchased tens of thousands of genuine COA labels from a Texas-based supplier between 2018 and 2023 for well below the retail value, before reselling them in bulk to customers globally without the licensed software. "COA labels are not to be sold separatel…

3 часа назад @ yro.slashdot.org
AI Translations Are Adding 'Hallucinations' To Wikipedia Articles
AI Translations Are Adding 'Hallucinations' To Wikipedia Articles AI Translations Are Adding 'Hallucinations' To Wikipedia Articles

An anonymous reader quotes a report from 404 Media: Wikipedia editors have implemented new policies and restricted a number of contributors who were paid to use AI to translate existing Wikipedia articles into other languages after they discovered these AI translations added AI "hallucinations," or errors, to the resulting article. The new restrictions show how Wikipedia editors continue to fight the flood of generative AI across the internet from diminishing the reliability of the world's largest repository of knowledge. The incident also reveals how even well-intentioned efforts to expand Wikipedia are prone to errors when they rely on generative AI, and how they're remedied by Wikipedia'…

4 часа назад @ news.slashdot.org
IBM Scientists Unveil First-Ever 'Half-Mobius' Molecule
IBM Scientists Unveil First-Ever 'Half-Mobius' Molecule IBM Scientists Unveil First-Ever 'Half-Mobius' Molecule

BrianFagioli shares a report from NERDS.xyz: An international team of scientists has done something chemistry has never seen before. IBM, working alongside researchers from the University of Manchester, Oxford University, ETH Zurich, EPFL, and the University of Regensburg, has created and characterized a molecule whose electrons travel through its structure in a corkscrew-like pattern, fundamentally altering its chemical behavior. The findings were published today in Science. The molecule, known as C13Cl2, is the first experimental observation of what scientists call a half-Mobius electronic topology in a single molecule. To the researchers' knowledge, nothing like it has ever been synthesi…

7 часов назад @ science.slashdot.org
Congress Extends ISS, Tells NASA To Get Moving On Private Space Stations
Congress Extends ISS, Tells NASA To Get Moving On Private Space Stations Congress Extends ISS, Tells NASA To Get Moving On Private Space Stations

A recently-revised Senate authorization bill (PDF), co-sponsored by Senate Commerce Committee Chair Ted Cruz, would extend the International Space Station's lifespan from 2030 to 2032 while pushing NASA to accelerate plans for commercial space stations to replace it. Ars Technica's Eric Berger reports: Regarding NASA's support for the development of commercial space stations, the bill mandates the following, within specified periods, of passage of the law: - Within 60 days, publicly release the requirements for commercial space stations in low-Earth orbit - Within 90 days, release the final "request for proposals" to solicit industry responses - Within 180 days, enter into contracts with "t…

10 часов назад @ science.slashdot.org
Microsoft Confirms 'Project Helix,' a Next-Gen Xbox That Can Run PC Games
Microsoft Confirms 'Project Helix,' a Next-Gen Xbox That Can Run PC Games Microsoft Confirms 'Project Helix,' a Next-Gen Xbox That Can Run PC Games

An anonymous reader quotes a report from 80 Level: Microsoft has officially confirmed development of its next-generation Xbox console, currently known internally as Project Helix. While concrete details remain limited, early information suggests the company is positioning the device as a hybrid between a traditional console and a gaming PC, capable of running both Xbox titles and PC games. The codename was revealed recently by new Xbox CEO Asha Sharma, who reaffirmed Microsoft's continued commitment to dedicated gaming hardware despite speculation that the company might shift entirely toward cloud or platform-based ecosystems. According to Sharma, Project Helix represents the next step in X…

14 часов назад @ hardware.slashdot.org
Pentagon Formally Designates Anthropic a Supply-Chain Risk
Pentagon Formally Designates Anthropic a Supply-Chain Risk Pentagon Formally Designates Anthropic a Supply-Chain Risk

The Pentagon has formally designated Anthropic as a "supply chain risk," ordering federal agencies and defense contractors to stop using its AI tools after the company sought limits on the military's use of its models. In a written statement, the department said it has "officially informed Anthropic leadership the company and its products are deemed a supply chain risk, effective immediately." Politico reports: The designation, historically reserved for foreign firms with ties to U.S. adversaries, will likely require companies that do business with the U.S. military -- or even the federal government in general -- to cut ties with Anthropic. "From the very beginning, this has been about one …

16 часов назад @ slashdot.org
Mac Studio 512GB RAM Option Disappears Amid Global DRAM Shortage
Mac Studio 512GB RAM Option Disappears Amid Global DRAM Shortage Mac Studio 512GB RAM Option Disappears Amid Global DRAM Shortage

Apple has removed the 512GB RAM configuration for the Mac Studio, leaving 256GB as the new maximum. The remaining 256GB upgrade has also increased in price and now faces longer shipping delays as demand grows "due to consumers seeking machines suitable for running local AI agents," reports MacRumors. From the report: The Mac Studio starts with 36GB RAM, but there were upgrades ranging from 48GB to 512GB, with the higher tier upgrades limited to the M3 Ultra chip. Now there are options ranging from 48GB to 256GB, with wait times into May for the 256GB upgrade. Apple has also raised the price for the 256GB RAM upgrade option. It used to cost $1,600 to go from 96GB to 256GB on the high-end M3 …

18 часов назад @ hardware.slashdot.org
United Airlines Can Now Boot Passengers Who Refuse To Use Headphones
United Airlines Can Now Boot Passengers Who Refuse To Use Headphones United Airlines Can Now Boot Passengers Who Refuse To Use Headphones

United Airlines has updated its contract of carriage to require passengers to use headphones when playing audio or video on personal devices during flights. Travelers who refuse could be removed from the plane or even permanently banned from flying with the airline, reports CBS News. United notes that it will offer customers who forget theirs a free pair of wired earbuds. "Don't worry if you forget your headphones for your flight," the airline states on its website. "If they're available, you can request free earbuds." You'd better hope your device still has a headphone jack... Further reading: Flying Was Already the Worst. Then America Stopped Using Headphones. Read more of this story at S…

19 часов назад @ tech.slashdot.org
Trump's TikTok Deal Benefited Firms That 'Personally Enriched' Him, Lawsuit Says
Trump's TikTok Deal Benefited Firms That 'Personally Enriched' Him, Lawsuit Says Trump's TikTok Deal Benefited Firms That 'Personally Enriched' Him, Lawsuit Says

An anti-corruption group has filed a lawsuit (PDF) against Donald Trump and Attorney General Pam Bondi over the deal that transferred TikTok's U.S. operations to a group of investors tied to the administration. The suit claims the arrangement violates a 2024 law requiring ByteDance to divest and alleges the deal financially benefited Trump allies while leaving the platform's algorithm under Chinese ownership. NBC News reports: The suit, filed by the Public Integrity Project, a law firm that seeks to raise the "reputational cost of corruption in America," argues the deal violates a law intended to prevent the spread of Chinese government propaganda and has enriched Trump's allies. That law, …

20 часов назад @ yro.slashdot.org
AMD Will Bring Its 'Ryzen AI' Processors To Standard Desktop PCs For First Time
AMD Will Bring Its 'Ryzen AI' Processors To Standard Desktop PCs For First Time AMD Will Bring Its 'Ryzen AI' Processors To Standard Desktop PCs For First Time

An anonymous reader quotes a report from Ars Technica: AMD has been selling "Ryzen AI"-branded laptop processors for around a year and a half at this point. In addition to including modern CPU and GPU architectures, these are attempting to capitalize on the generative AI craze by offering chips with neural processing units (NPUs) suitable for running language and image-generation models locally, rather than on some company's server. But so far, AMD's desktop chips have lacked both these higher-performance NPUs and the Ryzen AI label. That changes today, at least a little: AMD is announcing its first three Ryzen AI chips for desktops using its AM5 CPU socket. These Ryzen AI 400-series CPUs a…

20 часов назад @ hardware.slashdot.org
OpenAI Releases New ChatGPT Model For Working In Excel and Google Sheets
OpenAI Releases New ChatGPT Model For Working In Excel and Google Sheets OpenAI Releases New ChatGPT Model For Working In Excel and Google Sheets

OpenAI today released GPT-5.4, an upgraded ChatGPT model designed to be faster, cheaper, and more accurate for workplace tasks. The update also introduces tools that let ChatGPT work directly inside Excel and Google Sheets. Axios reports: GPT-5.4 is designed to be less error-prone, more efficient and better at workplace tasks like drafting documents, OpenAI said. The new model can create files in fewer tries with less back-and-forth than prior models, the company said. GPT-5.4 outperformed office workers 83% of the time on GDPval, an OpenAI benchmark measuring performance on real-world tasks across 44 occupations. The model can also solve problems using fewer tokens, OpenAI says -- which ca…

22 часа назад @ slashdot.org
Tim Sweeney Signed Away His Right To Criticize Google Until 2032
Tim Sweeney Signed Away His Right To Criticize Google Until 2032 Tim Sweeney Signed Away His Right To Criticize Google Until 2032

As part of Epic's settlement with Google over the Play Store, Epic CEO Tim Sweeney agreed to stop criticizing Google's app store practices until 2032 and even publicly support the revised policies. The deal also prohibits Epic from pushing for further changes to Google's platform rules. The Verge reports: On March 3rd, he not only signed away Epic's rights to sue and disparage the company, he signed away his right to advocate for any further changes to Google's app store polices. He can't criticize Google's app store practices. In fact, he has to praise them. The contract states that "Epic believes that the Google and Android platform, with the changes in this term sheet, are procompetitive…

23 часа назад @ yro.slashdot.org
Anthropic CEO Dario Amodei Calls OpenAI's Messaging Around Military Deal 'Straight Up Lies'
Anthropic CEO Dario Amodei Calls OpenAI's Messaging Around Military Deal 'Straight Up Lies' Anthropic CEO Dario Amodei Calls OpenAI's Messaging Around Military Deal 'Straight Up Lies'

An anonymous reader quotes a report from TechCrunch: Anthropic co-founder and CEO Dario Amodei is not happy -- perhaps predictably so -- with OpenAI chief Sam Altman. In a memo to staff, reported by The Information, Amodei referred to OpenAI's dealings with the Department of Defense as "safety theater." "The main reason [OpenAI] accepted [the DoD's deal] and we did not is that they cared about placating employees, and we actually cared about preventing abuses," Amodei wrote. Last week, Anthropic and the U.S. Department of Defense (DoD) failed to come to an agreement over the military's request for unrestricted access to the AI company's technology. Anthropic, which already had a $200 millio…

1 day назад @ tech.slashdot.org
Блоги людей
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.

4 days, 6 hours назад @ 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]: …

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

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

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

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

1 week, 6 days назад @ mikeozornin.ru
Thin Is In
Thin Is In

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

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

3 weeks, 4 days назад @ 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 назад @ stratechery.com
Сага о двух туалетах в IT-корпорации
Сага о двух туалетах в IT-корпорации

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

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

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

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

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

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

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

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

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

testing, and linked to pytest docs and a

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

pytest.raises as a context manager, and have

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

site on the host, but produced with

Django running locally. In 2021, it became a

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

the old-fashion…

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

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…

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

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

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

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

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

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

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

2 months, 2 weeks назад @ vas3k.blog
Netflix and the Hollywood End Game
Netflix and the Hollywood End Game

Netflix is driving the Hollywood end game, likely confident it can increase the value of IP, and fend off YouTube.

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

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

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

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

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

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

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

3 months назад @ mikeozornin.ru
Google, Nvidia, and OpenAI
Google, Nvidia, and OpenAI

OpenAI and Nvidia are both under threat from Google; I like OpenAI's chances best, but they need an advertising model to beat Google as an Aggregator.

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

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

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

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

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

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

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

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

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

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

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

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

3 months, 2 weeks назад @ nedbatchelder.com
Autism Adulthood, 3rd edition
Autism Adulthood, 3rd edition Autism Adulthood, 3rd edition

Today is the publication of the third edition of Autism

Adulthood: Insights and Creative Strategies for a Fulfilling Life. It’s my

wife Susan’s book collecting stories and experiences from

people all along the autism spectrum, from the self-diagnosed to the

profound.The book includes dozens of interviews with autistic adults, their parents,

caregivers, researchers, and professionals. Everyone’s experience of autism is

different. Reading others’ stories and perspectives can give us a glimpse into

other possibilities for ourselves and our loved ones.If you have someone in your life on the spectrum, or are on it yourself, I

guarantee you will find new ways to understand the breadth of what aut…

3 months, 2 weeks назад @ nedbatchelder.com
Robotaxis and Suburbia
Robotaxis and Suburbia

Robotaxis are poised to further close the delta between suburbs and the city; the city (and Uber) might never recover.

3 months, 2 weeks назад @ stratechery.com
Why your mock breaks later
Why your mock breaks later

In Why your mock doesn’t work I explained this rule of

mocking:Mock where the object is used, not where it’s

defined.That blog post explained why that rule was important: often a mock doesn’t

work at all if you do it wrong. But in some cases, the mock will work even if

you don’t follow this rule, and then it can break much later. Why?Let’s say you have code like this:# user.py def get_user_settings() -> 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…

3 months, 2 weeks назад @ nedbatchelder.com
Why your mock breaks later
Why your mock breaks later

In Why your mock doesn’t work I explained this rule of

mocking:Mock where the object is used, not where it’s

defined.That blog post explained why that rule was important: often a mock doesn’t

work at all if you do it wrong. But in some cases, the mock will work even if

you don’t follow this rule, and then it can break much later. Why?Let’s say you have code like this:# user.py def get_user_settings(): 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…

3 months, 2 weeks назад @ nedbatchelder.com
Матрица согласований
Матрица согласований

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

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

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

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

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

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

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

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

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

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

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

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

4 months, 2 weeks назад @ 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 назад @ stratechery.com
Sora, AI Bicycles, and Meta Disruption
Sora, AI Bicycles, and Meta Disruption Sora, AI Bicycles, and Meta Disruption

Sora is going viral, suggesting there is a big opportunity in unlocking creativity. If that's true, that's good for humanity — and bad for Meta.

5 months назад @ stratechery.com
Hobby Hilbert Simplex
Hobby Hilbert Simplex Hobby Hilbert Simplex

I saw a generative art piece I liked and wanted to learn how it was made.

Starting with the artist’s Kotlin code, I dug into three new algorithms, hacked

together some Python code, experimented with alternatives, and learned a lot.

Now I can explain it to you.It all started with this post by

aBe on Mastodon:

I love how these lines separate and reunite. And the fact that I can express this idea in 3 or 4 lines of code.For me they’re lives represented by closed paths that end where they started, spending part of the journey together, separating while we go in different directions and maybe reconnecting again in the future.#CreativeCoding #algorithmicart #proceduralArt #OPENRNDR #Kotlin — aBe …

5 months, 1 week назад @ nedbatchelder.com
Инди-разработка
Show HN Show HN
последний пост 46 минут назад
Show HN: NERDs – Entity-centered long-term memory for LLM agents
Show HN: NERDs – Entity-centered long-term memory for LLM agents Show HN: NERDs – Entity-centered long-term memory for LLM agents

Long-running agents struggle to attend to relevant information as context grows, and eventually hit the wall when the context window fills up.

NERDs (Networked Entity Representation Documents) are Wikipedia-style entity pages that LLM agents build for themselves by reading a large corpus chunk-by-chunk. Instead of reprocessing the full text at query time, a downstream agent searches and reasons over these entity documents.

The idea comes from a pattern that keeps showing up: brains, human cognition, knowledge bases, and transformer internals all organize complex information around entities and their relationships. NERDs apply that principle as a preprocessing step for long-context understan…

46 минут назад @ nerdviewer.com
Show HN: Traces: A new way to share and discover agent traces
Show HN: Traces: A new way to share and discover agent traces Show HN: Traces: A new way to share and discover agent traces

Coding agents in multiplayer mode A new way to discover, share and collaborate on agent traces.

Homebrew npm Shell View script brew install market-dot-dev/tap/traces && traces

47 минут назад @ traces.com
Show HN: LoRA gradients on Apple's Neural Engine at 2.8W
Show HN: LoRA gradients on Apple's Neural Engine at 2.8W Show HN: LoRA gradients on Apple's Neural Engine at 2.8W

ANE LoRA Training: Neural Engine Gradient Computation on Apple SiliconFirst public demonstration of LoRA fine-tuning gradients running on Apple's Neural Engine (ANE) via private APIs.

Verified on M4 Mac Mini with Qwen2.5-3B-Instruct-4bit, 16 LoRA modules, converging loss across training steps.

Only conv works for compute on the Neural Engine.

ANE Spatial Dimension ConstraintThe spatial (last) dimension of conv inputs must be >= 16 AND a multiple of 16.

Spatial Works?

59 минут назад @ github.com
Show HN: Claude skill to do your taxes
Show HN: Claude skill to do your taxes Show HN: Claude skill to do your taxes

Tax Filing Skill for Claude CodeThis Skill helps Claude turn a folder of tax documents into a mostly-complete filing workflow: read the source docs, compute the return, fill the forms, and hand back a clear summary of what to review before filing.

Or just ask Claude to use the Skill at github.com/robbalian/claude-tax-filing.

Then point Claude at your tax documents folder and say something like:Do my taxes using this Skill.

They can also include scripts, code snippets, and example files, which makes them much more powerful.

ContributingContributions are welcome via PR.

1 час назад @ github.com
Show HN: Anchor Engine – Deterministic Semantic Memory for LLMs Local (<3GB RAM)
Show HN: Anchor Engine – Deterministic Semantic Memory for LLMs Local (<3GB RAM) Show HN: Anchor Engine – Deterministic Semantic Memory for LLMs Local (<3GB RAM)

Anchor Engine (Node.js)Version: 4.3.2 | Role: Semantic Memory & Search API | Port: 3160 | Status: ✅ Production ReadyPlatform: ✅ ARM64 Windows | ✅ x64 Windows | ✅ Linux | ✅ macOSThe Anchor Engine is a local-first context engine implementing the STAR Algorithm (Semantic Temporal Associative Retrieval) for privacy-first, sovereign knowledge management.

By the time Anchor Engine was operational, I had accumulated 40 chat sessions, ~18M tokens.

Anchor Engine digests all of it in about 5 minutes.

🚀 Quick Start# Install dependencies pnpm install # Build engine (TypeScript + PGlite WASM - no native compilation!)

pnpm build # Start the engine pnpm startAccess UI: http://localhost:3160 (or configured…

1 час назад @ github.com
Show HN: Decidel A Hacker News client for iOS with smart summaries and filtering
Show HN: Decidel A Hacker News client for iOS with smart summaries and filtering Show HN: Decidel A Hacker News client for iOS with smart summaries and filtering

AI-powered thread summariesGet the gist in seconds200+ comment threads?

Get a TL;DR and categorized Key Points extracted from the discussion.

See supporting comments for each point.

Skip the noise, keep the insight.

1 час назад @ decidel.app
Show HN: A document search engine CLI, built for AI Agents.
Show HN: A document search engine CLI, built for AI Agents. Show HN: A document search engine CLI, built for AI Agents.

Linkly AI CLICommand-line interface for Linkly AI — search your local documents from the terminal.

The CLI connects to the Linkly AI desktop app's MCP server, giving you fast access to your indexed documents without leaving the terminal.

PrerequisitesThe Linkly AI desktop app must be running with MCP server enabled.

UsageSearch Documentslinkly search " machine learning " linkly search " API design " --limit 5 linkly search " notes " --type pdf,md,docxOption Description --limit Maximum results (default: 20, max: 50) --type Filter by document types, comma-separated (e.g.

http://192.168.1.100:60606/mcp ) --json Output in JSON format (useful for scripting) -V, --version Print version -h, --he…

1 час назад @ github.com
Show HN: ChronosBench – Terminal CPU/Metal GPU stress tester with live load bars
Show HN: ChronosBench – Terminal CPU/Metal GPU stress tester with live load bars Show HN: ChronosBench – Terminal CPU/Metal GPU stress tester with live load bars

ChronosBenchStresses your CPU and Metal GPU from the terminal.

pip install -r requirements.txt python main.pyWhy this existsEvery benchmark I tried either skipped the GPU entirely, required a GUI, or couldn't be scripted.

GPU runs via PyTorch MPS on macOS.

GPU is excluded from the composite if not detected rather than penalizing the score.

RequirementsPython 3.11+macOS, Linux, or Windowssudo on macOS for GPU telemetry via powermetricsOutputreports/chronosbenchx_2026-03-06_14-22-01.json reports/chronosbenchx_2026-03-06_14-22-01.txtMostly so you can prove to your future self that this laptop used to be fast.

1 час назад @ github.com
Show HN: Codaholiq, AI automations for GitHub repositories
Show HN: Codaholiq, AI automations for GitHub repositories Show HN: Codaholiq, AI automations for GitHub repositories

FeaturesMulti-provider support : run automations with Claude Code (Anthropic), OpenAI Codex, Gemini CLI (Google), or OpenCode (models across Anthropic, OpenAI, Google, DeepSeek).

: run automations with Claude Code (Anthropic), OpenAI Codex, Gemini CLI (Google), or OpenCode (models across Anthropic, OpenAI, Google, DeepSeek).

Select a template, choose a repository, provider, model and you're live in seconds.

Provider & Model: Choose your AI provider and model.

# Run the full check suite before pushing npm run lint && npm run typecheck && npm testLicenseMIT

1 час назад @ github.com
Show HN: I deployed a flight search app in 60s without writing a line of code
Show HN: I deployed a flight search app in 60s without writing a line of code Show HN: I deployed a flight search app in 60s without writing a line of code

The app works on localhost but getting it to a URL someone else can open is a whole separate project.

I tested it with JetSet AI, a flight search app in their App Store.

The agent provisioned the VM, wrote the integration, tested it and deployed it — 60 seconds from clicking Deploy to a live URL.

(To be honest: the app was pre-built in the App Store so 60s is deploy time not build time)Most AI tools give you a codebase.

What I've been doing since: using SuperNinja to extend JetSet AI — adding filters, tweaking the UI, changing how results display.

1 час назад @ news.ycombinator.com
Show HN: GTAO and Red Dead Online lag switch detector and blocker (anti-cheat)
Show HN: GTAO and Red Dead Online lag switch detector and blocker (anti-cheat) Show HN: GTAO and Red Dead Online lag switch detector and blocker (anti-cheat)

Killswitch: Lag Switch Detector and BlockerFull functionality (analysis and blocking) is available on macOS.

This architecture is vulnerable to lag switching, a form of cheating where players intentionally interrupt their own connection to gain advantages in combat.

Killswitch targets lag switching, which is the dominant form of cheating on console where mod menus are not (easily) available.

Understanding Lag SwitchingA lag switch is a physical device or software method used to temporarily halt a player's outgoing/incoming packets.

Lag Switching in ActionFor a demonstration of what this looks like in practice, watch this excellent (and funny) video on the State Of Red Dead Online PVP.

1 час назад @ github.com
Show HN: Vet – Security registry for 88K+ MCP servers and AI tools
Show HN: Vet – Security registry for 88K+ MCP servers and AI tools Show HN: Vet – Security registry for 88K+ MCP servers and AI tools

Hey HN, I built Vet (https://getvet.ai) — a security registry for MCP servers and AI skills.The problem: when you install an MCP tool, you're giving an AI agent code execution on your machine. I scanned 88K+ tools and found crypto miners, SSH backdoors, prompt injection, and tools silently reading .env files and SSH keys. 537 flagged total.How it works: - Static analysis + AI security review generates a trust score (0-100) per tool - Verified tools earn badges (install, boot, tool discovery all tested) - Everything is searchable with security-aware rankingWays to use it: - Browse: https://getvet.ai/catalog - CLI: `npx @getvetai/cli find "database"` - MCP server (yes, an MCP that discovers M…

1 час назад @ getvet.ai
Show HN: Claude-replay – A video-like player for Claude Code sessions
Show HN: Claude-replay – A video-like player for Claude Code sessions Show HN: Claude-replay – A video-like player for Claude Code sessions

claude-replay turns Claude Code session logs into interactive, shareable HTML replays.

The generated replay is a single self-contained HTML file with no external dependencies — you can email it, host it anywhere, or embed it in documentation.

These contain every user message, assistant response, tool call, tool result, and thinking block — with timestamps.

claude-replay converts them into visual replays that look like a Claude Code terminal session, suitable for blog posts, demos, and documentation.

Secret redactionBy default, claude-replay scans all embedded text for common secret patterns and replaces them with [REDACTED] before they are written into the output HTML.

1 час назад @ github.com
Show HN: I couldn't scale my YouTube channels, so I built Shortgram
Show HN: I couldn't scale my YouTube channels, so I built Shortgram Show HN: I couldn't scale my YouTube channels, so I built Shortgram

Your offer must be higher than the seller’s minimum price.

1 час назад @ shortgram.com
Show HN: James Library – Local multi-agent research lab (built on ZeroClaw)
Show HN: James Library – Local multi-agent research lab (built on ZeroClaw) Show HN: James Library – Local multi-agent research lab (built on ZeroClaw)

I’ve been working on a multi-agent academic research lab, and I wanted to share it here today primarily to give a massive shoutout to the developers behind ZeroClaw. When designing the architecture for this, I needed an autonomous agent runtime that was lightweight, entirely agnostic, and highly secure for local execution. ZeroClaw’s pure Rust implementation provided exactly the zero-overhead foundation the project required.Because they solved the core runtime execution so elegantly, I was able to spend my time building the higher-level orchestration on top of it—like the retrieval graph engines, the Godot-based client interface, and the physical hardware/robotics bridges.If any of the Zero…

1 час назад @ rainlabteam.vercel.app
Starter Story Starter Story
последний пост None
Indiehackers
последний пост 22 часа назад
Why indie hackers need AI as a disciplined engineering partner, not a chatbot
Why indie hackers need AI as a disciplined engineering partner, not a chatbot Why indie hackers need AI as a disciplined engineering partner, not a chatbot

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

22 часа назад @ rss.app
Hitting $25k+ MRR by making his goals less ambitious
Hitting $25k+ MRR by making his goals less ambitious Hitting $25k+ MRR by making his goals less ambitious

Thank you for using RSS.app You are being redirected to the article now Opening article in 0 0 : 0 8The #1 Source of RSS FeedsConnect with Information You Care About Get RSS Feed From Almost Any Website

1 day назад @ rss.app
I shipped more in one month than the previous quarter by just blocking distractions
I shipped more in one month than the previous quarter by just blocking distractions I shipped more in one month than the previous quarter by just blocking distractions

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, 8 hours назад @ rss.app
I built a GDPR-compliant calendar sync for the EU market — Closed Beta is live
I built a GDPR-compliant calendar sync for the EU market — Closed Beta is live I built a GDPR-compliant calendar sync for the EU market — Closed Beta is live

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, 9 hours назад @ rss.app
Why Every Indie Hacker I Know Is Overpaying for Email
Why Every Indie Hacker I Know Is Overpaying for Email Why Every Indie Hacker I Know Is Overpaying for Email

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, 10 hours назад @ rss.app
Building a $30k/mo portfolio within eight months of quitting his $420k/yr job
Building a $30k/mo portfolio within eight months of quitting his $420k/yr job Building a $30k/mo portfolio within eight months of quitting his $420k/yr job

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, 23 hours назад @ rss.app
Hiring: Founding Full Stack Engineer (Equity) for Tvrtle
Hiring: Founding Full Stack Engineer (Equity) for Tvrtle Hiring: Founding Full Stack Engineer (Equity) for Tvrtle

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 назад @ rss.app
How to build a quick and dirty prototype to validate your idea
How to build a quick and dirty prototype to validate your idea How to build a quick and dirty prototype to validate your idea

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 назад @ rss.app
Looking for one async decision to test
Looking for one async decision to test Looking for one async decision to test

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
Small but important UX update: Added item name + description to my invoice generator
Small but important UX update: Added item name + description to my invoice generator Small but important UX update: Added item name + description to my invoice generator

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, 9 hours назад @ rss.app
Seeking Technical Cofounder for B2B/SaaS Project
Seeking Technical Cofounder for B2B/SaaS Project Seeking Technical Cofounder for B2B/SaaS Project

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, 20 hours назад @ rss.app
Quitting his job with no plan and hitting $14.5k MRR with a hybrid agency
Quitting his job with no plan and hitting $14.5k MRR with a hybrid agency Quitting his job with no plan and hitting $14.5k MRR with a hybrid agency

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
The uncomfortable problem I’m seeing in technical hiring
The uncomfortable problem I’m seeing in technical hiring The uncomfortable problem I’m seeing in technical hiring

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, 17 hours назад @ rss.app
I Quit Reading Analyst Reports and Built an AI That Does It Better — Here's What 3 Months of Solo Building Taught MeI have
I Quit Reading Analyst Reports and Built an AI That Does It Better — Here's What 3 Months of Solo Building Taught MeI have I Quit Reading Analyst Reports and Built an AI That Does It Better — Here's What 3 Months of Solo Building Taught MeI have

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, 20 hours назад @ rss.app
Building in public: I’m realizing most problems aren’t what they seem.
Building in public: I’m realizing most problems aren’t what they seem. Building in public: I’m realizing most problems aren’t what they seem.

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, 20 hours назад @ rss.app
Reddit: /r/SideProject Reddit: /r/SideProject
последний пост 39 минут назад
Feels unreal but I think my project got viral!
Feels unreal but I think my project got viral! Feels unreal but I think my project got viral!

I built an avatar generation platform https://clawvatar.com with a medieval fantasy game and it went parabolic. can't believe this. submitted by /u/Rough_Explanation560 [link] [comments]

39 минут назад @ reddit.com
Music discovery app
Music discovery app

Built simple music discovery app https://findmyvibe.net ! The main purpose is to find more music gems by genres or by favourite track! Give it a chance ) submitted by /u/Diligent-Chipmunk-17 [link] [comments]

49 минут назад @ reddit.com
I competed against Glassdoor and Indeed from scratch 12 months later here's what happened
I competed against Glassdoor and Indeed from scratch 12 months later here's what happened

When I launched my employee transparency platform I knew the competition was brutal. Glassdoor. Indeed. Platforms with decades of authority, millions of indexed pages, and brand recognition I could never match on a solo budget. Starting organic traffic was 241 monthly visitors. Most people told me I was crazy to go after organic in that space. I did it anyway. The strategy I followed was deliberate and unsexy. I built homepage authority first through HARO and PR outreach before doing anything else. Then I spent months targeting only career, education, and HR-related websites exclusively high-quality sites with genuine topical relevance. I never built links directly to commercial pages, only…

1 час назад @ reddit.com
Anyone Else Start a Side Project Just to Stay Grounded?
Anyone Else Start a Side Project Just to Stay Grounded?

I’ve been rebuilding my life piece by piece over the past year, and one of the things that helped most was giving myself a small creative project to work on every day. Nothing huge — just something steady that reminded me I was still capable of building things. I ended up creating a simple website to track my progress, write short reflections, and experiment with ideas. It’s strange watching something that started as a coping mechanism turn into a real project with actual momentum. Curious how many of you started your side projects the same way — not from ambition, but from needing something to hold onto. submitted by /u/OldWillingness7220 [link] [comments]

1 час назад @ reddit.com
What tool do you use to track rental income and documents?
What tool do you use to track rental income and documents?

For people managing rentals themselves, what tool are you using to stay organized? I’m mainly trying to track: rent received expenses tenant documents profitability per property Right now everything is scattered between Excel and folders. Curious what systems others rely on. submitted by /u/abhi-boss-12 [link] [comments]

1 час назад @ reddit.com
i just launched my app on Product Hunt, a tool that turns flat content into 3d experiences
i just launched my app on Product Hunt, a tool that turns flat content into 3d experiences i just launched my app on Product Hunt, a tool that turns flat content into 3d experiences

hey, after months of work I finally launched my app on Product Hunt today. it turns PDFs or images into 3D flipbooks, galleries, and business cards, all in the browser. would really appreciate any support or feedback, means a lot! :) submitted by /u/Cachivelez [link] [comments]

1 час назад @ reddit.com
Kind of a portfolio builder?
Kind of a portfolio builder?

So i got sick of seeing the same portfolio templates everywhere. like every dev site looks identical now. so i built my own thing over a weekend. had ai write some of it like the planning and all cuz... i'm lazy like that... it's called vibe check. dumb name but whatever. the whole idea is your career stuff shows up like a git log. vertical timeline, little nodes, clean lines. everything runs off one json file so you never have to touch actual code to update it. built it with next.js 15 and react 19 cause why not. threw in some framer motion so stuff animates nice when you scroll. These are the tools i used: Gemini for the base prompt Kilo code for the prompt enhancing Claude Opus 4.5 for t…

1 час назад @ reddit.com
I built an AI that tells you if a product is worth buying (and suggests better alternatives)
I built an AI that tells you if a product is worth buying (and suggests better alternatives)

Hey everyone! 👋 Like many of you, I used to spend hours researching products before buying - scrolling through Amazon reviews, Reddit threads, YouTube comparisons... exhausting. So I built **ReviewCruncher** - you just type what you're thinking of buying, and it: - Analyzes reviews from across the web - Compares it to the best alternative in its category - Gives you a clear verdict with pros, cons, and prices **Example:** Type "AirPods Pro 2" → Get a detailed comparison vs Sony WF-1000XM5 with which one to buy and why. It's completely free to try: https://reviewcruncher.com Would love your feedback! What features would make this more useful for you? submitted by /u/Gniederlaender [link] [co…

1 час назад @ reddit.com
I created a personal finance app, ZennyBooks
I created a personal finance app, ZennyBooks

Hi there! i'm a SWE working an a fortune 500. I've been in tech for quite a while, but i've never been good at managing my finances. I dove deep into this, and built an app for myself. It has a bit of overlap with monarch; except everything is module-based and we don't require a credit card for sign-up. Here are the modules, which are all optional Free - Manual statement importer - Transaction Search Modules - Budgeting - Financial Planning - Investments - Plaid bank connections with a daily sync - Assets & Liabilities - Voice Agent + MCP Server Security: - Two step verification required - Plaid backend for bank connections (used by 2500+ fintech apps) AI is entirely optional. lots of apps …

1 час назад @ reddit.com
Finally i shared my app
Finally i shared my app

Hi everyone! I just launched Zephyr. It’s a mystical astrology guide designed with a "Glassmorphism" aesthetic. Precision: 100% local calculations (No APIs/External data). Unique Features: Ancient temperament analysis & Planetary hours for rituals. Privacy: Everything stays on your device. I'm looking for early testers to check the accuracy and UI. Google Play: https://play.google.com/store/apps/details?id=com.zephyr.app.zephyr_app Free trial for 3 days. Thanks for checking it out! 🌙 submitted by /u/Evening-Fox9213 [link] [comments]

1 час назад @ reddit.com
How did you get your first 10 real users?
How did you get your first 10 real users?

Hey everyone, I’m a student building my first product and realizing that building is actually the easier part. The hard part seems to be finding the first few people who genuinely want to use it. For founders here, how did you get your first 10 real users? Not traffic or signups — actual users who gave feedback. Would really appreciate any advice. submitted by /u/Severe_Lawyer_3076 [link] [comments]

1 час назад @ reddit.com
I built an AI alarm clock that wakes you up with a personalized morning radio show
I built an AI alarm clock that wakes you up with a personalized morning radio show I built an AI alarm clock that wakes you up with a personalized morning radio show

There is usually music playing along in the background and it will also create a new playlist for you every morning with Apple Music. (Didnt make it to the video for copyright reasons) submitted by /u/Kitchen-Palpitation1 [link] [comments]

2 часа назад @ reddit.com
I built an AI that optimizes your credit card points and plans your entire trip — looking for beta testers
I built an AI that optimizes your credit card points and plans your entire trip — looking for beta testers

The problem: optimizing credit card points is still a 15-tab nightmare. You're bouncing between ITA Matrix, Seats.aero, TPG, the Chase portal, and a spreadsheet, trying to remember if Amex transfers to ANA at 1:1 or if there's a bonus running. The average points collector spends 3+ hours planning a single award trip and still misses the best redemption path. Points bloggers have the expertise. The rest of us have tab chaos. Here's what I built. What is it? Journi is an AI travel agent that knows your points balances, transfer partners, active bonuses, and card benefits, and builds your entire trip optimized around them. You talk to it like a friend: "Plan me 10 days in Japan from NYC, I hav…

2 часа назад @ reddit.com
How to Get Responses on Reddit DMs and Turn Them Into Sales
How to Get Responses on Reddit DMs and Turn Them Into Sales

Follow these steps: Find the Right Communities Collect 10 subreddits where your target audience is active. Focus on communities where people discuss problems related to your product or service. Understand Their Problems Read posts and comments to identify: Frequently asked questions Common frustrations Challenges your audience faces This helps you understand what people really need. Send a Personalized Welcome Message Use r/DMdad to send a ready-made welcome message, but personalize it automatically. This will help you: Avoid being flagged as spam Increase reply rates Start a natural conversation Help First Once someone replies, focus on helping them before selling. At this stage: Answer th…

2 часа назад @ reddit.com
I'm 19, broke, and from India. I built my own AI tool for 14 bucks a month to replace the one that costs 49. Here's exactly how.
I'm 19, broke, and from India. I built my own AI tool for 14 bucks a month to replace the one that costs 49. Here's exactly how. I'm 19, broke, and from India. I built my own AI tool for 14 bucks a month to replace the one that costs 49. Here's exactly how.

Hey everyone, I've been lurking in this sub for months and finally have something to share. This is what I built: ClawDesk — a platform that lets non-technical people deploy OpenClaw (an AI assistant) on Telegram in about 5 minutes. No coding, no SSH, no server management. I built it coz: I wanted to use OpenClaw but couldn't afford the managed options ($29-49/month). I also couldn't figure out the self-hosting setup — I'm not a DevOps person. So I built a tool that solves this for everyone. This is how it works: You enter your Telegram bot token (from BotFather) Sign in with Google Grab a free API key from Google AI Studio Paste it into ClawDesk Click deploy → your bot now lives in Telegra…

2 часа назад @ reddit.com
Product Hunt Product Hunt
последний пост 11 часов назад
Woz
Woz

Build App That Earn Discussion | Link

11 часов назад @ producthunt.com
Vera Platform by Cortex Research
Vera Platform by Cortex Research

Made to automate complex work and accelerate decision-making Discussion | Link

16 часов назад @ producthunt.com
ChatGPT for Excel
ChatGPT for Excel

Build and update spreadsheets with ChatGPT in real time Discussion | Link

17 часов назад @ producthunt.com
Vet
Vet

Keep your coding agents honest Discussion | Link

21 час назад @ producthunt.com
FocusOne- Distraction Free Phone
FocusOne- Distraction Free Phone

Focus Like a Monk. Perform Like a Beast Discussion | Link

23 часа назад @ producthunt.com
GPT‑5.4
GPT‑5.4

OpenAI's most efficient model: less tokens, more clarity Discussion | Link

23 часа назад @ producthunt.com
Cushion
Cushion

combines posts, messaging, + check‑ins for better teamwork Discussion | Link

1 day назад @ producthunt.com
Cockpit
Cockpit

Transform your VPS into a powerful desktop-like interface Discussion | Link

1 day, 4 hours назад @ producthunt.com
VolumeGlass
VolumeGlass

Beautiful volume control for macOS Discussion | Link

1 day, 5 hours назад @ producthunt.com
Saydi
Saydi

Real time voice translation for persona & work Discussion | Link

1 day, 5 hours назад @ producthunt.com
Pitwall F1
Pitwall F1

Live F1 timing & standings in your Mac menu bar Discussion | Link

1 day, 8 hours назад @ producthunt.com
GitSync Lite for macOS
GitSync Lite for macOS

Monitor, sync & back up your git repos from the menu bar Discussion | Link

1 day, 10 hours назад @ producthunt.com
Step 3.5 Flash
Step 3.5 Flash

Frontier open-source MoE model built for OpenClaw agents Discussion | Link

1 day, 13 hours назад @ producthunt.com
Codex app for Windows
Codex app for Windows

Codex now runs natively on Windows with secure sandbox Discussion | Link

1 day, 14 hours назад @ producthunt.com
Hermit
Hermit

Leave ChatGPT while keeping everything it learned about you Discussion | Link

1 day, 15 hours назад @ producthunt.com
Путешествия
Vandrouki Vandrouki
последний пост 4 months, 1 week назад
Прямые рейсы между Оманом и Кенией
Прямые рейсы между Оманом и Кенией

У авиакомпании SalamAir промо-тариф: улететь из Маската в Найроби (или наоборот) можно от 6200 рублей (30 OMR). Для въезда в Кению нужно заранее оформить электронное разрешение (сбор около 30-35 USD с человека). Купить билеты можно на сайте авиакомпании или через trip.com / aviasales.ru (тут немного дороже, но зато принимают российские карты). Маскат — Найроби в декабре за 6200 рублей: Российской картой: […]

4 months, 1 week назад @ vandrouki.ru
Volotea: полеты по Европе и в Марокко
Volotea: полеты по Европе и в Марокко

Авиакомпания Volotea выкатила билеты за 19 евро. Но можно легко оформить пробную подписку SUPERVOLOTEA на 15 дней и купить их за 9 евро. Обычно подписка на год стоит 60 евро. Лоукостер утверждает, что Вы можете отменить членство в любой момент, но потеряете при этом некоторые привилегии, например, ручную кладь, но сохраните свою скидку на проезд. Главное, не забудьте […]

4 months, 1 week назад @ vandrouki.ru
Шри-Ланка и ОАЭ в одной поездке из Екатеринбурга
Шри-Ланка и ОАЭ в одной поездке из Екатеринбурга Шри-Ланка и ОАЭ в одной поездке из Екатеринбурга

Vandrouki (или Вандруки / Вандрули / Ванбрюки или как удобно) – это путешествия.

Способы путешествовать почти бесплатно.

Разумеется, Vandrouki – это высококвалифицированная команда амбициозных профессионалов своего дела.

с 2012 года мы ищем и находим дешевые авиабилеты, отели, туры и круизы.

А вы путешествуете почти бесплатно.

4 months, 1 week назад @ vandrouki.ru
Белавиа: прямые рейсы из Москвы в Могилев
Белавиа: прямые рейсы из Москвы в Могилев Белавиа: прямые рейсы из Москвы в Могилев

Vandrouki (или Вандруки / Вандрули / Ванбрюки или как удобно) – это путешествия.

Способы путешествовать почти бесплатно.

Разумеется, Vandrouki – это высококвалифицированная команда амбициозных профессионалов своего дела.

А вы путешествуете почти бесплатно.

Прямо сейчас, пока вы читали этот блок, мы нашли ещё несколько билетов, а кто-то их купил.

4 months, 1 week назад @ vandrouki.ru
10 ночей во Вьетнаме с вылетом из Благовещенска
10 ночей во Вьетнаме с вылетом из Благовещенска 10 ночей во Вьетнаме с вылетом из Благовещенска

Vandrouki (или Вандруки / Вандрули / Ванбрюки или как удобно) – это путешествия.

Способы путешествовать почти бесплатно.

Разумеется, Vandrouki – это высококвалифицированная команда амбициозных профессионалов своего дела.

с 2012 года мы ищем и находим дешевые авиабилеты, отели, туры и круизы.

А вы путешествуете почти бесплатно.

4 months, 1 week назад @ vandrouki.ru
Таиланд + ОАЭ из Москвы с захватом Нового года
Таиланд + ОАЭ из Москвы с захватом Нового года Таиланд + ОАЭ из Москвы с захватом Нового года

Vandrouki (или Вандруки / Вандрули / Ванбрюки или как удобно) – это путешествия.

Способы путешествовать почти бесплатно.

Разумеется, Vandrouki – это высококвалифицированная команда амбициозных профессионалов своего дела.

с 2012 года мы ищем и находим дешевые авиабилеты, отели, туры и круизы.

А вы путешествуете почти бесплатно.

4 months, 1 week назад @ vandrouki.ru
Прямые рейсы из Екатеринбурга в Армению
Прямые рейсы из Екатеринбурга в Армению Прямые рейсы из Екатеринбурга в Армению

Vandrouki (или Вандруки / Вандрули / Ванбрюки или как удобно) – это путешествия.

Способы путешествовать почти бесплатно.

Разумеется, Vandrouki – это высококвалифицированная команда амбициозных профессионалов своего дела.

А вы путешествуете почти бесплатно.

Прямо сейчас, пока вы читали этот блок, мы нашли ещё несколько билетов, а кто-то их купил.

4 months, 1 week назад @ 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, 1 week назад @ vandrouki.ru
Прямой рейс из Египта в Самару
Прямой рейс из Египта в Самару Прямой рейс из Египта в Самару

Vandrouki (или Вандруки / Вандрули / Ванбрюки или как удобно) – это путешествия.

Способы путешествовать почти бесплатно.

Разумеется, Vandrouki – это высококвалифицированная команда амбициозных профессионалов своего дела.

А вы путешествуете почти бесплатно.

Прямо сейчас, пока вы читали этот блок, мы нашли ещё несколько билетов, а кто-то их купил.

4 months, 1 week назад @ vandrouki.ru
Прямой рейс Аэрофлота с Сейшельских островов в Москву
Прямой рейс Аэрофлота с Сейшельских островов в Москву Прямой рейс Аэрофлота с Сейшельских островов в Москву

Vandrouki (или Вандруки / Вандрули / Ванбрюки или как удобно) – это путешествия.

Способы путешествовать почти бесплатно.

Разумеется, Vandrouki – это высококвалифицированная команда амбициозных профессионалов своего дела.

с 2012 года мы ищем и находим дешевые авиабилеты, отели, туры и круизы.

А вы путешествуете почти бесплатно.

4 months, 1 week назад @ vandrouki.ru
Из Казани в Новокузнецк за почти бесплатно
Из Казани в Новокузнецк за почти бесплатно Из Казани в Новокузнецк за почти бесплатно

Vandrouki (или Вандруки / Вандрули / Ванбрюки или как удобно) – это путешествия.

Способы путешествовать почти бесплатно.

Разумеется, Vandrouki – это высококвалифицированная команда амбициозных профессионалов своего дела.

А вы путешествуете почти бесплатно.

Прямо сейчас, пока вы читали этот блок, мы нашли ещё несколько билетов, а кто-то их купил.

4 months, 1 week назад @ vandrouki.ru
Etihad Airways: полеты из Казани в Азию
Etihad Airways: полеты из Казани в Азию Etihad Airways: полеты из Казани в Азию

Vandrouki (или Вандруки / Вандрули / Ванбрюки или как удобно) – это путешествия.

Способы путешествовать почти бесплатно.

Разумеется, Vandrouki – это высококвалифицированная команда амбициозных профессионалов своего дела.

А вы путешествуете почти бесплатно.

Прямо сейчас, пока вы читали этот блок, мы нашли ещё несколько билетов, а кто-то их купил.

4 months, 1 week назад @ vandrouki.ru
Таиланд или Таиланд + Хайнань в одной поездке из Москвы
Таиланд или Таиланд + Хайнань в одной поездке из Москвы Таиланд или Таиланд + Хайнань в одной поездке из Москвы

Vandrouki (или Вандруки / Вандрули / Ванбрюки или как удобно) – это путешествия.

Способы путешествовать почти бесплатно.

Разумеется, Vandrouki – это высококвалифицированная команда амбициозных профессионалов своего дела.

А вы путешествуете почти бесплатно.

Прямо сейчас, пока вы читали этот блок, мы нашли ещё несколько билетов, а кто-то их купил.

4 months, 1 week назад @ vandrouki.ru
AZAL: полеты из Москвы, Питера и Екб на Ближний Восток, в Индию и на Мальдивы
AZAL: полеты из Москвы, Питера и Екб на Ближний Восток, в Индию и на Мальдивы AZAL: полеты из Москвы, Питера и Екб на Ближний Восток, в Индию и на Мальдивы

Азербайджанские Авиалинии снизили цены ноябрь-март: взять из Москвы, Питера и Екб в ОАЭ, Израиль, Таджикистан, Саудовскую Аравию, Индию и на Мальдивы можно со скидками.

Билеты берем через сервис aviasales.ru (тут дешевле всего).

Москва — Душанбе — Москва:Москва — Даммам — Москва:Москва — Дубай — Москва:Москва — Тель-Авив — Москва:Москва — Дели — Москва:Москва — Мумбаи — Москва:Москва — Мале — Москва в ноябре:Москва — Мале — Москва в январе:Москва — Мале — Москва в феврале:Москва — Мале — Москва в марте:Питер — Душанбе — Питер:Питер — Даммам — Питер:Питер — Дубай — Питер:Питер — Тель-Авив — Питер:Питер — Дели — Питер:Питер — Мумбаи — Питер:Питер — Мале — Питер в ноябре-декабре:Питер — Мале —…

4 months, 1 week назад @ vandrouki.ru
Подборка недорогих билетов по всему миру
Подборка недорогих билетов по всему миру Подборка недорогих билетов по всему миру

Vandrouki (или Вандруки / Вандрули / Ванбрюки или как удобно) – это путешествия.

Способы путешествовать почти бесплатно.

Разумеется, Vandrouki – это высококвалифицированная команда амбициозных профессионалов своего дела.

А вы путешествуете почти бесплатно.

Прямо сейчас, пока вы читали этот блок, мы нашли ещё несколько билетов, а кто-то их купил.

4 months, 1 week назад @ vandrouki.ru
Atlas Obscura: Stories Atlas Obscura: Stories
последний пост 1 час назад
Books, Beans, & Candles in Birmingham, Alabama
Books, Beans, & Candles in Birmingham, Alabama Books, Beans, & Candles in Birmingham, Alabama

Tucked along Birmingham’s Richard Arrington Jr. Boulevard, Books, Beans, and Candles isn’t just a store—it’s a portal. Billing itself as Alabama’s oldest and largest metaphysical shoppe, the space hums with the scent of incense and espresso, its shelves lined with arcane books, hand-poured candles, and curious relics of the occult. Visitors come to browse spellcraft supplies and crystals, sip tea or coffee, and linger among artifacts that seem to blur the line between the earthly and the ethereal.

But this shop is as much a gathering ground as it is a marketplace. On any given evening, you might find tarot readers flipping cards over steaming mugs during the monthly Tea and Tarot, or astrol…

1 час назад @ atlasobscura.com
I’m On a Quest to Visit All 50 States Before America Turns 250
I’m On a Quest to Visit All 50 States Before America Turns 250

I have been traveling my entire life. As a journalist, I've reported from places most people never see, like small towns in Malaysia and factory complexes in Tijuana. As a traveler, I've chased the unusual, the overlooked, the wonderful, and the natural around the world. I run marathons and rock climb, so discomfort in the name of discovery is basically my love language. And yet, until this past December, I had never once asked myself a simple question: how many of the fifty United States have I actually been to?

The answer came courtesy of Atlas Obscura, the travel and culture company I lead as CEO. We launched a new feature — a 50-state map where users can log the states they've visited. …

2 часа назад @ atlasobscura.com
Hultanäs Station in Hultanäs, Sweden
Hultanäs Station in Hultanäs, Sweden Hultanäs Station in Hultanäs, Sweden

Hultanäs railway station in Vetlanda municipality is a historic station on the Växjö-Åseda-Hultsfred narrow-gauge railway. It is no longer in regular service and is primarily used for tourist trains, such as the narrow-gauge steam trains of the museum railway.

The platform lies silent, as if time has decided to halt here. The gravel between the rails is overgrown with weeds and grass. The signs, their letters faded by sun and rain. On the tracks, the trains stand motionless, like metal skeletons waiting for a signal that will never come.

The windows are dull, some shattered. The locomotives still bear their numbers and logos. Inside, the cabins are empty: levers rusted, meters frozen in the…

2 часа назад @ atlasobscura.com
The Bar Where a Future President Sat Down With a Pirate
The Bar Where a Future President Sat Down With a Pirate The Bar Where a Future President Sat Down With a Pirate

This article comes from Atlas Obscura’s Places newsletter. Subscribe or manage your subscription here.

On Bourbon Street in New Orleans, Jean Lafitte’s Old Absinthe House looks and feels like it belongs to another century. Andrew Jackson is said to have met the pirate Jean Lafitte in an upstairs room to ask for help manning ships against the British in the War of 1812. Today, the brick interior is lined with mementos left behind by visitors, its convivial history made visible.

The smallest bar in Amsterdam has stayed in one family since 1798, cramming centuries of coziness into a famously tiny room. An old-world Spanish eatery in Madrid is billed as the oldest restaurant in the world, and i…

4 часа назад @ atlasobscura.com
Vesavar Art Gallery in Pune, India
Vesavar Art Gallery in Pune, India Vesavar Art Gallery in Pune, India

Along the iconic East Street in the neighbourhood of Camp in Pune, there is an old heritage stone building which has been recently turned into an art gallery. Vesavar Art Gallery was founded by Kavita Bhandari and artist Pranali Harpude with the aim of creating an environment to showcase contemporary Indian art. The founders identified this heritage building which is more than a hundred years old and recognized its potential as a space for establishing such an art hub. The restoration of the building was meticulously carried out in great detail by architect Sandeep Shah. The architectural elements of the building such as the wooden staircase and the ceiling were carefully preserved to maint…

20 часов назад @ atlasobscura.com
Italo Calivino’s Grave in Castiglione della Pescaia, Italy
Italo Calivino’s Grave in Castiglione della Pescaia, Italy Italo Calivino’s Grave in Castiglione della Pescaia, Italy

Tucked into the quiet cemetery of Castiglione della Pescaia, overlooking the Tuscan coastline, lies the grave of Italo Calvino—an author whose imagination ranged far beyond the visible world. Unlike monumental tombs dedicated to literary giants, Calvino’s resting place is strikingly modest, almost deliberately so, echoing his lifelong resistance to grandiosity and rigid labels.

Calvino spent many of his later years in this coastal town, drawn to its light, its sea, and its balance between nature and human order—concerns that recur throughout his work, from Invisible Cities to Mr. Palomar. The cemetery itself feels less like a city of the dead than a contemplative garden, where the horizon o…

22 часа назад @ atlasobscura.com
Pevnosť Bzovík in Bzovík, Slovakia
Pevnosť Bzovík in Bzovík, Slovakia Pevnosť Bzovík in Bzovík, Slovakia

The monastery in Bzovík was founded between 1127 and 1131, it's charter being issued in 1135. Originally a Benedictine monastery (dedicated to the first Hungarian king, St. Stephen), around 1180 it fell under the influence of a religious order called the Premonstratensians. This new leadership expanded monastic teaching to include new economics and agriculture. Monastic strongholds were often the subject of attack during the 15th century, and as such the building was burned down several times, immediately repaired and rebuilt only to be razed again. In 1530 it was even rebuilt into a vast fortified manor house by a Slovakian oligarch Zigmund Balasa, adding dwellings for soldiers and farming…

1 day назад @ atlasobscura.com
Norwich Horton Sphere in Norwich, Connecticut
Norwich Horton Sphere in Norwich, Connecticut Norwich Horton Sphere in Norwich, Connecticut

A large, rusted spherical pressure vessel set in the woods behind an old, closed down schoolhouse built to store liquefied gas or other materials under high pressure.

A "Horton Sphere" (or Hortonsphere) is a relic from Connecticut's industrial past, looking something like a vintage lunar lander from the golden age of science fiction. The sphere sits in a fenced off lot (with some breaches in the fencing) behind the defunct Laurel Hill School along with two other crumbled structures. It stands as a local landmark that once held various substances for industrial use. Research tells of other Horace Horton spheres similar to this 37.5' giant in Milford CT and Danbury CT, however those have been…

1 day, 2 hours назад @ atlasobscura.com
Mathews Museum in Mathews, Virginia
Mathews Museum in Mathews, Virginia Mathews Museum in Mathews, Virginia

At first glance, the Mathews Museum appears to be a small local history museum in a quiet coastal Virginia town. Step inside, however, and it becomes something more intimate: a place that preserves how community itself once functioned—through shared spaces, shared knowledge, and shared survival.

At the heart of the museum is an immersive, walk-through general store that does more than recreate a historic interior. It reflects a time when general stores were not simply places to buy goods, but the central machinery of rural life. In communities like Mathews County—shaped by waterways, distance, and limited infrastructure—the general store was where news traveled, credit was extended, and rel…

1 day, 20 hours назад @ atlasobscura.com
Maison Culturelle du Tapis in Marrakech, Morocco
Maison Culturelle du Tapis in Marrakech, Morocco Maison Culturelle du Tapis in Marrakech, Morocco

A wonderful relaxing visit. It contains so many intricately knotted and weaved rugs and a lovely hand-woven wedding cape. It was exquisite. There was also a hands-on workshop where you can learn how to weave.

Finishing your visit on the rooftop with tea and an assortment of authentic Moroccan pastries provides a lovely view of the medina from above. A wonderful visit from start to finish.

1 day, 22 hours назад @ atlasobscura.com
‘Strange Fruit’ in Bordeaux, France
‘Strange Fruit’ in Bordeaux, France ‘Strange Fruit’ in Bordeaux, France

This resin and metal sculpture was created by sculptor Sandrine Plante-Rougeol for Memory Week 2019. This sculpture, acquired by the City of Bordeaux and inaugurated on December 2, 2019, is a tribute to the enslaved people, in remembrance of their suffering. So that we never forget these crimes against humanity—the slave trade and slavery itself—and so that they may never happen again.

Plante-Rougeol, a descendant of enslaved people herself, is a committed figurative sculptor, a Zorey of Réunionese and Auvergne descent. The artist’s work invites viewers to think of her work “as a connection of symbols interwoven in space and time.” The symbol of the tree of life and its roots linking heaven…

2 days назад @ atlasobscura.com
Hans Albers Monument Reliefs in Hamburg, Germany
Hans Albers Monument Reliefs in Hamburg, Germany Hans Albers Monument Reliefs in Hamburg, Germany

A bronze statue of Hans Albers stands just off Hamburg’s Reeperbahn, the city’s historic red-light and entertainment strip near the port. Albers, a film star of the 1930s and 1940s, became synonymous with the surrounding St Pauli district through movies and songs that romanticised sailors, bars, and nightlife, especially Auf der Reeperbahn nachts um halb eins (“On the Reeperbahn at Half Past Midnight”). At first glance, the monument reads as a straightforward tribute to a local icon in his natural habitat.

What most visitors miss, however, is what unfolds below the statue. A series of low reliefs carved into the base depict scenes often read as everyday life from the surrounding district ra…

2 days, 2 hours назад @ atlasobscura.com
Lau Shui Heung Reservoir in Hong Kong
Lau Shui Heung Reservoir in Hong Kong Lau Shui Heung Reservoir in Hong Kong

Situated in the west of scenic Pat Sin Leng Country Park, near the border with China. Lau Shui Heung is a picturesque reservoir, often referred to by locals as 'the mirror of the sky',

That moniker arose from the vivid reflections of the surrounding environment on the surface of Lau Shui Heung's calm waters, visible all year round. The reservoir is particularly popular around late December/early January. During these few weeks, the reflections become even more evocative, due to the reddening leaves of the cypress trees on the reservoir's western edge.

Lau Shui Heung translates to 'the sound of flowing water', which is quite often the only sound to be heard at this peaceful location. During …

2 days, 20 hours назад @ atlasobscura.com
Vimean Sokha Museum in Krong Siem Reap, Cambodia
Vimean Sokha Museum  in Krong Siem Reap, Cambodia Vimean Sokha Museum in Krong Siem Reap, Cambodia

This is such a weird but wonderful place to go. It’s family owned and definitely something different than just about everything else in the city. You walk in to first see a huge amount of motorbikes the owner rebuilt.

Walk inside to and you’re surrounded by yet more motorbikes and more bicycles from nearly every era. Want to see antique cameras, watches, phones, and phonographs? Just walk upstairs!

The owner’s daughter will gladly accompany you to tell you about what you’re seeing, when and where it comes from. Such an eclectic assortment of items.

2 days, 22 hours назад @ atlasobscura.com
McRaven Tour Home in Vicksburg, Mississippi
McRaven Tour Home in Vicksburg, Mississippi McRaven Tour Home in Vicksburg, Mississippi

McRaven Tour Home is Mississippi's most haunted house. It's strictly a tour home built in 1797 by highwayman Andrew Glass as a hideout. It was added on in 1836 and again in 1849, but the original portion of the house remains 1797. Civil War buffs will love learning about how McRaven was used as a field camp and later field hospital during the Siege of Vicksburg.

Open daily for history tours, haunted tours and paranormal investigations. Featured on several television shows such as "Ghost Adventures", "Haunted Towns" and "Looking Around Mississippi with Walt Grayson." McRaven has also hosted several paranormal investigators such as Richel Stratton, Brian Murray from "Ghost Hunters" and Youtub…

3 days назад @ atlasobscura.com
T—Ж T—Ж
последний пост None
Европейское айти
EU-startups EU-startups
последний пост 1 час назад
Weekly funding round-up! All of the European startup funding rounds we tracked this week (Mar. 02-06)
Weekly funding round-up! All of the European startup funding rounds we tracked this week (Mar. 02-06)

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 […]

The post Weekly funding round-up! All of the European startup funding rounds we tracked this week (Mar. 02-06) appeared first on EU-Startups.

1 час назад @ eu-startups.com
Austrian Post acquires 70% stake in Bulgarian e-commerce logistics platform euShipments.com
Austrian Post acquires 70% stake in Bulgarian e-commerce logistics platform euShipments.com

Austrian Post has successfully completed the acquisition of a 70% stake in Bulgarian scale-up euShipments.com, a logistics partner for online merchants in Central and Eastern Europe. This transaction also marks the conclusion of BlackPeak Capital’s partnership with euShipments.com, following several years supporting the company’s expansion, operational development, and M&A strategy. Svetlozar Dimitrov, co-founder and CEO […]

The post Austrian Post acquires 70% stake in Bulgarian e-commerce logistics platform euShipments.com appeared first on EU-Startups.

1 час назад @ eu-startups.com
Germany’s Cellbox Solutions raises €3.5 million to expand global transport technology for living cells
Germany’s Cellbox Solutions raises €3.5 million to expand global transport technology for living cells

Cellbox Solutions, a Cologne-based warm-chain logistics technology company enabling the global transport of living cells under controlled physiological conditions, has raised €3.5 million in a Series A financing – which remains open for other tranches until May 2026. The round is led by the digital business angel network Companisto, together with existing investors, including NRW.BANK. […]

The post Germany’s Cellbox Solutions raises €3.5 million to expand global transport technology for living cells appeared first on EU-Startups.

2 часа назад @ eu-startups.com
Swedish BatteryTech startup Holyvolt acquires US battery materials firm Wildcat in €63.1 million deal
Swedish BatteryTech startup Holyvolt acquires US battery materials firm Wildcat in €63.1 million deal

Holyvolt, a Swedish battery technology firm, has completed the acquisition of California-based battery materials development company Wildcat Discovery Technologies in a €63.1 million (£73 million) deal composed of cash, equity, and deferred milestone-based payments. The combination creates a group with end-to-end capability from molecular discovery to pilot-scale production using a fully integrated High Throughput Platform. […]

The post Swedish BatteryTech startup Holyvolt acquires US battery materials firm Wildcat in €63.1 million deal appeared first on EU-Startups.

5 часов назад @ eu-startups.com
Italy’s Roboze secures DefenceTech investment ahead of US aerospace and defence headquarters launch
Italy’s Roboze secures DefenceTech investment ahead of US aerospace and defence headquarters launch

Roboze, a Bari-based manufacturing technology company developing advanced production platforms for mission-critical industries, has secured an investment from Rule 1 Ventures, a US venture capital firm focused on defence and national security technologies. The funding round also includes participation from investors with backgrounds in defence, government affairs, and global industrial markets. These include Privcorp Ventures; […]

The post Italy’s Roboze secures DefenceTech investment ahead of US aerospace and defence headquarters launch appeared first on EU-Startups.

7 часов назад @ eu-startups.com
TOP 100: Europe’s most influential women in the startup and venture capital space in 2026!
TOP 100: Europe’s most influential women in the startup and venture capital space in 2026!

Ahead of International Women’s Day 2026 on March 8, this year’s theme, “Give to Gain”, highlights the power of generosity, collaboration, and shared responsibility in advancing gender equality. The campaign encourages individuals, organisations, and communities to contribute through mentorship, visibility, education, funding, and support networks. The idea is simple: when opportunities are shared and support […]

The post TOP 100: Europe’s most influential women in the startup and venture capital space in 2026! appeared first on EU-Startups.

9 часов назад @ eu-startups.com
Madrid-based TaxDown secures €4 million from BBVA Spark to scale AI-driven digital tax platform
Madrid-based TaxDown secures €4 million from BBVA Spark to scale AI-driven digital tax platform

TaxDown, a Madrid-based FinTech startup specialised in digital taxation, has secured €4 million in financing from BBVA Spark to accelerate its growth, develop new AI-based solutions and expand its tech team. This financing benefits from the support of the European Union – NextGenerationEU and the European Investment Fund, with Spain supporting the programme through the […]

The post Madrid-based TaxDown secures €4 million from BBVA Spark to scale AI-driven digital tax platform appeared first on EU-Startups.

9 часов назад @ eu-startups.com
DealFlowAgent raises €646.2k led by early Uber and SpaceX backer to scale AI-native investment bank for SME M&A
DealFlowAgent raises €646.2k led by early Uber and SpaceX backer to scale AI-native investment bank for SME M&A

DealFlowAgent, a UK-and USA-based AI-native investment bank, today announced it has secured a €646.2k ($750k) funding round to scale its platform and expand its team. The round was led by Long Journey, a San Francisco-based early-stage venture fund with a team including Arielle Zuckerberg, Cyan and Scott Banister, Pascal Levy-Garboua, and Lee Jacobs. Its portfolio […]

The post DealFlowAgent raises €646.2k led by early Uber and SpaceX backer to scale AI-native investment bank for SME M&A appeared first on EU-Startups.

11 часов назад @ eu-startups.com
Irish-founded startup Evervault raises €21 million to advance encrypted data orchestration
Irish-founded startup Evervault raises €21 million to advance encrypted data orchestration

Evervault, a New York and Dublin-based developer-first platform for encrypting and orchestrating sensitive data, today announced it has raised €21 million ($25 million) Series B financing to expand its encryption infrastructure, invest in product development and grow its engineering and product teams. The round was led by Ribbit Capital with participation from Sequoia Capital and […]

The post Irish-founded startup Evervault raises €21 million to advance encrypted data orchestration appeared first on EU-Startups.

1 day, 4 hours назад @ eu-startups.com
The EU-Startups Podcast | Interview with Philipp Heltewig, Chief AI Officer at NiCE and General Manager of NiCE Cognigy
The EU-Startups Podcast | Interview with Philipp Heltewig, Chief AI Officer at NiCE and General Manager of NiCE Cognigy

This week on the EU-Startups podcast, we sit down with Philipp Heltewig, Chief AI Officer at NiCE and General Manager of NiCE Cognigy, an enterprise AI platform that helps companies automate customer and employee service operations through conversational and agentic AI systems that can understand requests, access internal systems, and resolve tasks across multiple digital […]

The post The EU-Startups Podcast | Interview with Philipp Heltewig, Chief AI Officer at NiCE and General Manager of NiCE Cognigy appeared first on EU-Startups.

1 day, 5 hours назад @ eu-startups.com
Slovakia’s rising tech scene: 10 of the most promising startups shaping the country in 2026
Slovakia’s rising tech scene: 10 of the most promising startups shaping the country in 2026

Continuing with our series highlighting the most promising startups across Europe, it’s time to turn our eye to Slovakia, a Central European country steadily strengthening its position within the region’s innovation landscape. Known for its strong industrial base and growing pool of technical talent, Slovakia is increasingly producing startups that combine engineering depth with international […]

The post Slovakia’s rising tech scene: 10 of the most promising startups shaping the country in 2026 appeared first on EU-Startups.

1 day, 6 hours назад @ eu-startups.com
Antwerp-based Vectrix raises €1.15 million to build the automation layer for transport operations
Antwerp-based Vectrix raises €1.15 million to build the automation layer for transport operations

Vectrix, an Antwerp-based AI platform that automates the manual entry of transport orders, has raised €1.15 million in a Seed round to support its next growth phase. The round was led by Antwerp VC firm RDY Ventures, with participation from Seeder Fund, PMV, and Germany’s Prequel Ventures. “The logistics sector has been dealing for years […]

The post Antwerp-based Vectrix raises €1.15 million to build the automation layer for transport operations appeared first on EU-Startups.

1 day, 7 hours назад @ eu-startups.com
FIRSTPICK launches €25 million fund to act as VC “fairy godmother” to Baltic founders before their Cinderella moment
FIRSTPICK launches €25 million fund to act as VC “fairy godmother” to Baltic founders before their Cinderella moment

FIRSTPICK, a Vilnius-based first-check venture capital fund, has launched a new €25 million fund to invest in early-stage Baltic startups. It focuses on founders who don’t fit the typical VC mould and are open to entrepreneurs with no FAANG background or an Ivy League degree. According to the VC fund, this approach involves identifying and […]

The post FIRSTPICK launches €25 million fund to act as VC “fairy godmother” to Baltic founders before their Cinderella moment appeared first on EU-Startups.

1 day, 8 hours назад @ eu-startups.com
Dragonfly-inspired DeepTech: Austria’s fibionic secures €3 million for its nature-inspired lightweight technology
Dragonfly-inspired DeepTech: Austria’s fibionic secures €3 million for its nature-inspired lightweight technology

fibionic, an Austrian DeepTech startup specialising in bionically optimised fibre placement, today announced the closing of its €3 million Seed financing round, to further industrialise its nature-inspired technology for precise fibre placement and enter new markets. The round was led by Redstone and Euregio+, together with co-lead investors Caesar and Leap435, as well as various […]

The post Dragonfly-inspired DeepTech: Austria’s fibionic secures €3 million for its nature-inspired lightweight technology appeared first on EU-Startups.

1 day, 9 hours назад @ eu-startups.com
Dutch payments technology firm Silverflow closes €37 million Series B; plans to grow workforce by over 50%
Dutch payments technology firm Silverflow closes €37 million Series B; plans to grow workforce by over 50%

Silverflow, an Amsterdam-based cloud-native payment company, today announced that it has successfully closed a €37 million ($40 million) Series B funding round to accelerate its global expansion, enhance its product suite, and grow its global workforce by more than 50%. The funding was led by Munich-based DeepTech investor Picus Capital, with participation from Rabo Investments […]

The post Dutch payments technology firm Silverflow closes €37 million Series B; plans to grow workforce by over 50% appeared first on EU-Startups.

1 day, 11 hours назад @ eu-startups.com
Tech.eu Tech.eu
последний пост 1 час назад
PLD Space raises €180M, EIF makes largest defence investment yet, and February funding rebounds
PLD Space raises €180M, EIF makes largest defence investment yet, and February funding rebounds PLD Space raises €180M, EIF makes largest defence investment yet, and February funding rebounds

💸. This week, we tracked more than 60 tech funding deals worth over €1 billion and over 15 exits, M&A transactions, rumours, and related news stories across Europe.Alongside the week’s top funding...

1 час назад @ tech.eu
SheBuilds goes global as Lovable offers free AI app-building access on International Women’s Day
SheBuilds goes global as Lovable offers free AI app-building access on International Women’s Day SheBuilds goes global as Lovable offers free AI app-building access on International Women’s Day

On 8th March (International Women’s Day), Lovable is making its platform completely free globally for 24 hours to celebrate SheBuilds, Lovable’s program spotlighting women building software across the...

5 часов назад @ tech.eu
“We are at the starting line” of open banking payments, says Stripe-backed TrueLayer CEO
“We are at the starting line” of open banking payments, says Stripe-backed TrueLayer CEO “We are at the starting line” of open banking payments, says Stripe-backed TrueLayer CEO

The CEO of a prominent UK open banking fintech says the adoption of pay by bank, which is an alternative to card payments, is only "at the starting line". TrueLayer CEO and co-founder Francesco Simo...

8 часов назад @ tech.eu
TaxDown secures €4M from BBVA Spark to enhance its AI solution
TaxDown secures €4M from BBVA Spark to enhance its AI solution TaxDown secures €4M from BBVA Spark to enhance its AI solution

Madrid-based TaxDown hassecured €4 million in financing from BBVA Spark. The funding is supported bythe European Union’s NextGenerationEU program and the European Investment Fund(EIF), with additional...

8 часов назад @ tech.eu
Revolut makes fresh bid for US banking licence
Revolut makes fresh bid for US banking licence Revolut makes fresh bid for US banking licence

Revolut is making a fresh attempt to secure a US banking licence, it said today, as it scaled up its ambitions on the US market.Revolut, valued at $75bn, hailed the filing for the US bank charter with...

1 day, 2 hours назад @ tech.eu
Validio closes $30M Series A to address enterprise data quality challenges
Validio closes $30M Series A to address enterprise data quality challenges Validio closes $30M Series A to address enterprise data quality challenges

Validio, an agentic enterprise datamanagement platform, has raised $30 million in Series A funding led by Plural,with participation from existing investors and angels including Lakestar, J12Ventures, ...

1 day, 2 hours назад @ tech.eu
Cheer Games closes $4.5M pre-seed round for mobile gaming platform
Cheer Games closes $4.5M pre-seed round for mobile gaming platform Cheer Games closes $4.5M pre-seed round for mobile gaming platform

Cheer Games, a mobile puzzle game studio, has raised $4.5 million in a pre-seedfunding round led by Makers Fund, with participation from Play Ventures and agroup of angel investors.Foundedby former se...

1 day, 2 hours назад @ tech.eu
Wilbe opens White City lab in London to remove infrastructure bottlenecks for science startups
Wilbe opens White City lab in London to remove infrastructure bottlenecks for science startups Wilbe opens White City lab in London to remove infrastructure bottlenecks for science startups

Wilbe, the venture fund and platform that trains and backs scientists to build companies from day one, today announces the launch of its first dedicated lab facility in White City, London.To date, Wil...

1 day, 4 hours назад @ tech.eu
French quantum startup Pasqal to go public via SPAC at $2BN valuation
French quantum startup Pasqal to go public via SPAC at $2BN valuation French quantum startup Pasqal to go public via SPAC at $2BN valuation

A French quantum computing startup co-founded by a Nobel Prize winner is going public via a SPAC (Special Purpose Acquisition Company), with a $2bn valuation. Pasqal is merging with SPAC vehicle Bleic...

1 day, 5 hours назад @ tech.eu
From energy transition to deeptech growth: the Swedish tech ecosystem
From energy transition to deeptech growth: the Swedish tech ecosystem From energy transition to deeptech growth: the Swedish tech ecosystem

In 2025, European tech investment reached €72 billion,making it the second-strongest year of the past three. Sweden raised €4.1 billion, ranking fifth among European countries by total funding.Investm...

1 day, 6 hours назад @ tech.eu
UniverCell lands €30M Series B to advance European lithium-ion cell manufacturing
UniverCell lands €30M Series B to advance European lithium-ion cell manufacturing UniverCell lands €30M Series B to advance European lithium-ion cell manufacturing

UniverCell, a European manufacturer of high-performance lithium-ion battery cells and electrodes, has raised a €30 million Series B financing round. The round was co-led by the DeepTech & Climat...

1 day, 7 hours назад @ tech.eu
FIRSTPICK raises €25M to find the Baltics’ next breakout founders
FIRSTPICK raises €25M to find the Baltics’ next breakout founders FIRSTPICK raises €25M to find the Baltics’ next breakout founders

Vilnius-based first-check VC fund FIRSTPICK has launched a new €25 million fund focused on early-stage investments. The aim is to support Baltic founders who don’t fit the typical VC mold. No FAANG b...

1 day, 8 hours назад @ tech.eu
Shape the Next Decade: VivaTech 2026 Startup Challenges are Now Open! [Sponsored]
Shape the Next Decade: VivaTech 2026 Startup Challenges are Now Open! [Sponsored] Shape the Next Decade: VivaTech 2026 Startup Challenges are Now Open! [Sponsored]

Paris is set to host the 10th-anniversary edition of VivaTech from June 17 to 20, 2026. Since its launch in 2016 by Publicis Groupe and Les Échos-Le Parisien Groupe, VivaTech has cemented its position...

1 day, 8 hours назад @ tech.eu
European Tech.eu Pulse: key trends and investment in February
European Tech.eu Pulse: key trends and investment in February European Tech.eu Pulse: key trends and investment in February

At Tech.eu, we keep track of the investment landscape with data-driven insights. Our Tech.eu Insiders enjoy unlimited, exclusive access to all our content, including market-intelligence analysis, re...

1 day, 9 hours назад @ tech.eu
February funding rebounds to €7.8B as UK startups capture the lion’s share of European capital
February funding rebounds to €7.8B as UK startups capture the lion’s share of European capital February funding rebounds to €7.8B as UK startups capture the lion’s share of European capital

A total of 296 deals were recorded, including 11 rounds above €100 million, with Nscale’s €1.18 billion debt financing standing as the month’s largest transaction.Haberin devamını okumak için tıklayın...

1 day, 9 hours назад @ tech.eu
TechCrunch: Europe TechCrunch: Europe
последний пост 2 weeks, 3 days назад
European Parliament blocks AI on lawmakers’ devices, citing security risks
European Parliament blocks AI on lawmakers’ devices, citing security risks

EU lawmakers found their government-issued devices were blocked from using the baked-in AI tools, amid fears that sensitive information could turn up on the U.S. servers of AI companies.

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

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

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

4 months, 3 weeks назад @ techcrunch.com
European airports still dealing with disruptions days after ransomware attack
European airports still dealing with disruptions days after ransomware attack

Four major European airports in Berlin, Brussels, Dublin, and London continue to have flight delays due to a cyberattack on Collins Aerospace, a provider of check-in systems.

5 months, 2 weeks назад @ techcrunch.com
EU cyber agency confirms ransomware attack causing airport disruptions
EU cyber agency confirms ransomware attack causing airport disruptions

A cyberattack targeting Collins Aerospace, a provider of airport check-in systems, sparked delays and disrupted flights across Europe over the weekend.

5 months, 2 weeks назад @ techcrunch.com
Dawn Capital’s Shamillah Bankiya breaks down the state of the Euro venture market
Dawn Capital’s Shamillah Bankiya breaks down the state of the Euro venture market

Dawn Capital’s latest partner, Shamillah Bankiya, stopped by Equity this week to talk about the European landscape and the biggest misconceptions Americans have about the European startup world.

5 months, 2 weeks назад @ techcrunch.com
Why European founders are winning (and it’s not about working less)
Why European founders are winning (and it’s not about working less)

Europe’s startup scene is having a moment, with European unicorns multiplying and American VCs setting up shop across the pond. But while European funding dominates the early stages, late-stage capital still flows primarily from the U.S. So what does this mean for European founders, and how is the continent carving out its own identity in […]

5 months, 2 weeks назад @ techcrunch.com
Lyft and China’s Baidu look to bring robotaxis to Europe next year
Lyft and China’s Baidu look to bring robotaxis to Europe next year

The companies want to launch the robotaxi services in Germany and the U.K. first, pending regulatory approval.

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

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

8 months, 3 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.

8 months, 4 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, 1 week назад @ techcrunch.com