Skip to content

Instantly share code, notes, and snippets.

View L1shed's full-sized avatar

Lished L1shed

  • Fusion Network
  • France
View GitHub Profile
@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active June 29, 2024 23:32
Complete Recent Discord Quest

Complete Recent Discord Quest

Note

This no longer works in browser!

This no longer works if you're alone in vc! Somebody else has to join you!

Warning

There are now two quest types ("stream" and "play")! Pay attention to the instructions!

@L1shed
L1shed / DiscordWebhook.kt
Last active February 7, 2024 16:13
Kotlin tool for Discord Webhooks communications. 7 years later...
import java.awt.Color
import java.io.IOException
import java.io.OutputStream
import java.net.URL
import javax.net.ssl.HttpsURLConnection
class DiscordWebhook(private val url: String) {
var content: String? = null
var username: String? = null
var avatarUrl: String? = null
@k3kdude
k3kdude / DiscordWebhook.java
Created August 17, 2017 15:31
Java DiscordWebhook class to easily execute Discord Webhooks
import javax.net.ssl.HttpsURLConnection;
import java.awt.Color;
import java.io.IOException;
import java.io.OutputStream;
import java.lang.reflect.Array;
import java.net.URL;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;