Skip to content

Instantly share code, notes, and snippets.

View Mr0cket's full-sized avatar

Milo Silva Mr0cket

View GitHub Profile
@Mr0cket
Mr0cket / prompts.py
Last active August 18, 2024 09:09
Openai shell chat script with extensible templates & conversation history
#!/usr/bin/env python
from openai import Client
import os, sys, json
import argparse
system_msg = {
"role": "system",
"content": "Answer as simply and concisely as possible",
}
@ikennaokpala
ikennaokpala / Go Cheat Sheet.md
Created December 30, 2014 00:26
Go Cheat Sheet

Go Cheat Sheet

Credits

Most example code taken from A Tour of Go, which is an excellent introduction to Go. If you're new to Go, do that tour. Seriously.

Go in a Nutshell

  • Imperative language