Skip to content

Instantly share code, notes, and snippets.

View devops-school's full-sized avatar

DevOps School devops-school

View GitHub Profile
@devops-school
devops-school / README.md
Created April 5, 2026 06:03
Databricks Tutorials – Part 3 – AI/ML end-to-end lab using Serverless notebook compute

Absolutely. Here is a notebook-first, fresh-workspace, self-contained Databricks AI/ML tutorial built around Serverless notebook compute. I based it on the current Databricks docs as of late March 2026, including serverless notebooks, the official ML quickstart, Unity Catalog model lifecycle, Model Serving, AI Playground, and the current retrieval-agent tutorial. The key fit for your setup is that serverless notebooks are the right place for Python, MLflow, training, and experiments, while sample data is already available in Databricks through samples and /databricks-datasets. ([Databricks Documentation][1])

What this tutorial will show

This lab lets a student do the full flow in one workspace: create a notebook, load built-in sample data, write Python, train a model, track experiments with MLflow, register the model in Unity Catalog, deploy it with Mosaic AI Model Serving, then move into the GenAI side with AI Playground and a Databricks-provided retrieval-agent notebook that is explicit

@devops-school
devops-school / README.md
Last active April 5, 2026 06:05
Databricks Tutorials – Part 2 – SQL & AI Foundations Lab using Serverless Starter Warehouse

Yes. Here is the cleanest one-stop, fresh-workspace Databricks tutorial for what you want.

One important correction first: a Serverless Starter Warehouse alone cannot do the full AI/ML lifecycle. A notebook attached to a SQL warehouse can run only SQL and Markdown, not Python. So the right end-to-end design is:

  • Serverless Starter Warehouse for SQL exploration and validation
  • Serverless notebook compute for Python, MLflow, training, and experiments
  • Model Serving for deployment
  • AI Playground / Agent tooling for agent prototyping

That split matches the current Databricks product model. ([Databricks Documentation][1])

@devops-school
devops-school / README.md
Last active April 5, 2026 06:05
Databricks Tutorials – Part 2 – SQL & AI Foundations Lab using Serverless Starter Warehouse

Databricks AI/ML End-to-End Lab

Fresh workspace, self-contained, step by step

This lab is designed for a fresh Databricks environment with no preexisting catalog, schema, table, or custom data. It uses only Databricks-provided sample data and an official Databricks agent notebook, so the student does not need to generate any sample dataset manually. Databricks provides sample data in the samples catalog and the /databricks-datasets directory, and its official retrieval-agent tutorial notebook is described as standalone and ready to run with no setup or data required. ([Databricks Documentation][1])

This tutorial intentionally uses two compute paths because that is the correct Databricks design today:

  • Serverless Starter Warehouse for SQL exploration
  • Serverless notebook compute for Python, MLflow, training, and experiments
@devops-school
devops-school / README.md
Created February 14, 2026 08:15
PyTorch Basic Guide

0) Install PyTorch

Option A: pip (most common)

CPU-only:

@devops-school
devops-school / README.md
Created February 14, 2026 07:45
Basic of Tensorflow

1) Install TensorFlow inside Jupyter (macOS)

Run this in a notebook code cell:

%pip install --upgrade pip
%pip install "tensorflow>=2.15,<3"
You are a world-class AI product analyst + technical writer + SEO editor. Create a publish-ready, long-form blog post in Markdown about the AI tool category below. The content must be current, practical, and trustworthy.
CURRENT DATE (set automatically if you can): [YYYY-MM-DD]
AI CATEGORY (replace): [XXXXXXXXXXX] (example: “LLMOps Platforms”, “AI Code Assistants”, “RAG Frameworks”, “AI Governance Tools”)
TARGET READER (optional): [e.g., CTO, AI engineer, IT manager, marketing lead]
REGION (optional): [Global / US / EU / India / APAC]
SEED TOOL LIST (optional): [Tool1, Tool2, ...] (If provided, prioritize these; fill remaining slots with best-known tools.)
CRITICAL RULES (DO NOT BREAK)
1) Output MUST be clean Markdown only (no HTML), ready to copy-paste into a blog CMS.
@devops-school
devops-school / README.MD
Last active April 1, 2026 08:37
LIST OF CATEGORY

3D Animation Software 3D CAD Software 3D Modeling Tools 3D Printing Workflow Software 3D Rendering & Ray Tracing Tools 3D Scan & Photogrammetry Software Building Information Modeling (BIM) Software CAD/CAM Manufacturing Software CAE Simulation Software Computational Fluid Dynamics (CFD) Software

@devops-school
devops-school / README.MD
Last active April 1, 2026 08:21
TEMPLATE For TOOL BLOG

You are a senior SaaS/product analyst, SEO strategist, and WordPress blog editor.

Your task is to write a publish-ready, long-form, search-friendly, people-first blog post in Markdown about the tool category below.

ONLY USER INPUT CATEGORY: [CATEGORY]

YOUR JOB Using only the CATEGORY, automatically infer the most appropriate:

  • primary keyword
@devops-school
devops-school / README.md
Created December 2, 2025 06:33
DOTNET: Kestrel-only / ASP.NET Core hosting-side performance techniques

1. Optimize Kestrel Endpoints & Protocols

  • What Configure Kestrel endpoints explicitly (ports, HTTPS, HTTP/2/HTTP/3), and disable protocols you don’t need.

  • Why

@devops-school
devops-school / Program.cs
Created December 1, 2025 05:44
DOTNET: RPC with GRPC and REST and its Performance Impact
using System.Diagnostics;
using System.Net.Http.Json;
using Grpc.Net.Client;
using RpcPerfDemo.Grpc;
// Simple POCO matching REST response shape
public class RestPerfResponse
{
public int Id { get; set; }
public string Name { get; set; } = string.Empty;