Skip to content

Instantly share code, notes, and snippets.

View iam-veeramalla's full-sized avatar
🎯
Stay Hungry, Stay Foolish :)

Abhishek Veeramalla iam-veeramalla

🎯
Stay Hungry, Stay Foolish :)
View GitHub Profile
@iam-veeramalla
iam-veeramalla / llms_on_cpu.md
Created March 8, 2026 19:08
Run LLMs locally on CPU Architecture

Run LLMs Locally Using llama.cpp

This tutorial shows how to run Large Language Models locally on your laptop using llama.cpp and GGUF models.

It works on:

  • macOS
  • Linux
  • Windows

VIND Tutorial

Prerequisites

  • Docker
  • Kubectl
  • Login to ghcr.io (docker login ghcr.io) - create and github token as password/

Install VCluster CLI

@iam-veeramalla
iam-veeramalla / claude_with_ollama.md
Last active March 9, 2026 23:21
claude code integration with ollama to use local models

Run Claude with the power of Local LLMs using Ollama

Install Ollama

curl -fsSL https://ollama.com/install.sh | sh

Pull the Model

ollama pull glm-4.7-flash # or gpt-oss:20b (for better performance)

@iam-veeramalla
iam-veeramalla / openclaw_with_ollama.md
Created February 15, 2026 11:26
openclaw with ollama (Zero cost AI Assistant)

OpenClaw configuration with Ollama

Install OpenClaw

curl -fsSL https://openclaw.ai/install.sh | bash

Install Ollama

curl -fsSL https://ollama.com/install.sh | sh

@iam-veeramalla
iam-veeramalla / forward-vs-reverse-proxy.md
Created September 23, 2025 14:57
Forward and Reverse Proxy explained with Demos.

Forward Proxy vs Reverse Proxy

In this tutorial, You will learn:

  • Forward Proxy using Tinyproxy (simple, lightweight).
  • Reverse Proxy using NGINX with two Python backends.

0 — Prepare the Instance

@iam-veeramalla
iam-veeramalla / 01-Installation.md
Last active March 7, 2026 09:21
Introduction to Kubeflow

Installation of Kubeflow Pipelines

The best guide to install Kubeflow or any of its components is the official documentation.

https://www.kubeflow.org/docs/started/

In this tutorial, we will learn how to Install, Configure and Use the most popular component of Kubeflow that is KFP (Kubeflow Pipelines).

Step 1: Install Docker Desktop

@iam-veeramalla
iam-veeramalla / headless-service-demo.md
Created June 9, 2025 15:12
Kubernetes Headless Service Demo

Headless Kubernetes Service

Service

apiVersion: v1
kind: Service
metadata:
  name: my-db-headless-service
spec:
@iam-veeramalla
iam-veeramalla / benchmarking.py
Created May 23, 2025 08:49
Valkey Performance Benchmarking
import redis
import time
import random
import string
import statistics
# Redis connection details
REDIS_HOST = "redisval-bu8xv7.serverless.use1.cache.amazonaws.com"
REDIS_PORT = 6379 # TLS port (verify if TLS supported on this port!)
REDIS_PASSWORD = None
@iam-veeramalla
iam-veeramalla / upload_jenkins_build_logs.sh
Created January 7, 2025 15:11
upload_jenkins_build_logs.sh
#!/bin/bash
# Variables
JENKINS_HOME="/var/lib/jenkins" # Replace with your Jenkins home directory
S3_BUCKET="s3://your-s3-bucket-name" # Replace with your S3 bucket name
DATE=$(date +%Y-%m-%d) # Today's date
# Check if AWS CLI is installed
if ! command -v aws &> /dev/null; then
echo "AWS CLI is not installed. Please install it to proceed."
@iam-veeramalla
iam-veeramalla / gist:7e32999189f4aa9064334d1d27bd877c
Created January 3, 2025 11:14
EKS Cluster Creation and Teardown
# Create EKS Cluster
eksctl create cluster --name=observability \
--region=us-east-1 \
--zones=us-east-1a,us-east-1b \
--without-nodegroup
eksctl utils associate-iam-oidc-provider \
--region us-east-1 \
--cluster observability \