Skip to content

Instantly share code, notes, and snippets.

View IngeniousCoder's full-sized avatar
💭
Coding for IngeniousApps

IngeniousCoder IngeniousCoder

💭
Coding for IngeniousApps
View GitHub Profile
@IngeniousCoder
IngeniousCoder / meta-tags.md
Created March 6, 2019 11:06 — forked from lancejpollard/meta-tags.md
Complete List of HTML Meta Tags

Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/

Basic HTML Meta Tags

<meta name="keywords" content="your, tags"/>
<meta name="description" content="150 words"/>
<meta name="subject" content="your website's subject">
<meta name="copyright"content="company name">
<meta name="language" content="ES">
@IngeniousCoder
IngeniousCoder / music.py
Created March 3, 2019 23:13 — forked from EvieePy/music.py
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