Skip to content

Instantly share code, notes, and snippets.

View Virenbar's full-sized avatar
🦊

Virenbar

🦊
View GitHub Profile
@Soheab
Soheab / API's.md
Last active July 18, 2024 23:23
See here some of the API's you can use in your discord bot or anything

Some API's for you.

See here some of the API's you can use in your discord bot or anything. For any help or questions on how to use one, please contact the owner of the API and not me.

A much bigger list of APIs can be found here


[TOKEN] = API requires a token to access some if not all endpoints.

The descriptions are mostly copied from the API, sometimes personal or from the dev.

anonymous
anonymous / music.js
Created January 28, 2018 16:21
Music Download Bookmarklet
javascript:!function() {
if (window._A_A_A_A_) {
alert('Already installed');
return;
}
window._A_A_A_A_ = true;
var _Audio_prototype_play=Audio.prototype.play;
var _PrevAudio = null;
var div = document.createElement('div');
div.style = "position:fixed;left:0;top:0;right:auto;bottom:auto;z-index:2000000000;border:5px solid black;background:white;color:black";
@Athari
Athari / ReadMe.md
Last active August 14, 2023 19:51
[User Style] e621.net — Tricksta Esix

[![Screenshot]][Screenshot]

[![Install directly with Stylus][Shield Stylus]][CSS]

Features

  1. Tricksta's Esix on the front page of e621.net as a mascot.
  2. Restyled controls on the front page to match the image.
  3. Small Esix at the bottom of each page.
@timvisee
timvisee / falsehoods-programming-time-list.md
Last active July 21, 2024 05:06
Falsehoods programmers believe about time, in a single list

Falsehoods programmers believe about time

This is a compiled list of falsehoods programmers tend to believe about working with time.

Don't re-invent a date time library yourself. If you think you understand everything about time, you're probably doing it wrong.

Falsehoods

  • There are always 24 hours in a day.
  • February is always 28 days long.
  • Any 24-hour period will always begin and end in the same day (or week, or month).
@jagrosh
jagrosh / WebhookTutorial.md
Last active December 4, 2023 20:28
Simple Webhook Tutorial (Twitter -> Discord)

Simple Webhook Tutorial

In this tutorial, I will be explaining how to set up a simple webhook to relay your tweets to a Discord channel

Step 1 - Register on Zapier

  1. Go to https://zapier.com/ and create an account (if you don't already have one).

Step 2 - Make a Discord Webhook

  1. Find the Discord channel in which you would like to send Tweets
@hibiyasleep
hibiyasleep / GodDrinksJava.java
Last active July 18, 2024 18:57
world.execute(me);
package goddrinksjava;
/**
* The program GodDrinksJava implements an application that
* creates an empty simulated world with no meaning or purpose.
*
* @author momocashew
* @lyrics hibiyasleep
*/
@DmitrySoshnikov
DmitrySoshnikov / LL-parser.js
Last active February 15, 2023 14:54
LL-parser
/**
* = LL parser =
*
* by Dmitry Soshnikov <dmitry.soshnikov@gmail.com>
* MIT Style license
*
* Often one can see manually written LL parsers implemented as
* recursive descent. Approach in this diff is a classical parse table
* state machine.
*