Skip to content

Instantly share code, notes, and snippets.

View antarr's full-sized avatar
💭
🤷🏾‍♂️

Antarr Byrd antarr

💭
🤷🏾‍♂️
View GitHub Profile
@antarr
antarr / results.txt
Created January 15, 2026 14:06
load testing
Perfect! I found the aggregated results. Let me parse this data:
The test results show:
- 0% error rate across all endpoints! (Failure Count = 0 for all)
- Total requests: Let me add them up:
- About Page: 1626
- Bill Discussion Tab: 1028
- Bill Summary: 1042
- Homepage: 2533
- Login Page: 847
@antarr
antarr / spec.md
Created July 2, 2025 16:38
# Llama 3 System Requirements Tables

Llama 3 System Requirements Tables

Llama 3.3 Requirements

Variant Name VRAM Requirement Recommended Configuration Best Use Case
70b 43GB Mac Studio (M2 Ultra 128GB) General-purpose inference
70b-instruct-fp16 141GB Mac Studio Cluster (2x M2 Ultra 192GB) High-precision fine-tuning and training
70b-instruct-q2_K 26GB Mac Studio (M1/M2 Ultra 64GB) Lightweight inference with reduced precision
70b-instruct-q3KM 34GB Mac Studio (M1/M2 Ultra 64GB) Balanced performance and efficiency
@antarr
antarr / anti-dei.txt
Last active January 24, 2025 20:17
Companies that cancelled DEI programs
https://www.cnbc.com/2025/01/24/target-rolls-back-major-dei-initiatives.html?__source=sharebar|twitter&par=sharebar
Target
Walmart
TractorSupply
Meta
McDonalds
https://fortune.com/2025/01/23/dei-donald-trump-executive-order-presidential-action-what-it-means-for-businesses/
Ford
Lowes
@antarr
antarr / Sum of Integer
Created November 7, 2014 21:00
Write a program to determine the largest sum of contiguous integers in a list.
def largestSum(ns: List[Int]): Int ={
def sum(numbers: List[Int]) = numbers.foldLeft(0)((a,b) => a+ b)
@tailrec def loop(numbers: List[Int], large: Int): Int = numbers match{
case Nil => large
case _ => {
val thisSum = sum(numbers)
if(thisSum > large)
loop(numbers.tail, thisSum)
else