Activity
Mon
Wed
Fri
Sun
Sep
Oct
Nov
Dec
Jan
Feb
Mar
Apr
May
Jun
Jul
Aug
What is this?
Less
More

Owned by Michael

Master Linux infrastructure and DevOps skills with hands-on labs, tools, and community support. Build smarter, faster, and more secure systems.

Memberships

HighLevel Quest

14.6k members • Free

GoHighLevel w/ Robb Bailey

13.4k members • Free

AI Automation Society

436k members • Free

AI Automation Agency Hub

331.8k members • Free

GHL Blueprint

1.7k members • Free

Skoolers

161.3k members • Free

31 contributions to Linux Infrastructure Academy
Agentic Development is live (and free)
Quick update for everyone: The Agentic Development course is now built out and available free inside the classroom. This is for anyone trying to use AI agents to build real software without turning every session into: - drift - rabbitholing - token burn - context loss - babysitting - "looks done" work with weak proof The short version: better prompts help, but they are not infrastructure. This course is about building the agentic infrastructure around your work: project memory, contracts, packetized work, testing guardrails, verification, handoffs, and human control. But there are other courses, some with similar ideas, so what makes this course worthwhile? Simple, this course also provides you with an Agentic Development Kit that will help program your agents so you can avoid the headaches above. Start here: https://www.skool.com/linux-infrastructure-academy-5525/classroom/722b11f9 It is free. If you go through Module 1, drop a comment with the failure mode you see most often in your own AI coding workflow.
0 likes • 11d
When you're ready @Mel Baker , we can schedule a call. Do you have an agent you're using yet?
1 like • 11d
@Mel Baker Sure. And I'm here. It's good that you're a blank slate. The first few modules pretty much go through the issues I found in the process. The middle lessons cover the solution and the end gives you an idea of how to use this infrastructure concept and how it fits into the common dev cycle. So there's a lot of info, don't feel like you have to absorb everything, it's just to set you up for working later and actually being able to get a stable result.
New to Linux
Hi everyone, I just switched over to Zorin OS as my first stop into the linux ecosystem. I joined this community to get a better understanding of how the linux infrastructure works and to start developing my DevOps skills.
1 like • 19d
Ubuntu is my go to Debian... otherwise I've always been CentOS (Rocky), Fedora or Redhat. Welcome!
Agentic Development: I need your input 👀
Quick follow-up to my last post about Agentic Development. A couple people asked what it actually means, so here is the simple version: This is for anyone trying to use AI agents to build real applications, but the agent keeps: - changing things you did not ask it to change - burning tokens fixing its own mess - forgetting context halfway through - giving confident answers with weak proof - going down a logical rabbit hole - making you babysit every response If you understand Linux/DevOps, the idea should feel familiar. We do not trust systems just because they look busy. We want logs, tests, boundaries, rollbacks, and proof. Agentic Development is that same mindset applied to AI-assisted building. The course structure I am working on looks like this: 1. Modules 1-3: diagnose the problem Why agents drift, why project memory breaks, and why systems need boundaries before agents touch them. 2. Modules 4-6: install the starter kit Testing guardrails, workflow proof, and a Plan/Contract/Packet framework for giving agents controlled work. 3. The rest of the course: use the agent setup Queues, handoffs, production readiness, team rails, portfolio proof, and scaling the practice. I'm still working on course material, so I am not opening the whole thing today. But I am thinking about making the first 3 modules free as an AI Agent Drift Audit. Quick question for everyone: Which problem have you run into the most with AI agents? Comment one: 1. Drift - it changes things you did not ask for 2. Token burn - you spend too much correcting bad output 3. Context loss - it forgets what matters 4. Rabbit holes - it follows a logical path away from the goal 5. Weak proof - it says done but you do not trust it 6. Babysitting - you have to keep steering every response If you have a real example, post it. I may use some of these examples to shape the first free challenge. Would the first 3 modules as a free audit be useful here?
1 like • 25d
This may be the best representation I've seen of working with an agent if you don't have a well formed system: https://www.instagram.com/reel/DaPfA6VpPpw/?igsh=MTQwY2UxZjNsdG9lag==
1 like • 25d
@Mel Baker We're going to remember this post and then you can tell everyone how you feel after the coursework and some 1:1. If you want to avoid paying and you want an agent that just utilizes a model locally because you don't trust it, look into Goose AI. At some point I will do a little content around Goose. You will be at the top of my list to reach out to once things are ready.
Agentic Development
Is anyone here interested in coursework related to Agentic Development?
1 like • 28d
@Mel Baker Agentic Development coursework walks you through the challenges I've encountered learning how to develop using an agent and how I overcame them to produce an enterprise level product.
1 like • 28d
This course is for anyone that wants to build a useful application using an AI agent. Without this course, I can promise you will have issues with drift and token burn. While working, you're going to run out of memory and lose context. You'll burn through more tokens trying to correct code that still won't work, all while there are unintended changes occuring. You'll have to sit for hours babysitting output and trying to keep the agent from going down a tangential logical rabbit hole. I just presented this coursework at my corporate job because real engineers are still largely unable to get consistent results, all while incurring MASSIVE token bills.
⚙️ Linux Tip of the Day: The Hosts File
The /etc/hosts file is a fundamental system file that plays a key role in how your Linux machine resolves domain names to IP addresses. It's essentially a local, manually managed DNS table. When you type a hostname like www.google.com into your browser, your system first checks /etc/hosts to see if there's a corresponding IP address listed there before sending a query to an external DNS server. This local check makes resolution extremely fast since no network communication is required. 🎯 Primary Uses * Blocking Websites: This is a common use for parents or system administrators. By mapping a domain to your local machine's loopback address (127.0.0.1), you can effectively prevent access to a site. For example, adding 127.0.0.1 twitter.com will block access to Twitter on your machine. * Local Development: Developers use the hosts file to test web applications before they go live on a public server. By adding an entry like 192.168.1.10 myapp.local, they can access their development server using a user-friendly hostname instead of an IP address. This mimics a live environment. * Network Shortcuts: You can create simple, memorable hostnames for devices on your local network. Instead of remembering 192.168.1.50 for your network printer, you could add 192.168.1.50 printer to your hosts file and simply type printer into your browser or command line to access it. ✍️ Editing the File The /etc/hosts file requires root permissions to edit. You can use a text editor like nano or vim with the sudo command. A good practice is to always back up the original file before making any changes. * Backup: sudo cp /etc/hosts /etc/hosts.bak * Edit: sudo nano /etc/hosts * Add your entries: Add new lines with the format IP_address hostname. * Save and Exit: Press Ctrl+O to save and Ctrl+X to exit in nano. After editing and saving, the changes take effect immediately without needing to restart any services. 🛡️ Important Notes * Comments: Lines starting with a # are ignored by the system and can be used to add comments for clarity. For example, # Blocked for security.
0 likes • Jun 6
@Mel Baker I just read that some browsers bypass your systems resolver and do dns over https. Check your browser settings to see if that's the case
1 like • Jun 6
@Mel Baker DNS over HTTPS just means your browser is using https to check dns versus defaulting to your normal resolver. On the command line, ping youtube.com and see what happens. Sorry ....at the gym....
1-10 of 31
Michael Sanderson
4
46 points to level up
@michael-sanderson-2869
IT professional with 20 years of experience in Linux systems

Active 4d ago
Joined Jul 20, 2025
Tampa, FL