Skip to content

Instantly share code, notes, and snippets.

View JorgeMagdaleno's full-sized avatar

Jorge Magdaleno JorgeMagdaleno

View GitHub Profile
@jgravois
jgravois / _webserver.md
Last active August 1, 2024 19:39
a simple guide for getting a local web server set up

Do I have a web server running?


having a web server turned on doesn't necessarily mean you are serving pages on the world wide web. its what allows you to load your own static files (.html, .js etc.) in a browser via http://.

if you're not sure whether or not you have a web server running, no problem! its easy to confirm.

what happens when you visit http://localhost/?

@EvieePy
EvieePy / music.py
Last active July 22, 2024 16:49
Basic music with playlist support on Rewrite
"""
Please understand Music bots are complex, and that even this basic example can be daunting to a beginner.
For this reason it's highly advised you familiarize yourself with discord.py, python and asyncio, BEFORE
you attempt to write a music bot.
This example makes use of: Python 3.6
For a more basic voice example please read:
https://github.com/Rapptz/discord.py/blob/rewrite/examples/basic_voice.py