📬 Getting this in Promotions? Move it to Primary so you never miss an edition.
IT HootClub — AI Community Newsletter
Hands-on. Career-focused. Future-ready.
Issued 2026-05-30
What Doesn't Go In
Building the Milwaukee tech inventory turns out to be less about code than discipline: deciding what doesn't belong, and why structured data is the real answer to AI hallucination.
Building Intelligence
What Doesn’t Go In
Last week the schema stopped being a diagram and became a real database: tables sitting empty on Neon, waiting. This week was supposed to be the easy part — fill them. I’d been pointing at “get the data” for a month, and I assumed the work would be mechanical. Find the orgs, enter them, move on.
It wasn’t mechanical at all. The hardest decision in this project so far hasn’t been a line of code or a column type. It’s been deciding what doesn’t belong.
Here’s the trap I kept walking into. The moment you start listing Milwaukee tech organizations, the list explodes — every company with an engineering team, every startup, every consultancy. And I kept catching myself adding them, because surely a software engineer moving to Milwaukee wants to know about employers. But that’s not the question this database exists to answer. The question is about community: where you go to get involved, meet people, find events, volunteer — to belong somewhere before you belong anywhere on a payroll. A list of employers answers a different question. A real one, maybe even the one the engineer secretly wants — but I can’t assume that. Maybe they want to contribute before they interview. The second I start guessing at intent and padding the database with “probably useful” entries, I’ve rebuilt the exact thing I’m trying to beat: a generic search that returns everything and makes you sort it out.
That’s the whole point, and it took building the thing to feel it. The advantage of a purpose-built data source isn’t how much it holds — it’s how much it leaves out. A general-purpose model casts the widest net it can and hopes relevance falls out the other side. This does the opposite: a narrow, deliberate net, where the discipline of keeping it narrow is the product. Garbage in, garbage out — and “garbage” here doesn’t mean wrong data. It means correct data that answers the wrong question.
The schema now enforces that discipline structurally instead of leaving it in my head. National events like CypherCon or BSides need a home in the data so their events have something to attach to — but they aren’t Milwaukee community organizations, so they’re flagged to stay out of the featured inventory. The editorial rule — “don’t pad the inventory with things that don’t fit the question” — is no longer something I have to remember every single time. It’s built into the database itself: nothing is part of the inventory until a human deliberately says so. (How that flag actually works is this week’s Under the Hood.)
And here’s what I didn’t expect to be thinking about: this isn’t build-once-and-walk-away. Keeping garbage out on day one is one problem; keeping it out as organizations fold, rename, move, and drift is a different one entirely. Curated data starts decaying the moment you stop tending it. That realization is what became this week’s Fireside Chat — I asked the models where data and database maintenance sits among the fastest-growing fields in tech. Their answers are below. I suspect it’s far more central than it gets credit for, and building this is exactly why I think so.
As for the data itself: it’s not all in yet, and I won’t pretend otherwise. I have outgoing queries to authoritative sources, confirming specific organizations before I commit them, because the entire premise is that nothing goes in unverified. Watching the inventory actually fill with real, sourced, Milwaukee organizations is a reveal I’m saving for when it’s real. Consider this the partial unveiling — the discipline, the structure, the decisions behind what earns a row. The populated database comes before the model work, and it arrives when it’s earned. Patience.
Under the Hood
A Rule the Database Won’t Let Me Forget
Building Intelligence this week made the case that the inventory’s value comes from what stays out of it. This is the part where that editorial rule stops living in my head and becomes something the database itself enforces. It came down to adding two small fields. The interesting part isn’t what they are — it’s when I added them, and everything I deliberately chose not to do.
First, what they are, in plain terms. I added two yes/no switches to the database: one on each organization that says “is this a Milwaukee-local org that’s allowed to show up in the inventory?”, and one on each source that says “is this trustworthy enough to feed the events list?” In database terms, a yes/no field like this is called a boolean — it can only ever hold one of two answers. I set both up so they can never be left blank (the database rejects any row that doesn’t answer the question) and so they start on “no” by default. That default is the entire philosophy compressed into a setting: nothing is eligible, nothing is trusted, until a human deliberately switches it to “yes.” Silence means no. You have to earn the yes.
Now the timing, which is the real lesson. I added these two switches before entering a single organization — while every table is still empty. That sounds backwards: why build the filter before there’s anything to filter? The answer is about what it costs to add a mandatory field to a table that already holds data. If I’d added a “can’t be blank” field to a table holding fifty organizations, the database would have to go back and write an answer into all fifty existing rows to satisfy the rule — a slow, heavy operation that has a name: a backfill. On an empty table, there are no rows to fix, so the same change is instant and free. Add it now, it costs nothing. Add it after I’ve hand-entered fifty verified organizations, and I’ve bought myself that backfill plus a stretch of time where the rule wasn’t being enforced yet. Doing it first wasn’t caution for its own sake — it was catching the cheap moment on purpose.
Then the part I’m quietly proud of: what I left out. There’s a database feature called an index — essentially a lookup shortcut that helps you find rows quickly in a large table. I added none. At the five-to-eight organizations this will hold at the start, the database can read the entire table faster than it could consult a shortcut, so an index would be pure decoration — something that makes me feel like an engineer without doing anything useful. I also didn’t add these switches to events or venues, because those get excluded by a judgment call when I simply choose not to enter them; a field there would be enforcing a rule that nothing actually breaks. And I gave the organization switch a name that reads like plain English when you ask the database a question, so that future-me, reading the query back months later, understands it instantly. Each of those was a small “no.” The design is as much about what I refused to add as what I added — the same instinct as the inventory itself.
Here’s what those two switches really buy, and it’s bigger than filtering. They turn “is this trustworthy? is this in scope?” into a recorded fact attached to the data — not a decision I’m carrying around in my head, hoping to apply consistently. That’s the same idea running through the whole schema: the separate “raw” versus “human-approved” descriptions, the consent flags on people, every fact tracing back to a cited source. The database isn’t just storing what I know about Milwaukee’s tech scene; it’s storing how much I trust each piece, and why. A judgment that used to live in my memory now lives in the data, where it can’t quietly drift, be forgotten, or depend on my mood the day I enter a row. That’s the real upgrade — not a filter, but provenance you can point at.
There’s a name for what all of this adds up to: structured data. It just means information organized into a predictable, labeled shape — tables, defined fields, fixed relationships — so a machine can ask it precise questions and get reliable answers back, instead of guessing at meaning from a wall of free-form text the way it has to with a random web page. And structured, verified data like this is the closest thing I’ve found to a natural enemy of hallucination — the problem that started this whole series. A model invents things when it has nothing solid to stand on and is forced to generate from patterns. Give it a clean, curated, structured source to draw from, and you’ve taken away the reason it had to guess in the first place. This database isn’t the AI. It’s the ground the AI will eventually stand on — the first, unglamorous, non-optional step toward a model you can actually trust about Milwaukee.
I know what some of you are already thinking: well, that’s not really AI anymore — you’re cheating by handing it all the answers. It’s a fair objection, and a big one, and I’m going to take it seriously — in a future edition, once the whole exercise is finished and I can show you the result instead of just arguing about it. For now I’ll say only this: handing it the right answers first isn’t a workaround. It’s the point. But that’s a debate that’s earned its own edition, so I’ll leave it there.
Fireside Chats with AI
This week’s prompt came straight out of the work. After spending the hardest stretch of this project deciding what belongs in a database — and bracing for the job of keeping it accurate as the real world drifts — one question wouldn’t leave me alone: how big a deal is this, actually? So I asked all three models where the fastest-growing fields in tech are right now, and where the unglamorous work of data and database maintenance lands on that list — today and looking forward.
Read their answers the way this section always asks you to: skeptically. Watch for whether each model takes the maintenance question seriously or treats it as an afterthought to the flashier picks — that contrast is often more telling than the rankings themselves. My own bias is on the table: I think tending data is closer to the center of where this is all going than the hype suggests, and building this is the reason I think so. See if they make the case better than I just did, or worse.
The Prompt:
What is the fastest-growing tech-related field in the world right now? And where would you place the need for data and database maintenance in relation to that list — both now and in the future?
Google Gemini (gemini-3-flash-preview)
The consensus among global economic forums (like the WEF), job market analysts (LinkedIn/Glassdoor), and labor statistics (BLS) is that **Artificial Intelligence (AI) and Machine Learning (ML)** is currently the fastest-growing tech-related field in the world.
However, "AI" is a broad umbrella. Underneath it, the growth is driven specifically by **Generative AI, Natural Language Processing (NLP), and AI Infrastructure.**
Here is the breakdown of why this field is leading, and exactly where **data and database maintenance** fit into this hierarchy.
---
### 1. The Fastest-Growing Field: Artificial Intelligence & Machine Learning The growth is not just in the number of jobs, but in the **rate of adoption.** Companies are transitioning from "experimenting with AI" to "integrating AI into every workflow." This has created a massive demand for: * **AI Specialists/Engineers:** Building the models. * **Prompt Engineers:** Interfacing with the models. * **MLOps Engineers:** Managing the deployment and "health" of these models.
**Why now?** The arrival of Large Language Models (LLMs) proved that AI could be used by non-technical people, triggering a global arms race among enterprises to reorganize their tech stacks.
---
### 2. The Placement of Data and Database Maintenance If AI is the "engine" of modern technology, **data is the fuel.** You cannot have a functional AI field without a robust data field.
In the current tech landscape, "Database Maintenance" has evolved. It is no longer just about a DBA (Database Administrator) making sure a server doesn't crash; it has rebranded and expanded into **Data Engineering and Data Governance.**
#### **Where it stands NOW: The Critical Enabler** * **Ranking:** While AI takes the #1 spot for *growth rate*, Data Engineering/Database Management is arguably #1 or #2 for *structural importance.* * **The "Garbage In, Garbage Out" Problem:** AI models are only as good as the data they are trained on. Currently, 80% of an AI project’s timeline is typically spent on data cleaning, maintenance, and structuring. * **The Rise of Vector Databases:** A new sub-sector of database maintenance has exploded—managing "Vector Databases" (like Pinecone or Milvus). These are specialized databases that allow AI to "remember" and retrieve information quickly.
#### **Where it stands in the FUTURE: The Strategic Core** As we move 5–10 years into the future, the role of database maintenance will shift from **manual labor to strategic oversight.**
1. **From "Maintenance" to "Architecture":** Standard maintenance (backups, indexing, patching) will be almost entirely handled by **Autonomous Databases** (AI-managed databases). The human role will shift to designing the architecture that allows data to flow seamlessly between different AI agents. 2. **Data Sovereignty and Ethics:** As global regulations (like GDPR) tighten, database maintenance will become a legal and ethical field. Ensuring data is "clean" will not just mean "formatted correctly," but also "ethically sourced" and "bias-free." 3. **The "Data Fabric":** In the future, maintenance will involve managing a "Data Fabric"—a method of connecting disparate data sources across the globe so that a company’s AI can access any piece of info instantly without it needing to be moved to a single warehouse.
---
### Summary: The Relationship If you were to visualize this as a pyramid:
* **The Peak (The "Sexy" Layer):** **AI & Machine Learning.** This is where the most visible innovation and highest salary jumps are happening. * **The Foundation (The "Structural" Layer):** **Data Management & Database Infrastructure.** This is the larger, more stable base.
**The Verdict:** If you enter AI, you are in the fastest-growing field. However, **data and database maintenance is the most "future-proof" skill set.** An AI model can become obsolete in six months when a better one is released, but the need for a clean, secure, and well-maintained database is a permanent requirement of the digital age.
**In terms of "Need":** * **Now:** Database maintenance is a **Top 5** priority (Transitioning to Cloud/Vector). * **Future:** It will be a **Top 3** priority (Focusing on Governance/Automated Architecture).
Anthropic Claude (claude-sonnet-4-20250514)
The fastest-growing tech field right now is **artificial intelligence and machine learning**, particularly generative AI. The growth has been explosive since 2022, with massive investments, rapid product development, and widespread adoption across industries.
Other top contenders include: - **Cybersecurity** (driven by increasing digital threats) - **Cloud computing** (especially edge computing and multi-cloud) - **Renewable energy tech** (solar, wind, battery storage) - **Quantum computing** (though still early-stage)
## Data/Database Maintenance Position:
**Currently:** Data management ranks as a **critical foundational need** rather than a flashy growth area. While not the fastest-growing field itself, it's experiencing steady, strong demand because: - Every AI model needs quality data - Digital transformation requires robust data infrastructure - Regulatory compliance (GDPR, etc.) demands proper data governance
**Future outlook:** Data and database roles will likely **increase significantly in importance** for several reasons:
1. **AI dependency**: More AI means exponentially more data needs 2. **Data quality crisis**: As data volumes explode, maintaining quality becomes harder and more crucial 3. **Specialization**: We're seeing evolution from generic "database admin" to specialized roles like ML data engineers, data reliability engineers, and AI data architects 4. **Real-time requirements**: Modern applications need instant data access, requiring more sophisticated database management
Think of data management as the "infrastructure" that enables the flashy growth areas. Not the most glamorous, but absolutely essential and likely to see sustained, strong demand as the foundation for everything else.
OpenAI GPT (gpt-4o)
As of 2023, one of the fastest-growing tech-related fields is artificial intelligence (AI) and machine learning (ML). These technologies are being rapidly adopted across various industries, including healthcare, finance, automotive, and entertainment, due to their potential to automate processes, provide insights through data analysis, and enable new applications like autonomous vehicles and personalized medicine.
The need for data and database maintenance is crucial in the context of AI and ML. The effectiveness of AI largely depends on the quality and quantity of data available for training algorithms. Consequently, database management and maintenance play a pivotal role. This includes ensuring data integrity, security, and accessibility, as well as optimizing databases for efficient data retrieval and processing.
Furthermore, as AI and ML applications continue to expand, the volume of data generated and processed will increase dramatically, making robust data management systems even more important. In the future, the evolution of fields like the Internet of Things (IoT) and edge computing will further amplify the need for advanced data management strategies as they produce massive amounts of data that require real-time processing and analysis.
Overall, while AI and ML might be among the fastest-growing fields, the backbone of these technologies relies heavily on effective data management. Hence, the demand for expertise in data and database maintenance is not only critical today but is also expected to grow significantly in the future.
The Learning Loop
Google Gemini
DEFINITIONTemperature
A hyperparameter that controls the randomness of an AI's output; lower settings (near 0) result in consistent and factual responses, while higher settings (near 1) encourage creative and varied text.
Source: NVIDIA
TIPNegative Prompting
Define what the AI should "not" do by listing specific constraints (e.g., "avoid corporate jargon" or "no mentions of price") to eliminate unwanted elements from the first draft without requiring multiple revisions.
Source: PromptingGuide
TOOLPerplexity AI
An AI-powered search engine that scans the internet in real-time to provide conversational answers with inline citations, making it ideal for verifying facts and discovering sources.
Fine-tuning is the process of taking a pre-trained AI model and further training it on a smaller, specialized dataset to adapt it for specific tasks or domains, like training a general language model on medical texts to create a medical AI assistant.
Source: OpenAI Documentation
TIPRole-Based Prompting
Assign the AI a specific professional role at the start of your prompt (e.g., "You are a senior data analyst") to activate relevant knowledge patterns and improve response quality for domain-specific tasks.
Source: Anthropic Claude Guide
TOOLNotion AI
An AI writing assistant built directly into Notion workspaces that helps with content generation, summarization, and editing within your existing note-taking and project management workflow.
Gradient Descent is an optimization algorithm used to minimize the error of a model by iteratively adjusting parameters in the direction of the steepest slope or gradient of the loss function.
Source: Wikipedia
TIPOutput Formatting
Ensure clarity by requesting the AI to present answers in a structured format, such as bullet points or tables, to enhance readability and comprehension.
Source: PromptingGuide
TOOLOpenAI Codex
OpenAI Codex is an advanced AI model capable of understanding and generating code, assisting developers with code suggestions and completions directly in their IDE.
“The camera is an instrument that teaches people how to see without a camera.”
— Dorothea Lange — She was an American documentary photographer whose iconic images captured the resilience of the human spirit during the Great Depression. Her work for the federal government brought national attention to the plight of migrant workers and defined the standards of visual journalism. She believed that the camera was a powerful tool for empathy that could force viewers to confront uncomfortable social realities.
Anthropic Claude
“The most beautiful thing we can experience is the mysterious. It is the source of all true art and science. He to whom this emotion is a stranger, who can no longer pause to wonder and stand rapt in awe, is as good as dead: his eyes are closed.”
— Richard Feynman — Richard Feynman was an American theoretical physicist who made groundbreaking contributions to quantum mechanics and particle physics. He won the Nobel Prize in Physics in 1965 for his work on quantum electrodynamics. Known for his curiosity about everything from safe-cracking to biology, he believed that wonder and questioning were essential to both scientific discovery and living a fulfilling life.
OpenAI GPT
“Perseverance is not a long race; it is many short races one after the other.”
— Walter Elliot — Walter Elliot was a Scottish Unionist politician. He served as a Member of Parliament from 1918 to 1958, representing a series of constituencies in the Scottish borders. Elliot was known for his work in agriculture, health, and education during his political career.
The Nest Jest
Google Gemini
Anthropic Claude
OpenAI GPT
Upcoming Events
Event06/02/2026 7:00 PM
Where is AI in 2026 and Where is it Going? | Virtual Workshop Series — Online (Milwaukee, WI)
**A free, public workshop with no technical background needed** For the last several years, AI systems have advanced at a pace that has stunned the public and even surprised leading experts. These systems are reshaping work, the economy, relationships, and even crime extremely quickly. This workshop will explore where AI may be in the next 1-5 years and what that means for daily life for all of us. We’ll tackle urgent and important questions like: * **Jobs**: Could AI lead to mass unemployme [Group: ai-safety-awareness-group-milwaukee]
The AGI Transition: How AI Affects Work and Life | Virtual Workshop Series — Online (Online event)
**A free, public workshop—no technical background needed** Artificial intelligence is no longer just getting better at narrow tasks—it’s beginning to look *general*. Many researchers believe we’re entering the early stages of the **AGI transition**: a period where AI systems start to match or exceed human abilities across a wide range of domains. This workshop explores what AGI actually means, how to think about it intuitively (without hype or jargon), and what this transition could mean for [Group: ai-safety-awareness-group-milwaukee]
(Hybrid) Random Testing with ‘Fuzz’: 35 Years of Finding Bugs — Online (Madison Central Public Library, 201 West Mifflin St. Room 302, Madison, WI)
online: https://youtube.com/live/DTOTDmrAjq4?feature=share Fuzz testing has passed its 35th birthday and, in that time, has gone from a disparaged and mocked technique to one that is the foundation of many efforts in software engineering and testing. The key idea behind fuzz testing is using random input and having an extremely simple test oracle that only looks for crashes or hangs in the program. Importantly, in all our studies, all our tools, test data, and results were made public so that o [Group: madison-ai]
Superintelligent AI and Loss of Control | Virtual Workshop Series — Online (Online event)
**A free, public workshop—no technical background needed** What would it actually mean for machines to become smarter than humans—not just at chess or writing, but at *everything*? For decades, scientists and researchers have debated the idea of Superintelligent AI: systems that could outperform humans across nearly all cognitive tasks. What once sounded like distant science fiction is now increasingly discussed as a real possibility within our lifetimes. This workshop is a guided, interactiv [Group: ai-safety-awareness-group-milwaukee]
MadAI Hackathon - AI Code Jam — Online (Madison, WI)
Join us for a day of augmented development and prompt engineering. Whether you are looking to accelerate a side project, learn the nuances of LLMs, or just see how fast you can break an agent, this is your space. This is a 5-hour collaborative working session designed to get you out of "tutorial hell" and into building mode with the help of AI. The Plan: This isn't a classroom. It's a lab. Bring your laptop and your current obsession. We are focusing on: * AI-Assisted Build: exploring how tools [Group: madison-ai]
Hands-On : Copilot Studio, Microsoft Fabric, Azure AI : Better Together — Online (Online event)
**Hands-On Online Workshop: Copilot Studio, Microsoft Fabric, Azure AI : Better Together** **Date: 24 July 2026, 10 AM to 5 PM Eastern Time** **Level: Beginners/Intermediate** **Registration Link:** https://www.eventbrite.com/e/hands-on-copilot-studio-microsoft-fabric-azure-ai-better-together-tickets-1983680029367?aff=oddtdtcreator **Who Should Attend?** This hands-on workshop is open to developers, senior software engineers, IT pros, architects, IT managers, citizen developers, technology pro [Group: artificialintelligenceandmachinelearning]
Founders Day — Ward4, 313 N Plankinton Avenue, Milwaukee, WI 53203
Monthly networking and programming for Milwaukee's startup and technology community, hosted by MKE Tech Hub Coalition at Ward4. Recurring last Wednesday of the month.
Source: MKE Tech Hub Coalition (mketech.org)
In the News
Google Gemini
News2026-05-30 — TechCrunch
After Nvidia’s $20B not-acqui-hire, AI chip startup Groq reportedly raising $650M
AI chipmaker Groq is reportedly seeking $650 million in internal funding to support a strategic pivot toward AI inference services. This shift focuses on optimizing how artificial intelligence models process and respond to user prompts rather than focusing solely on hardware. The move follows a significant $20 billion valuation event involving Nvidia and other key industry competitors. read more
News2026-05-30 — VentureBeat
Salesforce rolls out new Slackbot AI agent as it battles Microsoft and
Salesforce has launched a rebuilt version of Slackbot, evolving the tool from a basic notification system into a sophisticated AI agent. The new agent can search enterprise data, draft documents, and execute tasks on behalf of users within the Slack ecosystem. This update positions Salesforce to compete more directly with productivity AI offerings from Microsoft and Google. read more
News2026-05-30 — TechCrunch
Cognition’s Scott Wu says AI coding agents shouldn’t replace humans
Scott Wu, the creator of the prominent AI coding agent Devin, asserts that these tools are intended to assist rather than replace human programmers. While AI can handle repetitive coding tasks and improve speed, Wu emphasizes the importance of human oversight in complex software development. The statement comes amid growing industry debate regarding the impact of AI on the future of engineering careers. read more
Anthropic Claude
News2026-05-30 — TechCrunch
Coders are refusing to work without AI — and that could come back to bite them
While AI is helping coders produce code faster, researchers warn it may not be producing better code. This growing dependency among programmers could create problems down the road as code quality potentially suffers. The trend highlights concerns about over-reliance on AI tools in software development. read more
News2026-05-30 — TechCrunch
What happens when companies become too AI-pilled?
Box founder Aaron Levie warns of "AI psychosis" where decision-makers who least understand jobs are most likely to replace them with AI. ClickUp recently cut 22% of its workforce for AI agents, contributing to 2026 tech layoffs nearly matching all of 2025. The trend reflects growing concerns about companies becoming overly dependent on AI solutions. read more
News2026-05-30 — VentureBeat
Listen Labs raises $69M after viral billboard hiring stunt to scale AI customer interviews
Listen Labs secured $69 million in funding after using a creative $5,000 billboard campaign in San Francisco to compete against Meta's $100 million AI job offers. The startup focuses on AI-powered customer interview technology and needed to hire over 100 engineers. The funding will help scale their AI platform for automated customer research. read more
OpenAI GPT
Newsnan — So they have been omitted from this edition.
Redacted due to output duplication
OpenAI's selections this week duplicated stories already listed above under Gemini and Claude.
Newsnan — So they have been omitted from this edition.
Redacted due to output duplication
OpenAI's selections this week duplicated stories already listed above under Gemini and Claude.
Newsnan — So they have been omitted from this edition.
Redacted due to output duplication
OpenAI's selections this week duplicated stories already listed above under Gemini and Claude.
Tools from Hard AIs
AI Airfare Research
Find cheaper flights using an AI-powered research tool
built by Hard AIs.