Skip to content

Instantly share code, notes, and snippets.

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

Autumn brown AutumnsGrove

🏠
Working from home
  • Kennesaw State University
  • Kennesaw, GA
  • 06:06 (UTC -04:00)
View GitHub Profile
@AutumnsGrove
AutumnsGrove / 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
@AutumnsGrove
AutumnsGrove / 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"])