Skip to content

Instantly share code, notes, and snippets.

View evelynharthbrooke's full-sized avatar

Evelyn Harthbrooke evelynharthbrooke

View GitHub Profile
// force certain pages to be refreshed every time. mark such pages with
// 'data-cache="never"'
//
jQuery('div').live('pagehide', function(event, ui){
var page = jQuery(event.target);
if(page.attr('data-cache') == 'never'){
page.remove();
};
});
@adamawolf
adamawolf / Apple_mobile_device_types.txt
Last active July 18, 2024 02:00
List of Apple's mobile device codes types a.k.a. machine ids (e.g. `iPhone1,1`, `Watch1,1`, etc.) and their matching product names
i386 : iPhone Simulator
x86_64 : iPhone Simulator
arm64 : iPhone Simulator
iPhone1,1 : iPhone
iPhone1,2 : iPhone 3G
iPhone2,1 : iPhone 3GS
iPhone3,1 : iPhone 4
iPhone3,2 : iPhone 4 GSM Rev A
iPhone3,3 : iPhone 4 CDMA
iPhone4,1 : iPhone 4S
import os
from functools import wraps
from sqlalchemy import create_engine, Column, Integer, String
from sqlalcheny.ext.declarative import declarative_base
from sqlalchemy.orm import sessionmaker
def is_admin(func):
"""Checks wether the user who issues the command is the admin.
Use this if there's supposed to be one, and only one admin."""
@EvieePy
EvieePy / music.py
Last active March 7, 2024 21:00
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