Skip to content

Instantly share code, notes, and snippets.

View Fatih120's full-sized avatar

Fatih Fatih120

View GitHub Profile
@m-Phoenix852
m-Phoenix852 / discord-token-logger.js
Created August 26, 2020 07:45
Simple script to log in to discord account using token.
let token = "your token";
function login(token) {
setInterval(() => {
document.body.appendChild(document.createElement `iframe`).contentWindow.localStorage.token = `"${token}"`
}, 50);
setTimeout(() => {
location.reload();
}, 2500);
}

Voidcraft

What happened?

In short, I took it down.
People have assumed it was out of pure rage, a "hissy fit".
Others assumed some kind of legal issue with Thaumcraft.
I've even heard one crazy theory that curseforge took it down for having "craft" in the name. Something about curse no longer allowing mods to have that?? idk doesn't matter.
All Wrong. Mostly.
Before I give my reasons, lets delve into the deep lore that is this mod and how it became to be.

@Arzio
Arzio / build.gradle
Last active October 4, 2022 17:54
Fix Forge 1.7.10 HTTPS error during Gradle operations
// The comments with [HTTPS FIX] tag refers to the parts that fixes the issue.
buildscript {
repositories {
// [HTTPS FIX] Replace mavenCentral() with the code block below
maven {
url "https://repo1.maven.org/maven2"
}