Published on: 2025-04-19 13:55:47
A Starbucks location in South Texas opening soon is believed to be the first 3D-printed location for the franchise. The Brownsville Texas, store, located about 20 miles from SpaceX's Starbase launch site, is made of 3D-printed concrete and will be a walk-up/drive-thru only store. Reports place its cost at under $2 million for about 1,400 square feet of espresso-pouring retail space. Instagram posts from local outlets have shown images of the site's construction for the last few months. Accordi
Keywords: 3d construction printed starbucks store
Find related items on AmazonPublished on: 2025-04-19 23:09:53
title Constraint System dated Fall 2023 author Summary of work on relax-pk At the beginning of phase 2, we weren’t sure what to do about constraints. Based on past exploration, constraints seemed to hold a lot of promise but were notoriously unreliable. A good constraint system could unify and power a number of key aspects of the dynamic medium we seek. It would allow for mechanical constructions, like a rope and pulley, that feel physically correct. It would allow for a computational model tha
Keywords: angle constraint constraints solver value
Find related items on AmazonPublished on: 2025-04-29 20:06:33
Zig's new LinkedList API (it's time to learn @fieldParentPtr) In a recent, post-Zig 0.14 commit, Zig's SinglyLinkedList and DoublyLinkedList saw significant changes. The previous version was a generic and, with all the methods removed, looked like: pub fn SinglyLinkedList ( comptime T : type ) type { return struct { first : ? * Node = null , pub const Node = struct { next : ? * Node = null , data : T , } ; } ; } The new version isn't generic. Rather, you embed the linked list node with your
Keywords: const node power std user
Find related items on AmazonPublished on: 2025-04-26 23:15:26
terser (shorter) lambda == SHORTY This library is intended to give terser syntax than C++'s lambdas, not replace C++ with lazy DSL. import shorty; using namespace shorty ::literals ; // you no longer need to remember if it's `std::less` or `std::greater` std::ranges::sort (subject, $lhs > $rhs); // filter only even subject | std::views::filter(($i % 2 ) == 0 ); // zip together and transform std::views::zip (A,B,C,D) | std::views::transform($a * $b + $c * $d); // call external function auto pyt
Keywords: args arguments auto const std
Find related items on AmazonPublished on: 2025-04-30 15:35:03
We recently rebuilt TigerBeetle’s docs site from scratch. We wanted to apply TigerStyle and first principles thinking, not only to our database but also to our docs. To give users the fastest possible experience, given how much time they spend reading, and to do this without the dependency of Docusaurus. At TigerBeetle, how we build things is as important as what we build, because methodology has a second order effect on motivation. When TigerBeetle was founded, Docusaurus was used to prototype
Keywords: build const pandoc run zig
Find related items on AmazonPublished on: 2025-05-02 08:36:24
On April 8, 2020, John Horton Conway developed symptoms of COVID-19. On April 11, 2020, he succumbed to the disease. Like so very, very many, I mourn Conway’s passing, and yet I also celebrate his life. I celebrate his accomplishments, I celebrate his curiosity, and I celebrate his skill at making important topics in mathematics engaging and interesting. One of the finest examples of that skill is the programming language FRACTRAN, the subject of this essay. Prelude John Horton Conway in 199
Keywords: const machine minsky state tape
Find related items on AmazonPublished on: 2025-05-06 15:37:29
There’s much prior art (good overview here: https://sr.ht/~bptato/chawan/#neighbors), but I’m doing something different that wants to exist. Curious as to response. Probably a few weeks off release yet but here’s a brief screencap: https://youtu.be/_Bs7BoQBoBA (Or if you prefer an asciinema: https://asciinema.org/a/9w6CMnaI9VxiykI1PgVWm4lsi ) Thoughts? The context is it’s meant for constrained environments (ultra thin client, engine runs remotely or on same machine if you like; security const
Keywords: constraints content https internet like
Find related items on AmazonPublished on: 2025-05-10 19:23:52
Creating variable duty cycle square waves with the Web Audio API Created on 4/2/2025 Updated on 4/2/2025 Lately, I've been playing around with the Web Audio API for a side project I'm working on. I am building a web-based music tracker software for creating audio in the original style of the Gameboy. To faithfully recreate the sounds of the Gameboy, I need variable duty cycle square waves. The iconic 8-bit, chiptune style of music is heavily reliant on square waves. The Web Audio API allows y
Keywords: const cycle duty square wave
Find related items on AmazonPublished on: 2025-05-11 15:02:12
Martin Uecker has started a new initiative to ensure a better const contract for C2y: change the type of string literals to a const -qualified base type, much as it is already the case in C++. Compilers support this since a very long time; some of them have this as default, some provide command line switches for that model. Nevertheless, this would be normative change and might be some burden for existing code. So, before doing this and writing papers, it would be good if we had an idea of the
Keywords: change code const options project
Find related items on AmazonPublished on: 2025-05-09 04:41:13
If you want to use Gemini’s public API, but at the same time have a safe fallback in case you have exhausted the rate limits, you can use the OpenAI TS/JS library and a few helper functions. In my particular case I needed a type-safe solution for a chartmaker app with a fallback since Gemini’s gemini-2.5-pro-exp-03-25 model is restricted to 20 request/min. First, you need to define which models you want to use so that they appear as autosuggest when you use the helper functions: type Model = C
Keywords: const gemini model openai options
Find related items on AmazonPublished on: 2025-05-11 05:54:17
Last summer I received the very fun HackPack for my birthday. Every 2 months you get a box of parts and assemble a fun hardware project. The first item in the pack was the IR turret. You control the turret with an IR remote, and can shoot the little foam bullets at things. It was pretty cool, but I’m not a huge fan of shooting things. At around the same time I saw this XKCD: I am into going outside to watch fun stuff happen outside, especially if it is when the International Space Station (IS
Keywords: azimuth const double iss position
Find related items on AmazonPublished on: 2025-05-19 10:48:45
TopoSort - Topological Sort on Dependency Graph TopoSort is a highly efficient Zig library for performing topological sort on dependency graph. This small library is packed with the following features: Building dependency graph from dependency data. Performing topological sort on the dependency graph. Generating dependence-free subsets for parallel processing. Cycle detection and cycle reporting. Support different node types. Content Installation Go to the Releases page. Pick a release
Keywords: const data node toposort zig
Find related items on AmazonPublished on: 2025-05-19 10:37:55
The smallest PubSub library possible. Zero Dependencies. 149 bytes. I wrote this article a while back. But I realized...why not just publish the code? Smaller than the competition. Built with JS13K games in mind. Such as cred which is unfortunately in need of some weight loss soon, it is almost 25KB now. If you have any ideas that may trim off even one single byte please share it. Create an issue! I don't mind. The Source This is the entire source (index.js). let t = new EventTarget ( ) ;
Keywords: const evt function message pubsub
Find related items on AmazonPublished on: 2025-05-20 19:26:05
In Brief Construct Capital, an early-stage venture capital firm that invests in startups applying technology to sectors like manufacturing, transportation, and defense, has closed its third fund with $300 million in capital commitments. The Washington, D.C.-based firm previously raised a $225 million second fund and a $75 million capital pool for later-stage companies in 2022. While many emerging managers are struggling to raise fresh funds, Construct’s capital haul underscores institutional
Keywords: capital construct defense firm million
Find related items on AmazonPublished on: 2025-05-19 07:00:56
Automated tests are important. Without them, programmers waste a huge amount of time manually checking and fixing their code. Unfortunately, many automated tests also waste a huge amount of time. The easy, obvious way to write tests is to make broad tests that are automated versions of manual tests. But they’re flaky and slow. Folks in the know use mocks and spies (I say “mocks” for short in this article) to write isolated interaction-based tests. Their tests are reliable and fast, but they te
Keywords: code const infrastructure test tests
Find related items on AmazonPublished on: 2025-05-24 06:11:07
Building Statically Linked Go Executables with CGO and Zig This is a short post about how to create a statically linked Go executable that calls in to CGO dependencies using Zig. The full code for this post is available in this repo. By default, if you're using CGO, the executable you generate dynamically links, but I frequently want to statically link to avoid runtime errors. First, let's create a zig library, with zig init, then trim back the excess stuff it generates so we're left just wit
Keywords: build const main std zig
Find related items on AmazonPublished on: 2025-05-25 22:33:00
We are really excited to share our initial steps towards building clean, an embedded DSL and formal verification framework for ZK circuits in Lean4. As we recently shared, Zero Knowledge circuits are full of bugs, but fortunately, techniques like formal verification can provide a huge confidence boost in the correctness of ZK circuits. Clean enables us to define circuits in Lean4, specify their desired properties, and – most importantly – formally prove them! This work is part of the zkEVM Form
Keywords: circuit constraint constraints input witness
Find related items on AmazonPublished on: 2025-05-26 15:00:00
is transportation editor with 10+ years of experience who covers EVs, public transportation, and aviation. His work has appeared in The New York Daily News and City & State. Caterpillar is adding lidar to its heavy-duty construction equipment after striking a deal with Luminar, which makes the laser sensor for a number of automakers and self-driving car operators. Caterpillar says it will integrate Luminar’s hardware into its Cat Command autonomy platform, which it uses to power self-driving f
Keywords: caterpillar construction driving equipment luminar
Find related items on AmazonPublished on: 2025-05-25 07:51:12
P1306 gives us compile time repetition of a statement for each element of a range - what if we instead want the elements as a pack without introducing a new function scope? In this blog post we’ll look at the expand helper, expansion statements and how arbitrary ranges can be made decomposable via structured bindings to reduce the need for IILEs. Element-wise expansion The expand pattern The reflection features introduced in P2996 by themselves are sufficient to iterate over a compile time r
Keywords: auto constexpr operator std template
Find related items on AmazonPublished on: 2025-05-27 13:52:59
By Ben Houston, 2025-03-21 Agentic coding has recently gained traction as an innovative approach where autonomous software agents leverage advanced Large Language Models (LLMs) to perform tasks traditionally done by developers. These agents can autonomously write code, execute commands, and debug software, dramatically enhancing developer productivity. But what's the simplest way you can create a functional agentic coder? I explored this challenge and built mycoder-mini, an extremely minimal a
Keywords: block commands const content mycoder
Find related items on AmazonPublished on: 2025-06-06 02:55:27
It’s the aquatic buddy comedy movie we never knew we needed. Scientists in New Zealand have released footage of an octopus appearing to ride the back of a shortfin mako shark. Researchers at University of Auckland documented the real-life sharktopus during a December 2023 expedition in the Hauraki Gulf near Kawau Island. The sighting was unusual for several reasons, not the least of which is that octopuses aren’t known for hanging out near the water’s surface. Rochelle Constantine, a professor
Keywords: constantine mako octopus shark sharks
Find related items on AmazonPublished on: 2025-06-06 05:27:46
AgentKit Build multi-agent networks with deterministic routing and rich tooling via MCP. Documentation · Blog · Community AgentKit offers more deterministic and flexible routing, works with multiple model providers, embraces MCP (for rich tooling), and supports the unstoppable and growing community of TypeScript AI developers. Combined the Inngest Dev Server to start locally and its orchestration engine, making your Agents fault-tolerant when deployed to the cloud. Core concepts Agents : LL
Keywords: agent agents const network state
Find related items on AmazonPublished on: 2025-06-07 22:00:13
Last year, we reported on an exciting hint of new physics in the first data analysis results from the Dark Energy Spectroscopic Instrument (DESI)—namely that the dark energy, rather than being constant, might vary over time. Granted, those hints were still below the necessary threshold to claim discovery and hence fell under the rubric of "huge, if true." But now we have more data from DESI, combined with other datasets, and those hints have gotten significantly stronger—so much so that Mustaph
Keywords: constant dark desi energy universe
Find related items on AmazonPublished on: 2025-06-12 22:58:43
The first satellite of the Google-backed FireSat constellation successfully made it to orbit over the weekend, kicking off what promises to be a new era in wildfire detection and monitoring. The constellation will keep a close eye on wildfires. When fully operational, the constellation’s more than 50 satellites will be able to image nearly all of Earth’s surface once every 20 minutes. The initial phase will consist of just three satellites, and it will revisit every point on the globe twice per
Keywords: constellation muon resolution satellite space
Find related items on AmazonPublished on: 2025-06-13 10:43:41
The first satellite of the Google-backed FireSat constellation successfully made it to orbit over the weekend, kicking off what promises to be a new era in wildfire detection and monitoring. The constellation will keep a close eye on wildfires. When fully operational, the constellation’s more than 50 satellites will be able to image nearly all of the Earth’s surface once every 20 minutes. The initial phase will consist of just three satellites, and it will revisit every point on the globe twice
Keywords: constellation muon resolution satellite space
Find related items on AmazonPublished on: 2025-06-20 06:59:16
The Federal Trade Commission asked a judge in Seattle to delay the start of its trial accusing Amazon of duping consumers into signing up for its Prime program, citing resource constraints. Attorneys for the FTC made the request during a status hearing on Wednesday before Judge John Chun in the U.S. District Court for the Western District of Washington. Chun had set a Sept. 22 start date for the trial. Jonathan Cohen, an attorney for the FTC, asked Chun for a two-month continuance on the case
Keywords: asked chun cohen constraints ftc
Find related items on AmazonPublished on: 2025-06-16 19:21:41
Paper 2025/435 Constant-Time Code: The Pessimist Case Thomas Pornin , NCC Group Abstract This note discusses the problem of writing cryptographic implementations in software, free of timing-based side-channels, and many ways in which that endeavour can fail in practice. It is a pessimist view: it highlights why such failures are expected to become more common, and how constant-time coding is, or will soon become, infeasible in all generality.
Keywords: abstract case constant pessimist time
Find related items on AmazonPublished on: 2025-06-25 10:01:07
Our Values To us, work is more than just a job. We want to provide our employees with an environment where they have the ability to constantly thrive, learn & grow. And we want everybody to feel at home and have the time of their life while building Demodesk.
Keywords: ability building constantly employees want
Find related items on AmazonPublished on: 2025-06-26 12:26:15
Real-time IoT devices need real-time action, and wrangling hog loads of data from these devices requires a simple and fast streaming pipeline. Make the data durable, and you can easily have multiple consumers that don’t skip a beat. POV: You have a shared space with your housemates and want to know if it's empty, but in the least privacy-invasive way. The Recipe: AMG8833 an infrared thermal imaging sensor – 8x8 array of infrared sensors, totaling 64 pixels measuring temperatures ranging from
Keywords: const data s2 sensor stream
Find related items on AmazonPublished on: 2025-07-07 23:02:00
What just happened? Intel announced a significant revision to the construction timeline of its Ohio One semiconductor manufacturing site in New Albany. The setback is the third substantial delay from the facility's original 2025 completion target. Intel emphasizes its commitment to the project and its ability to accelerate construction if market demand warrants. The first phase of the facility, known as Mod 1, should be finished in 2030, with chip production beginning between 2030 and 2031. The
Keywords: company construction facility intel ohio
Find related items on AmazonGo K’awiil is a project by nerdhub.co that curates technology news from a variety of trusted sources. We built this site because, although news aggregation is incredibly useful, many platforms are cluttered with intrusive ads and heavy JavaScript that can make mobile browsing a hassle. By hand-selecting our favorite tech news outlets, we’ve created a cleaner, more mobile-friendly experience.
Your privacy is important to us. Go K’awiil does not use analytics tools such as Facebook Pixel or Google Analytics. The only tracking occurs through affiliate links to amazon.com, which are tagged with our Amazon affiliate code, helping us earn a small commission.
We are not currently offering ad space. However, if you’re interested in advertising with us, please get in touch at [email protected] and we’ll be happy to review your submission.