Skip to content

Instantly share code, notes, and snippets.

View JDJGInc's full-sized avatar

JDJG JDJGInc

View GitHub Profile
public class AudioManager : MonoBehaviour {
// Your audio clip
public AudioClip MusicClip;
// the component that Unity uses to play your clip
public AudioSource MusicSource;
// Use this for initialization
void Start () {
anonymous
anonymous / Adobe shock player.md
Created July 10, 2017 00:08
Adobe shock player

File: Download Adobe shock playershockwave plugin chrome shockwave flash crash shockwave flash firefox shockwave flash object shockwave flash plugin chrome .swf player adobe shockwave test adobe shockwave chrome   Download Adobe ShockWave Player for Windows now from Softonic: 100% safe and virus free. More than 2355 downloads this month. Download Adobe Adobe Shockwave Player helps deliver best content the Web has to offer - including dazzling 3D games and entertainment, interactive product demonstrations, Test Adobe Shockwave Player. When you see the animation playing below the labeled box, then your installation was successful. 23 Feb 2017 Follow these steps to download and install Adobe Shockwave Player and then enable Shockwave Player in your browser. Adobe ShockWave Player,

@ranveeraggarwal
ranveeraggarwal / kisscartoon.py
Created April 27, 2016 11:09
A script to download videos off KissCartoon
# I am not the author of this script. I just keep it here because it is infinitely useful.
__author__ = 'Jan'
import base64
from bs4 import BeautifulSoup
import cfscrape
from pySmartDL import SmartDL
import os.path
import argparse
@king1600
king1600 / cleverbot.py
Created August 17, 2017 20:53
Cleverbot public api wrapper for python3
import asyncio
from hashlib import md5
from collections import deque
from aiohttp import ClientSession
from collections import OrderedDict
from urllib.parse import quote as qs
# try to use uvloop if possible
try:
import uvloop
@MiataBoy
MiataBoy / slashcommands.md
Last active October 25, 2021 19:34
An explanation composed of reasons why Slash commands are not good.

Slash commands

Slash commands, as we know are one of discord's new features released for bots to integrate into discord servers better. However, these same slash commands are not very appreciated by many members of the developer community. Several reasons will be explained here.

Danny - former discord.py maintainer

First, we start off by including arguments from Danny - the former discord.py maintainer who stepped down, and archived discord.py. (Looking for a fork? Try https://github.com/iDevision/enhanced-discord.py).

The link to the full gist created by Danny in whereabouts to his leave from d.py can be found here.

Around July and August 2020, the Discord employees started talking to the people in the Discord Infrastructure server about the possibility of Slash Commands finally coming to Discord. This feature was one that had been in the talks since the very beginning of Discord's history, so some people were hyped it was finally c

@itslukej
itslukej / a_lot_of_bots.json
Created February 13, 2018 23:54
Discord Bots
[
{
"discord_id": "247056469894103041",
"name": "Tink",
"invite": "https://discordapp.com/oauth2/authorize?permissions=8&scope=bot&client_id=247056469894103041",
"short_desc": "A multipurpose bot for Discord.",
"support_invite": null,
"prefix": "+"
},
{
@NovaFox161
NovaFox161 / december-summary.md
Created December 17, 2021 21:00
DDevs Q&A Summary 17/12/2021

DDevs Q&A December 2021 Summary - Happy Holidays!

Forward

This is a nonexhaustive summary of the DDevs Q&A stage. Most of the points below are paraphrased for brevity. Ephasis is my own unless explicitly stated, and my opinions on certain things may shine through. Please refer to a VOD of the stage for the exact wording from the Discord Developers.

Upcoming Features (and demos if available)

  • Application Commands Permissions V2
    • "Super super super close"
    • Will not release before the holidays because fixing things on christmas is just not cool
  • Closed beta testing will occur after the holidays
@NotSoSuper
NotSoSuper / help.lua
Last active October 25, 2023 16:04
NotSoBot Help Documentation
Complete command list of NotSoBot <439205512425504771>:
Owner: NotSoSuper <296044494812479498>
Prefix: .
* = Not Required
^ = Bot Owner Only
^^ = Server Admin Only
"/'s" in commands show aliases for the command (Ex: ".reverse/r <text>" Command can be run with .reverse or .r)
<max_messages> = The number of messages to search through
<image> = The image URL, @discord_user, the users name, discord/custom emoji, or, nothing inputted which will search through 25 messages for embeds or attachments
<image-face> = Image requires a HUMAN FACE to be included
@ariankordi
ariankordi / inklingtalk.py
Created September 14, 2017 00:08
discord.py script for me to pipe audio from vgmstream
import os, time, subprocess
import discord
from discord.ext.commands import Bot
main = Bot(command_prefix=("did you get me my CHEEZ WHIZ bo"))
discord.opus.load_opus('/usr/local/Cellar/opus/1.2.1/lib/libopus.dylib')
@main.event
async def on_voice_state_update(b, a):
if not a.voice.voice_channel:
#!/usr/bin/env python3
"""
Converts between QD and FDS disk images
"""
import struct
def create_fds_header(side_count):
return b"FDS\x1A" + bytes([side_count & 0xFF]) + bytes(11)