Skip to content

Instantly share code, notes, and snippets.

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

Palmer Brown palmersaccount

🏠
Working from home
  • Kennesaw State University
  • Kennesaw, GA
  • 04:00 (UTC -04:00)
View GitHub Profile
@palmersaccount
palmersaccount / text.md
Last active March 17, 2024 01:33
claude output

(yes this is from an AI. This is from Claude 3

Table of Contents:

  1. Introduction
  2. Accomplishments
  3. Bot Improvements
  4. Backend Enhancements
  5. Website Update
  6. Team Collaboration
  7. Next Steps
@palmersaccount
palmersaccount / update.py
Created June 26, 2019 15:00
Update a minecraft server version. Always deletes old "server.jar".
import os
import json
from subprocess import run
try:
import wget
except ImportError:
run(["pip", "install", "wget", "--upgrade"])