Skip to content

Instantly share code, notes, and snippets.

View blackhaj's full-sized avatar

Henry Black blackhaj

View GitHub Profile
Country Tariffs Charged to the U.S.A. U.S.A. Discounted Reciprocal Tariffs
Afghanistan 49% 10%
Antigua and Barbuda 10% 10%
Argentina 10% 10%
Aruba 10% 10%
Australia 10% 10%
Bangladesh 74% 37%
Barbados 10% 10%
Benin 10% 10%
Bermuda 10% 10%
@veekaybee
veekaybee / normcore-llm.md
Last active March 18, 2026 10:59
Normcore LLM Reads

Anti-hype LLM reading list

Goals: Add links that are reasonable and good explanations of how stuff works. No hype and no vendor content if possible. Practical first-hand accounts of models in prod eagerly sought.

Foundational Concepts

Screenshot 2023-12-18 at 10 40 27 PM

Pre-Transformer Models

@thecodeboss
thecodeboss / prisma-slonik-usage.ts
Created July 22, 2022 22:01
Prisma/Slonik Usage Example
import { PrismaClient } from '@prisma/client';
import type { User } from '@prisma/client';
import { createPool, sql } from 'slonik';
export const buildBaseConnectionURL = (config) => {
return (
'postgresql://' +
config.DB_USER +
':' +
config.DB_PASS +
@paulallies
paulallies / gist:0052fab554b14bbfa3ef
Last active August 3, 2024 16:45
Remove node_modules from git repo
#add 'node_modules' to .gitignore file
git rm -r --cached node_modules
git commit -m 'Remove the now ignored directory node_modules'
git push origin <branch-name>