Skip to content

Instantly share code, notes, and snippets.

View TheEssem's full-sized avatar
🔊
audio is cool shoutouts to audio

Essem TheEssem

🔊
audio is cool shoutouts to audio
View GitHub Profile
[Command] 254535566090043393/AwesomeBroGaming (*play https://www.youtube.com/watch?v=pGvdvT_XWWI)
ERROR: Signature extraction failed: Traceback (most recent call last):
File "/usr/local/lib/python3.5/site-packages/youtube_dl/extractor/youtube.py", line 1011, in _decrypt_signature
video_id, player_url, s
File "/usr/local/lib/python3.5/site-packages/youtube_dl/extractor/youtube.py", line 925, in _extract_signature_function
errnote='Download of %s failed' % player_url)
File "/usr/local/lib/python3.5/site-packages/youtube_dl/extractor/common.py", line 519, in _download_webpage
res = self._download_webpage_handle(url_or_request, video_id, note, errnote, fatal, encoding=encoding, data=data, headers=headers, query=query)
File "/usr/local/lib/python3.5/site-packages/youtube_dl/extractor/common.py", line 426, in _download_webpage_handle
urlh = self._request_webpage(url_or_request, video_id, note, errnote, fatal, data=data, headers=headers, query=query)
Task exception was never retrieved
future: <Task finished coro=<MusicPlayer.websocket_check() done, defined at /home/pi/Bots/ABGMusic/musicbot/player.py:280> exception=TimeoutError()>
Traceback (most recent call last):
File "/home/pi/Bots/ABGMusic/musicbot/player.py", line 287, in websocket_check
assert self.voice_client.ws.open
AssertionError
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
#!/usr/bin/python
import praw
import pdb
import re
import os
# Create the Reddit instance
reddit = praw.Reddit('bot1')
@TheEssem
TheEssem / TravisLog
Last active February 1, 2018 19:17
removed '/etc/apt/sources.list.d/basho_riak.list'
W: http://dl.hhvm.com/ubuntu/dists/trusty/InRelease: Signature by key 36AEF64D0207E7EEE352D4875A16E7281BE7A449 uses weak digest algorithm (SHA1)
W: GPG error: http://repo.mongodb.org/apt/ubuntu trusty/mongodb-org/3.2 Release: The following signatures were invalid: KEYEXPIRED 1507497109
W: The repository 'http://repo.mongodb.org/apt/ubuntu trusty/mongodb-org/3.2 Release' is not signed.
W: Failed to fetch http://ppa.launchpad.net/couchdb/stable/ubuntu/dists/trusty/InRelease Could not connect to ppa.launchpad.net:80 (91.189.95.83), connection timed out
W: Failed to fetch http://ppa.launchpad.net/git-core/ppa/ubuntu/dists/trusty/InRelease Unable to connect to ppa.launchpad.net:http:
W: Failed to fetch http://ppa.launchpad.net/openjdk-r/ppa/ubuntu/dists/trusty/InRelease Unable to connect to ppa.launchpad.net:http:
W: Failed to fetch http://ppa.launchpad.net/pollinate/ppa/ubuntu/dists/trusty/InRelease Unable to connect to ppa.launchpad.net:http:
W: Failed to fet
Reason I'm gone is that my school found my private account and told my parents some of the stuff I posted there.
They forced me to close my twitter and discord, and told me not to upload on yt no more.
I regret making that private, as it was mostly because everyone else had one and it caused me to have to quit social media. My parents said I can rejoin when I turn 16 (I'm 13 now, will turn 14 in October)
As a result, I will return fully sometime in October 2020, under a new usernane, "MantleM"
Tell your friends that making a vent twitter isn't worth it, anybody can find it, and you don't need to post that shit online. (For the record, it was mostly sexual vents on the private that got me nae nae'd.)
Tell your friends, so they don't become me.
- zzcolby27, the former peanut god.
@TheEssem
TheEssem / esmBotCommands.md
Last active December 20, 2019 01:58
Command list for esmBot

THIS IS THE OLD ESMBOT COMMAND LIST. THE NEW ONE CAN BE FOUND HERE: https://projectlounge.pw/esmBot/help.html

esmBot Command List

by Essem#9261

[] means an argument is required, {} means an argument is optional.

Default prefix is &.

Tip: Use Ctrl+F to find the command you want!

beavis.zen
bong
bud-frogs
bunny
cheese
cower
daemon
default
doge
dragon-and-cow

esmBot

esmServer Codacy Badge GitHub license

esmBot is an entertainment-focused Discord bot made using Discord.js with soundboard and image manipulation commands.

Usage

A command list can be found here.

Credits

Logo by The_STEEL_Show.

@TheEssem
TheEssem / MarkdownGistToWebpage.html
Created November 29, 2018 17:45
Make webpage from gist containing markdown
<!DOCTYPE html>
<html>
<head>
<title>Markdown Gist</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/github-markdown-css/2.10.0/github-markdown.min.css">
<style>
.markdown-body {
box-sizing: border-box;
min-width: 200px;
@TheEssem
TheEssem / pixelate.sh
Last active May 30, 2019 19:28
5-line bash script to demonstrate that this takes no effort
for file in ~/images/*
do
filename=$(basename -- "$file")
convert ~/images/$filename -scale 10% -scale 1000% ~/out/$filename
done