Skip to content

Instantly share code, notes, and snippets.

View BrandonHoeft's full-sized avatar

Brandon Hoeft BrandonHoeft

  • Chicago
View GitHub Profile
@veekaybee
veekaybee / chatgpt.md
Last active July 22, 2025 10:40
Everything I understand about chatgpt

ChatGPT Resources

Context

ChatGPT appeared like an explosion on all my social media timelines in early December 2022. While I keep up with machine learning as an industry, I wasn't focused so much on this particular corner, and all the screenshots seemed like they came out of nowhere. What was this model? How did the chat prompting work? What was the context of OpenAI doing this work and collecting my prompts for training data?

I decided to do a quick investigation. Here's all the information I've found so far. I'm aggregating and synthesizing it as I go, so it's currently changing pretty frequently.

Model Architecture

@joelonsql
joelonsql / PostgreSQL-EXTENSIONs.md
Last active August 7, 2025 23:22
1000+ PostgreSQL EXTENSIONs

🗺🐘 1000+ PostgreSQL EXTENSIONs

This is a list of URLs to PostgreSQL EXTENSION repos, listed in alphabetical order of parent repo, with active forks listed under each parent.

⭐️ >= 10 stars
⭐️⭐️ >= 100 stars
⭐️⭐️⭐️ >= 1000 stars
Numbers of stars might not be up-to-date.

@Kornel
Kornel / decision-boundaries.Rmd
Created March 25, 2016 11:00
Decision boundaries for a MLP, SVM and a Random Forest
---
title: "Decision boundaries"
author: "Kornel Kiełczewski"
date: "25 March 2016"
output: html_document
---
Decision boundaries for a somewhat biased test case :)
```{r, echo=FALSE, message=FALSE, warning=FALSE}
@niksumeiko
niksumeiko / git.migrate
Last active July 1, 2025 18:41
Moving git repository and all its branches, tags to a new remote repository keeping commits history
#!/bin/bash
# Sometimes you need to move your existing git repository
# to a new remote repository (/new remote origin).
# Here are a simple and quick steps that does exactly this.
#
# Let's assume we call "old repo" the repository you wish
# to move, and "new repo" the one you wish to move to.
#
### Step 1. Make sure you have a local copy of all "old repo"
### branches and tags.
@hofmannsven
hofmannsven / README.md
Last active July 30, 2025 13:50
Git CLI Cheatsheet