Skip to content

Instantly share code, notes, and snippets.

View c0d33ngr's full-sized avatar
🎯
Focusing

Jeffrey c0d33ngr

🎯
Focusing
View GitHub Profile
@c0d33ngr
c0d33ngr / how-ai-agents-are-made.md
Created February 21, 2026 07:41 — forked from championswimmer/how-ai-agents-are-made.md
How Personal AI Agents and Agent Orchestrators like OpenClaw or GasTown are Made

How Personal AI Agents and Agent Orchestrators like OpenClaw or GasTown are Made

img-01

Over the last few months, projects like Gas Town by Steve Yegge and OpenClaw by Peter Steinberger have made “AI agent orchestrators” feel suddenly mainstream. It is tempting to treat them as a new kind of intelligence, but under the hood they are still a small set of primitives wired together with discipline: an LLM API call, a state loop, tools, memory, and orchestration.

This raises a practical question: what is actually inside an “agent,” and how is it different from ChatGPT (a chat UI over a model) or coding tools like Claude Code (an agentic coding surface)? Gas Town’s README frames it as a “multi‑agent orchest

@c0d33ngr
c0d33ngr / cloud-gpus.md
Created January 21, 2025 05:46 — forked from devinschumacher/cloud-gpus.md
Cloud GPUs // The Best Servers, Services & Providers [RANKED!]

Cloud GPUs: Servers, Providers & Everything You Would Ever Need

Your company's GPU computing strategy is essential whether you engage in 3D visualization, machine learning, AI, or any other form of intensive computing.

There was a time when businesses had to wait for long periods of time while deep learning models were being trained and processed. Because it was time-consuming, costly, and created space and organization problems, it reduced their output.

This problem has been resolved in the most recent GPU designs. Because of their high parallel processing efficiency, they are well-suited for handling large calculations and speeding up the training of your AI models.

When it comes to deep learning, good Cloud GPUs can speed up the training of neural networks by a factor of 250 compared to CPUs, and the latest generation of [cloud GPUs is reshaping data science](https://www.perplexity.ai/page/best-cloud-gpu-rental-provider-HNR3Ws

@c0d33ngr
c0d33ngr / setup_codespaces_gui.sh
Created August 29, 2024 12:30 — forked from ChickenChunk579/setup_codespaces_gui.sh
Installs the Fluxbox Window Manager, NoVNC and TightVNC Server Standalone to add a desktop environment to your Codespace
#!/bin/bash
echo "Updating..."
sudo apt update
echo "Installing packages..."
sudo apt install xterm fluxbox novnc tigervnc-standalone-server
echo "Starting NoVNC"
@c0d33ngr
c0d33ngr / main.dart
Last active October 29, 2022 15:08
Stage 1 Task: Mobile
import 'dart:math' as math;
class Circle {
late double radius;
late String color;
Circle() {
radius = 1;
color = "red";
}
@c0d33ngr
c0d33ngr / main.dart
Last active October 22, 2022 10:01
Task Title: Week 4 classes > Imports and Classes
/// Program to implement a simple bank like transactions in console:
///
/// 1.Check account balance
/// 2.Make deposit to account
/// 3.Make withdrawal from account
class Bank {
String? accountName;
String? accountNumber;
@c0d33ngr
c0d33ngr / main.dart
Last active October 20, 2022 14:00
Task Title: Week 3 Mobile Tasks > Functions and Collections
/// Program to implement a simple calculator
/// Function to add firstNum to secondNum
num addNumber(num firstNum, num secondNum) {
num result = firstNum + secondNum;
return result;
}
/// Function to substract secondNum value from firsNum
num substractNumber(num firstNum, num secondNum) {
@c0d33ngr
c0d33ngr / main.dart
Last active October 20, 2022 13:58
Week 2 Mobile Tasks > Introduction to Dart
void main() {
for (int i = 0; i <= 30; i++) { //For loop to loop through range 1 to 30
if (i % 2 == 1) { // if condition to check for odd number
print(i); //statement to print odd numbers
}
}
print("The number is at 30");
}
@c0d33ngr
c0d33ngr / main.dart
Created October 4, 2022 09:04
sparkling-zephyr-1439
void main() {
for (int i = 0; i <= 30; i++) { //For loop to loop through range 1 to 30
if (i % 2 == 1) { // if condition to check for odd number
print(i); //statement to print odd numbers
}
}
print("The number is at 30");
}