This is a sample newsletter. Sign up to get email delivery!
Hello there!
It’s been a while since you heard from me. I’ll tell you why, but first the news! There’s been quite a bit of news since we last talked, I’ll pick the top three stories:
NVIDIA Jetson AGX Thor
Jetson AGX Thor is on its way next month. Here are the specs and some images: https://www.nvidia.com/en-us/autonomous-machines/embedded-systems/jetson-thor/#dev-kit-specs

Physically it appears to be the size of the earlier Jetson AGX Orin internally, but next to the compute module is the cooling solution. The added fan appears to double the width of the footprint of the module itself. The power is configurable between 40W and 130W, so the extra cooling is needed to shoo those BTUs away.
There are some interesting claims, and the 128GB memory is certainly welcome. It should be fun to work with, as there are quite substantial architectural and system I/O changes coming.
We skipped over a NVIDIA chip generation leaping from the Orin to the Thor, so we should expect good things to happen. The introduction price appears to be $3499 USD, so this is directly aimed at people with serious applications and compute needs.
RealSense spins out of Intel
The RealSense camera group spun out of Intel, and raises $50 million.
First off, you can tell they’re serious—the domain name (realsenseai.com) even has ‘AI’ in it! If you remember over the last few years, the way that Intel handled the RealSense handover was nearly comical. Most developers assumed that the cameras were discontinued, when in fact the product had only been sent over to another group within Intel. In a lot of ways, this should be better for developers. It can be difficult to act entrepreneurial in a large company. At the same time, RealSense raised some money so they should be able to keep developing the cameras.
Dustin Franklin
Dustin Franklin of NVIDIA has retired! Dusty was a developer evangelist for the Jetson, and I’m sure if you’ve used the Jetson at all you have used his work. He led the community Jetson AI Research Lab and wrote jetson-containers. The Jetson community owes a lot to Dusty, and we certainly appreciate his efforts.
I’ll tell you a quick story. Back in early 2015 I went up to NVIDIA to talk about the Jetson. At the time, Dusty was working at General Electric. During one of the meetings, a couple of NVIDIA folks told me excitedly that they were going to hire Dusty! Just like you can get a dog all excited by acting excited yourself, I was all enthusiastic too! I may have deflated the balloon a little when I excitedly asked, “Who’s Dusty?”
Over the next 10 years we worked quite a bit together. We did videos, and interviews on the NVIDIA YouTube channel. We also did some Deep Learning Institute (DLI) videos. He is one of the main Jetson Open Source advocates, and I always appreciate someone as smart and articulate as Dusty. While he will be missed in that role, he ain’t dead. I look forward to our paths crossing again in the future.
If you’ve wondered why I’ve been quiet lately, it’s because I’ve been working on improving the web experience for JetsonHacks. There are different components I will be rolling out over time. The first is a feature I call “Video Storyboards”. This allows combining video with synchronized text and media. This is Stage I, with more features to add. These are intended to work on desktop machines, preferably with 4K monitors or better.
Here are a couple of examples. The first is an interview by Cleo Abrams of Jensen Huang
The second is a very good talk by Andrej Karpathy.
You’ll have to tell me what you think.
I went down a bit of a rabbit hole building these, which consumed all of my attention. Now that I’m nearing completion, you should start seeing more regular content again.
On Software Stability
Over the last few months, we have seen major parts of the Jetson operating system cause significant problems. A few months ago, an upgrade to Docker resulted in previously working containers becoming unable to launch. A couple of weeks ago, an upgrade to Snap, the Ubuntu package manager and app launcher, prevented many applications from launching.
In both cases, updates provided by groups outside of NVIDIA rendered the Jetson unusable for many common tasks. This raises important questions: Should we auto-update our software? How much responsibility lies with NVIDIA versus the broader Jetson ecosystem?
If you are an experienced developer, you know that auto-updating your development system is usually a bad idea. Every professional development team maintains an “approved” operating environment. Larger companies have strict policies about what software can be installed, and precisely when and how machines are upgraded. This is especially true for development environments, particularly in embedded systems.
Even security patches must undergo at least minimal testing before deployment.
Then the question arises: “If large companies manage their projects like that, why don’t individuals do the same?” There are several reasons.
The first is that most individuals don’t have the meticulous maintenance habits of a corporate system administrator. Often this is simply because they have other responsibilities—such as having a life—to attend to.
The second reason is that many people enjoy having the “latest and greatest,” even if there may be pain associated with being at the forefront. While most don’t utilize new operating system features, the desire to have them remains strong.
A third reason is that some people simply don’t know better. By ‘experienced developer,’ we mean someone who has been bitten by bugs and issues so often that they instinctively recognize pitfalls and actively avoid them.
What experienced developers do is lock down their development environments as tightly as possible. If updates occur during a project, they delay applying them until as late as practical. There might be a critical fix in an update—but if that fix doesn’t affect their project directly, seasoned developers wait.
I’m sure you’re familiar with Eric S. Raymond’s 1999 book, ‘The Cathedral and the Bazaar’. Here’s the thing: If your company delivers an operating system, you’d better ship something stable. When you update that system, you bear the responsibility.
You can ask Microsoft or Apple about that. You don’t want villagers coming after you with pitchforks.
On the other hand, consider Linux. There’s a guard at the kernel gate because Linus Torvalds oversees contributions. However, the GNU utilities and the rest of the system are rather ad hoc.
The original idea behind Unix was that the kernel and accompanying programs are “little gems of code”—elegant, concise, and meaningful. They represented the pinnacle of computing.
That might have been true in the days when Thompson and Ritchie invented Unix. After all, they were quite clever. They packed substantial functionality into just 56KB of memory on their PDP-11/20. You read that right: the operating system and applications had to fit into just 56 * 1024 bytes.
Here in 2025, developers have slightly more memory to work with. Countless contributors enhance the Linux kernel and GNU utilities, providing many gems. Yet, as time goes on, let’s say that less than stellar contributions sneak in.
Open-source “free software” attracts many developers. Continuous improvement means each gem is frequently polished. Among developers, those who say “let’s remove some features” are quite rare. Instead, developers tend to add new functionality.
Each developer has their own idea of what “better” means. Take Docker 28.X as an example. Docker isn’t an individual contributor; it’s a company investing resources to push their product development forward.
One important Docker customer segment is server farms. Time is money, and security matters immensely. Profiling revealed potential time savings by improving network stack efficiency—great news! After implementation, Docker utilized `iptables` in the Linux kernel to achieve these gains.
However, Jetson’s default Linux kernel lacked the necessary modules to support these changes. After flashing or upgrading Jetson Linux, Docker’s new version installs, but containers fail to launch due to this incompatibility.
This problem compounds across individually maintained packages. Developers strive to improve their software, yet what is “better” to them might be irrelevant to average Jetson users. An edge device sees little benefit from a faster Docker network stack or finer permission controls in Snap—but these updates broke Jetson Linux nonetheless.
I’ve long viewed updates as potential threat vectors, especially on work machines. For major operating system revisions, I prefer getting a new machine altogether. Though setting up a new environment and migrating data is painful, it’s the only reliable method to ensure a stable configuration for comparison. Major point releases bring disruption, which complicate straightforward transfers.
This issue is further muddied by what started as Google’s “perpetual beta” trend. Conceptually, Google needed only to update their servers, allowing frequent deployments with the fallback excuse, “the software is beta.” This initially worked well. Unfortunately, it permeated software culture to the point where many companies now ship inadequately tested products.
So, what can you do to protect yourself? The principles haven’t changed since Unix’s creation. Maintain regular backups, ensuring you can revert to a known stable state. Use modern version control tools to adopt a more granular backup strategy.
You must decide whether to enable automatic updates. If behind a secure firewall on a local network, disabling auto-updates can be relatively safe. If exposed to the open internet, aggressively apply security updates to remain protected.
When planning projects, my rule of thumb is to expect one lost day in a ten-day development cycle. Issues inevitably arise; sometimes they’re the developer’s fault, sometimes they’re beyond control. With looming deadlines, plan for two lost days out of ten—people generally don’t respond well under pressure.
Quick Takeaways:
– Avoid automatic updates on critical development systems.
– Delay major updates until essential or near project completion.
– Always maintain regular backups and use version control.
– Allocate buffer days in your development cycle to handle unexpected issues.
6 Responses
Great newsletter Jim,
Factual, fun and informative as ever.
Was wondering what Nvidia have been doing with the Jetson Orin Nano Super Developer Kit?
I wanted to get one to do more AI experimentation but man they are scarce. The main British suppliers haven’t, seemed, to have had any for ages. I read in the forums (a few months back) they were upping procurement, etc but are they just selling out as quick as stock comes in or something else?
Thank you for the kind words.
As far as the supply issue, what I’ve heard so far is that they are still filling backorders. I received my January order in early June, and I know some folks who have backorders that are still waiting. But I’ve also heard people that are receiving their orders too.
My understanding is that the backlog should be clear and things back to ‘normal’ in late August. But a while back that was supposed to be July. Backorders are being filled first, so if you’re looking to get your hands on one soonest, that’s definitely the way to go.
Apparently the little rascals are in very high demand, but hopefully they’ll catch up soon. Thanks for reading!
Thanks yet again for your deeply insightful Newsletters and years of classic videos and how-to communications keeping Jetson devs up and running! You are definitely the go-to guru with the grandmaster senior engineer perspectives and tech video star production values!
Good to hear about your work on your new Jetson Hacks systems. You will be especially needed and appreciated as we all move ahead during these chaotic days.
With Dusty’s regrettable (but well-wished) retirement from the formidable NV Jetson team, they need a new public-facing lead for sorting legacy JetPack issues as well as smoothing the software transitions to support AGX Thor.
Like GTC reservation holders and others, I’m eyeing the current August non-release of DGX Spark, up against the aggressive NV responses this year to multiple Blackwell fab, packaging, and physical issues. This late, Spark GPU specs are still unpublished, while AGX Thor DK tech specs seem complete. Arrow seems to indicate a 6 month lead time for advance orders.
Strange days indeed.
Best regards!
And onwards!
Thank you so much for the kind words, and taking the time to comment. I am glad you find the content useful!
There seems to be some type of retirement bug over at NVIDIA, I know several people there who have taken theirs. I can’t imagine why. You give people several to tens of millions of dollars and they aren’t interested in working anymore! This is unprecedented large company growth; it will be interesting to read the business studies several years from now to find out what happened.
I only know a little about the Spark. I know a couple of people on the team, they’ve brought in the A team to get things on track. I do know that they are in crunch mode for the roll out, which is happening very soon. I get texts back like “Can’t talk, CRUNCH”. That’s the top secret code for “I can’t talk, because it’s CRUNCH time”. It’s not far away as of this writing.
One of the differences between Thor and Spark is that Spark is consumer facing, so there’s extra work that has to be done. While Thor and Spark are similar, they have a different CPU complex. The Thor has a 14 core automotive engineering core, the Spark has a more consumer oriented 20 cores, 10 high power and 10 low power. With the Jetson, you are explicitly selling to developers who you can throw the hardware to and “fix it in the mix”. With consumers, it’s a different level of preparation that is needed. I do know that NV wants to ship on time; but they have to balance that against shipping product before it’s ready, or it doesn’t make it out of Q/A.
My understanding is that it’s the same GPU spec as Thor.
One of the things I’ve found interesting about NV is that they have a “no defects” in first article policy. If you come from a more “traditional” company, you’ll usually see extra wires and traces on prototype boards. NV doesn’t let that happen, they’ve built entire systems to prevent that type of tom foolery.
They’ve been actively hiring into the Jetson group, there’s multiple people to take over Dusty’s role. Over the next few months, I’m expecting things to be much calmer, and things to get back to “normal”. Thanks for taking the time to comment, and reading the newsletter and other JetsonHacks content.
I waited a bit to thank you yet again for your latest canny professional insights on things at NV leading up to the release of DGX Spark and AGX Thor DK.
In the short meantime, your advisements were proven so right on! U Da MAN!
NV sent out a fall release update email to DGX Spark Founder’s Edition reservation holders, and today they announced availability of AGX Thor DK.
Having mentioned visiting Arrow and seeing a long Thor Dev Kit lead-time, I followed up on an earlier web quote request with an order. There were over 50 available, delivery time within a week…
So yeah, I’m (OG) first all about laboratory edge computing, and room needs to be made now on my AGX Orin DKs workbench.
BTW, the AGX Thor specs seem to show twice the 4bit TOPS of the DGX Spark; the latter is understandably currently lacking other pre-details.
The DGX Spark will safely wait, and it’s going to be most interesting watching the AI edge desktop market evolve in coming years.
~
And with all the ongoing chaos around campus, there will be so much diverting new stuff to work on, out here on the Edge!
Anyway, looking forward to your new site and getting more cool insights on Jetsons.
Best regards.
Oh, I don’t know how prescient I am about all that:
https://youtu.be/FVPE5zCte_E
I happened to have a Jetson AGX Thor sitting around at the time, but it was under a NDA. I knew that partners were shipping them at the end of August from some of the meetings we had. It’s all pretty strange; there’s what people inside NV know, then there’s the set of partners outside and what they know. The NDA varies for each party, I’ve found it’s easiest just to not ever say anything except in very vague terms rather. Otherwise the legal beagles come after me.
In any case congrats on the Thor, it’s quite the machine! And, go Bruins! My Dad was a Bruin, and they play football right down the street from me.