On Tuesday, two popular tech events take place in Tampa, and you may be wondering which one you should attend. I’ll answer your question by quoting the little girl from that classic Old El Paso commerical:
Happy Saturday, everyone! Here on Global Nerdy, Saturday means that it’s time for another “picdump” — the weekly assortment of amusing or interesting pictures, comics,
and memes I found over the past week. Share and enjoy!
On Wednesday, HP’s Andrew Hawthorn (Product Manager and Planner for HP’s Z AI hardward) and I appeared on the Intelligent Machines podcast to talk about the computer that I’m doing developer relations consulting for: HP’s ZGX Nano.
You can watch the episode here. We appear at the start, and we’re on for the first 35 minutes:
Also built into the GB10 chip is a lot of RAM: 128 GB of LPDDR5X coherent memory shared between CPU and GPU, which helps avoid the kind of memory bottlenecks that arise when the CPU and GPU each have their own memory (and usually, the GPU has considerably less memory than the CPU).
NVIDIA GB10 SoC (system on a chip).
It can perform up to about 1000 TOPS (trillions of operations per second) or 1015 operations per second and can handle model sizes of up to 200 billion parameters.
Want to work on bigger models? By connecting two ZGX Nanos together using the 200 gigabit per second ConnectX-7 interface, you can scale up to work on models with 400 billion parameters.
ZGX Nano’s operating system in NVIDIA’s DGX OS, which is a version of Ubuntu Linux with additional tweaking to take advantage of the underlying GB10 hardware.
Some topics we discussed:
Model sizes and AI workloads are getting bigger, and developers are getting more and more constrained by factors such as:
Increasing or unpredictable cloud costs
Latency
Data movement
There’s an opportunity to “bring serious AI compute to the desk” so that teams can prototype their AI applications and iterate locally
The ZGX Nano isn’t meant to replace large datacenter clusters for full training of massive models, It’s aimed at “the earlier parts of the pipeline,” where developers do prototyping, fine-tuning, smaller deployments, inference, and model evaluation
The Nano’s 128 gigabytes of unified memory gets around the issues of bottlenecks with distinct CPU memory and GPU memory allowing bigger models to be loaded in a local box without “paging to cloud” or being forced into distributed setups early
While the cloud remains dominant, there are real benefits to local compute:
Shorter iteration loops
Immediate control, data-privacy
Less dependence on remote queueing
We expect that many AI development workflows will hybridize: a mix of local box and cloud/back-end
The target users include:
AI/ML researchers
Developers building generative AI tools
Internal data-science teams fine-tuning models for enterprise use-cases (e.g., inside a retail, insurance or e-commerce firm).
Maker/developer-communities
The ZGX Nano is part of the “local-to-cloud” continuum
The Nano won’t cover all AI development…
For training truly massive models, beyond the low hundreds of billions of parameters, the datacenter/cloud will still dominate
ZGX Nano’s use case is “serious but not massive” local workloads
Is it for you? Look at model size, number of iterations per week, data sensitivity, latency needs, and cloud cost profile
One thing I brought up that seemed to capture the imagination of hosts Leo Laporte, Paris Martineau, and Mike Elgan was the MCP server that I demonstrated a couple of months ago at the Tampa Bay Artificial Intelligence Meetup: Too Many Cats.
Too Many Cats is an MCP server that an LLM can call upon to determine if a household has too many cats, given the number of humans and cats.
Here’s the code for a Too Many Cats MCP server that runs on your computer and works with a local CLaude client:
from typing import TypedDict
from mcp.server.fastmcp import FastMCP
mcp = FastMCP(name="Too Many Cats?")
class CatAnalysis(TypedDict):
too_many_cats: bool
human_cat_ratio: float
@mcp.tool(
annotations={
"title": "Find Out If You Have Too Many Cats",
"readOnlyHint": True,
"openWorldHint": False
}
)
def determine_if_too_many_cats(cat_count: int, human_count: int) -> CatAnalysis:
"""Determines if you have too many cats based on the number of cats and a human-cat ratio."""
human_cat_ratio = cat_count / human_count if human_count > 0 else 0
too_many_cats = human_cat_ratio >= 3.0
return CatAnalysis(
too_many_cats=too_many_cats,
human_cat_ratio=human_cat_ratio
)
if __name__ == "__main__":
# Initialize and run the server
mcp.run(transport='stdio')
Tuesday at 5:00 p.m. at Chester H. Ferguson Law Center (Tampa): It’s that time again — CyberX Tampa Bay is back!
CyberX Tampa Bay is Tampa Bay’s premier cybersecurity celebration. Whether you’re an established professional, an emerging leader, or exploring a career in cybersecurity, this event offers valuable insights, professional connections, and an inspiring close to October, which is Cybersecurity Awareness Month.
The evening kicks off with networking over light refreshments, followed by engaging breakout sessions tailored to different career stages in cybersecurity. After another round of networking, they’;; recognize an outstanding contributor to the industry before gathering for a thought-provoking panel discussion featuring leading voices in the field. Finally, they’ll wrap up with closing remarks and an opportunity to connect with peers.
Tuesday at 5:30 p.m. at Hidden Springs Ale Works (Tampa): It’s the last Tuesday of the month, so it’s time for TampaTech Taps & Taco Tuesday, where Tampa’s tech community come to gather for great company, great beer, and free tacos!
Thursday afternoon at 4:00 pm at American Legion Post 138 (Tampa): It’s the Tampa/MacDill AFB Orange Call! In a military context, an “orange call” refers to an alert signaling a heightened cybersecurity state of readiness.
This orange call’s purpose is to gather and network amongst fellow communicators, guardians, and enablers of all ranks, titles, and experience levels, share resources, and seek professional development. They’ll will conduct a round table meet-and-greet and discuss MacDill communicators and missions, including the increasing role of cyber and the importance of defending our nation’s networks.
It’s largely automated. I have a collection of Python scripts in a Jupyter Notebook that scrapes Meetup and Eventbrite for events in categories that I consider to be “tech,” “entrepreneur,” and “nerd.” The result is a checklist that I review. I make judgment calls and uncheck any items that I don’t think fit on this list.
In addition to events that my scripts find, I also manually add events when their organizers contact me with their details.
What goes into this list?
I prefer to cast a wide net, so the list includes events that would be of interest to techies, nerds, and entrepreneurs. It includes (but isn’t limited to) events that fall under any of these categories:
Programming, DevOps, systems administration, and testing
Tech project management / agile processes
Video, board, and role-playing games
Book, philosophy, and discussion clubs
Tech, business, and entrepreneur networking events
Toastmasters and other events related to improving your presentation and public speaking skills, because nerds really need to up their presentation game
Sci-fi, fantasy, and other genre fandoms
Self-improvement, especially of the sort that appeals to techies
Happy Saturday, everyone! Here on Global Nerdy, Saturday means that it’s time for another “picdump” — the weekly assortment of amusing or interesting pictures, comics, and memes I found over the past week. Share and enjoy!
And, as with many group projects, one person did significantly more work…