Latest Tech News

Stay updated with the latest in technology, AI, cybersecurity, and more

Filtered by: host Clear Filter

We rewrote the Ghostty GTK application

August 14, 2025 We just completed rewriting the Ghostty GTK application fully embracing the GObject type system from Zig and also verifying with Valgrind every step of the way. The result is a more feature rich, stable, and maintainable Ghostty on Linux and BSD. There are multiple interesting, technical topics from this process, but I want to focus in on two (1) interfacing with the GObject type system from Zig and (2) verifying a GTK application with Valgrind and reflecting on the memory issu

We Rewrote the Ghostty GTK Application

August 14, 2025 We just completed rewriting the Ghostty GTK application fully embracing the GObject type system from Zig and also verifying with Valgrind every step of the way. The result is a more feature rich, stable, and maintainable Ghostty on Linux and BSD. There are multiple interesting, technical topics from this process, but I want to focus in on two (1) interfacing with the GObject type system from Zig and (2) verifying a GTK application with Valgrind and reflecting on the memory issu

Reverse Proxy Deep Dive: Why Load Balancing at Scale Is Hard

This post is part of a series. Part 1 - A deep dive into connection management challenges. Part 2 - The nuances of HTTP parsing and why it’s harder than it looks. Part 3 - The intricacies of service discovery. Part 4 - Why Load Balancing at Scale is Hard. Load Balancing One of the most critical roles for a reverse proxy is load balancing requests across different upstream hosts. From a list of upstream servers, the proxy must decide where each incoming request should go. The primary goals

A large number of protocols on Ethereum and Solana blockchains have no revenue

Have you heard of disguised unemployment? It refers to a situation where a portion of the workforce appears to be employed, but isn't contributing to the economy's output. Consider the massive capital expenditure loss from ghost cities, which represent unoccupied infrastructure. Something similar can be said for the top smart contract blockchains, which hosts hundreds of decentralized protocols. Of these, only a minority are generating revenue, while the rest produce no yield, loosely represent

New adhesive surface modeled on a remora works underwater

Most adhesives can’t stick to wet surfaces because water and other fluids disrupt the adhesive’s bonding mechanisms. This problem, though, has been beautifully solved by evolution in remora suckerfish, which use an adhesive disk on top of their heads to attach to animals like dolphins, sharks, and even manta rays. A team of MIT scientists has now taken a close look at these remora disks and reverse-engineered them. “Basically, we looked at nature for inspiration,” says Giovanni Traverso, a prof

Substack rival Ghost connects to the open social web with its latest public release

After months of beta testing, newsletter platform Ghost has shipped a new version of its software, Ghost 6, that allows its publishers to share their long-form content natively with the broader open social web. That means in addition to publishing their newsletters to the web, RSS, and sending them out via email, Ghost’s users can also natively connect with services like the decentralized X rival Mastodon; Meta’s Threads; Flipboard; WordPress sites that have integrated with ActivityPub, Surf, an

One of the biggest newsletter platforms now syndicates to Bluesky and Mastodon

is a news editor covering technology, gaming, and more. He joined The Verge in 2019 after nearly two years at Techmeme. Posts from this author will be added to your daily email digest and your homepage feed. Newsletter platform Ghost now lets publishers syndicate their posts across social web platforms like Bluesky, Threads, and Mastodon. With Ghost’s free social web syndication feature, which is built on top of the ActivityPub protocol, “just as people can visit your Ghost website in any bro

Airbnb guest says host used AI-generated images in false $9,000 damages claim

WTF?! One of the many fears about AI use becoming widespread is that people can now alter images – sometimes convincingly – without any technical skills. An example of this surfaced recently when an Airbnb guest said a host manipulated photos in a false £12,000 ($9,041) damage claim. The incident took place earlier this year when a London-based woman booked a one-bedroom apartment in New York's Manhattan for two-and-a-half months while she was studying, reports The Guardian. She decided to leav

James Gunn Keeps Teasing His Next Superman Movie

Could Godzilla x Kong introduce a deep-cut new monster? Kevin Bacon wants you to see the new Toxic Avenger. Plus, Hostel is heading to Peacock for a new horror streaming series with Paul Giamatti. Spoilers now! James Gunn/Superman In response to a fan on Threads (via Deadline), James Gunn revealed he’s begun writing his previously teased DC film, in which “Superman has a major role,” but the project is “not Superman 2.” Godzilla X Kong: Supernova In a since-expired Instagram story posted by

6 reasons why I prefer self hosted apps — and why you should too

Dhruv Bhutani / Android Authority Lately, there’s a lot of hype around self-hosting and running your own apps on a home lab or NAS. But you might be wondering what you stand to gain from it? After all, Google, Apple, and many others offer perfectly competent app suites. That’s what I thought too. But for the last few years, I’ve dived deep into the world of open source and self-hosting. And if you’re curious why, saddle up — I’ve got some thoughts to share. When I first dived into self-hosting

Topics: apps hosting open self ve

What is gVisor?

It has been a really long time since I last wrote something here as life happens, things get busier, etc etc. I am now trying to get back into writing things down and here we go! So, imagine a tool or a service that allows you to run some arbitrary code via a shell. Either through a ssh or more commonly, via a web terminal. How does these tools isolate your code from other people’s code and vice versa ? How come you cannot see other people code or processes ? The first thing you probably be th

Best WordPress Hosting for Smooth Website Operation in 2025

Some of these services don't offer as much customer support as the best services, don't offer as many security features or lack an uptime guarantee. You still might find a service that works for you. HostPapa HostPapa is a Canadian web hosting company with plans available in numerous currencies, including CAD, Euros and the Australian dollar. In fact, the option to pay in Canadian dollars is one of the primary reasons I chose HostPapa -- it’s the company I’ve used for my personal websites sinc

Ask HN: How will the OSA affect small Mastodon instances?

I am not currently a user of Mastodon, but I have some interest in the project. I was looking at some stuff that seemed to indicate to me that the OSA could make it difficult to self host Mastodon without providing age verification. I was then reading the provisions and realsised that it didn't really affect you unless you have at least 3 million monthly users, so in theory would not affect self hosters with only a few users. But then I thought that if you are federated with a very large instanc

The first company to complete a fully successful lunar landing is going public

Firefly Aerospace seeks to raise more than $600 million through a public stock offering, an arrangement that would boost the company's market valuation to near $5.5 billion, according to a document filed with the SEC on Monday. The launch of Firefly's Initial Public Offering (IPO) comes as the company works to build on a historic success in March, when Firefly's Blue Ghost lander touched down on the surface of the Moon. Firefly plans to sell 16.2 million shares of common stock, at a price of be

Resizable structs in Zig

In this post I will make the case for the concept of a “runtime resizable struct” in Zig. I will then design an API by exploiting Zig’s powerful comptime functionality. If you want to skip straight to the implementation, a minimal proof of concept is available as a package on GitHub. Zig has support for many kinds of collection types in its standard library. All of them can broadly be broken down to two primitive backing types for contiguous data storage: [N]T – arrays, when you always know t

Resizable Structs in Zig

In this post I will make the case for the concept of a “runtime resizable struct” in Zig. I will then design an API by exploiting Zig’s powerful comptime functionality. If you want to skip straight to the implementation, a minimal proof of concept is available as a package on GitHub. Zig has support for many kinds of collection types in its standard library. All of them can broadly be broken down to two primitive backing types for contiguous data storage: [N]T – arrays, when you always know t

Animated Cursors

Tattoy now supports animated cursors. It uses the same format as Ghostty, therefore rendering the cursor using custom shaders. Here are some popular Ghostty cursors, that you can use out-of-the-box with Tattoy. Even though Tattoy supports Ghostty cursors its rendering is quite different. Ghostty renders the cursor using actual pixels whereas Tattoy renders using UTF8 text-based "pixels", namely "▀" and "▄". This means that Tattoy cursors sometimes miss out on the subtleties of Ghostty cursors,

Engadget Podcast: A taste of iOS 26, iPadOS 26, macOS 26 and more

We’ve been playing around with the developer betas of Apple’s latest software, and now that we’ve spent time with iOS 26, Liquid Glass and more on actual devices, we have thoughts. From representation in Genmoji and Live Translation adventures to Apple Intelligence musings, our hosts Cherlynn Low and Mat Smith share what you can expect on your iPhones later this year. We also go over our reviews of the Samsung Galaxy Watch 8 and Galaxy Z Flip 7, as well as Microsoft’s SharePoint server vulnerabi

The future is not self-hosted

Hey friends 👋, A few months ago, Amazon announced that Kindle users would no longer be able to download and back up their book libraries to their computers. Thankfully, I still have access to my library because I saw this video by Jared Henderson warning of the change and downloaded all ~400 of my books immediately. But for those that didn't, the only way for them to view the books they own is through a Kindle or the Kindle app. Which raises the question: do they even own those books? If you

Surfshark vs. CyberGhost: Which VPN should you get?

Allison Murray/ZDNET Surfshark and CyberGhost are consistently ranked among the top VPNs. They are high-value yet relatively affordable VPNs, which is why most users love them. Also: NordVPN vs Surfshark One unique thing about Surfshark is that there's no cap on the number of devices you can connect. It shares a lot with NordVPN, especially from a security point of view. But it's not as streaming-centered as CyberGhost. Also, I had minor but persistent server connection issues with the app, b

Best email hosting services 2025: My top picks for personal and business use

Reliable, trustworthy personal and business email hosting is in demand more than ever. Free, basic email addresses are useful, but if you want a professional, custom email address or more control over business-related communication, you'll want to sign up with a dedicated email hosting provider. These services can also provide better security, more storage, and even AI tools to improve your communication channels. I've found the best email hosting services for individuals, small businesses, an

At Least One Familiar Face Won’t Be Back for ‘Practical Magic 2’

Clay McLeod Chapman’s Ghost Eaters is coming to the big screen. Get a creepy teasing look at IT: Welcome to Derry. Plus, what’s coming on Invasion and Rick & Morty. Spoilers, away! Practical Magic 2 In a recent social media post (via Deadline), Evan Rachel Wood confirmed she “wasn’t asked” to return for Practical Magic 2, stating she believes her character, Kylie, is set to be recast. I am getting asked about this a lot, so l’ll just clear it up now;I was not asked to come back and be in the

Here's how to watch Sony's Ghost of Yōtei State of Play showcase

Sony is holding a State of Play livestream dedicated exclusively to the upcoming adventure game Ghost of Yōtei. It starts on July 10 at 5PM ET. It will stream on the official PlayStation YouTube and Twitch accounts. The company promises "nearly 20 minutes" of gameplay hosted by developer Sucker Punch. The stream will also show off "new weapons, new ways to personalize your journey at the edge of Japan, new special modes and much more." The game comes out on October 2 , exclusively for PS5. For

The complete Side Events lineup at TechCrunch All Stage 2025

Boston, are you ready?! TechCrunch All Stage 2025 is about to explode with energy — and the real magic kicks off with an epic lineup of Side Events lighting up the city from July 14–17! We’re just ONE WEEK AWAY, and we couldn’t be more pumped to unveil the full Side Events schedule — your ultimate passport to game-changing connections and unforgettable moments. From high-voltage networking mixers to mind-blowing innovation showcases, this is where Boston’s boldest tech minds come to connect, cr

The Novelty of the Arpanet

If you run an image search for the word “ARPANET,” you will find lots of maps showing how the government research network expanded steadily across the country throughout the late ’60s and early ’70s. I’m guessing that most people reading or hearing about the ARPANET for the first time encounter one of these maps. Obviously, the maps are interesting—it’s hard to believe that there were once so few networked computers that their locations could all be conveyed with what is really pretty lo-fi car

Yurei – Open source social media researcher powered by Exa AI API and YouTube v3

yurei app still in progress, not live on https://yurei.app/ yet, but you can clone it and try it out a simple opensource social media researcher powered by exa ai api and youtube v3. built with vercel's ai sdk. what it does: searches youtube for videos searches reddit for posts searches linkedin (kinda fucked rn, working on it) using grok-21212 as the llm how to install clone this repo npm install or yarn make a .env.local with: NEXT_PUBLIC_URL=http://localhost:3000 # For development NE

A simple opensource social media researcher powered by exa ai api and youtube v

yurei app still in progress, not live on https://yurei.app/ yet, but you can clone it and try it out a simple opensource social media researcher powered by exa ai api and youtube v3. built with vercel's ai sdk. what it does: searches youtube for videos searches reddit for posts searches linkedin (kinda fucked rn, working on it) using grok-21212 as the llm how to install clone this repo npm install or yarn make a .env.local with: NEXT_PUBLIC_URL=http://localhost:3000 # For development NE

Aeza Group sanctioned for hosting ransomware, infostealer servers

The U.S. Department of the Treasury has sanctioned Russian hosting company Aeza Group and four operators for allegedly acting as a bulletproof hosting company for ransomware gangs, infostealer operations, darknet drug markets, and Russian disinformation campaigns. The Treasury's Office of Foreign Assets Control (OFAC) claims that Aeza's services were utilized by the BianLian ransomware gang, for RedLine infostealer panels, and by BlackSprut, a Russian darknet marketplace that sold drugs to indi

PlanetScale for Postgres

Announcing PlanetScale for Postgres By Sam Lambert | July 1, 2025 Today we are announcing the private preview of PlanetScale for Postgres: the world’s fastest Postgres hosting platform. You can request access to PlanetScale for Postgres by visiting this link. We are already hosting customers' production workloads with incredible results. Convex, the complete backend solution for app developers, is migrating their reactive database infrastructure to PlanetScale for Postgres. Read more about t

BlueHost review: An easy way to get started with web hosting, but mixed performance

ZDNET's key takeaways Bluehost is an easy web hosting service to get started with, especially if you're new to WordPress or building a site for the first time It runs pretty well in the US, but if your audience is outside the country, you might notice slower speeds, and I've had downtime issues in the past The intro pricing is cheap, but once the first term ends, expect higher bills and extra charges for things like backups and privacy. View now at Bluehost Bluehost isn't new to the game. It'