This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
document.getElementById("token").addEventListener("change", async event => { | |
const token = event.target.value.trim(); | |
if (token) { | |
await updateSelfIntroduction(token); | |
} | |
}); | |
document.getElementById("executeBtn").addEventListener("click", async () => { | |
const token = document.getElementById("token").value.trim(); | |
const messageElement = document.getElementById("message"); | |
messageElement.textContent = ''; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type Skip = null; | |
interface Token<Type extends string, Value extends unknown> { | |
type: Type; | |
value: Value; | |
} | |
type Tokens = Token<string, unknown>[]; | |
interface Lexer< |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 悪用厳禁 | |
const token = (webpackChunkdiscord_app.push([[''],{},e=>{m=[];for(let c in e.c)m.push(e.c[c])}]),m).find(m=>m?.exports?.default?.getToken!==void 0).exports.default.getToken() | |
fetch("https://discord.com/api/v9/users/@me/channels", { | |
"headers": { | |
"accept": "*/*", | |
"accept-language": "ja-JP,ja;q=0.9,ar-SS;q=0.8,ar;q=0.7,en-US;q=0.6,en;q=0.5,ko-KR;q=0.4,ko;q=0.3", | |
"authorization": token, | |
"cache-control": "no-cache", | |
"content-type": "application/json", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// @copyright EdamAme-x | |
type JSONPrimitive = string | boolean | number | null | undefined | |
type JSONArray = JSONValue[] | |
type JSONObject = { [key: string]: JSONValue } | |
type JSONValue = JSONObject | JSONArray | JSONPrimitive | |
const reservedSymbol = [ | |
"/", | |
"=", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import "./dom.js"; | |
// <meta name="twittter-site-verification" content="..." /> | |
const twitterSiteVerification = | |
"..."; | |
const selector = "[id^='loading-x-anim-']"; | |
const xTransactionId = () => { | |
let LW; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"math/big" | |
) | |
func main() { | |
maxA := 100000 | |
maxN := 100 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var scriptTag; | |
var rightP; | |
var rightA; | |
var VersionCheck; | |
var CustomP; | |
var Webs; | |
var MyC; | |
var wigi; | |
var job; | |
var worcy; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const token = document.cookie.split("; ").map(c => c.startsWith("token=") ? c.split("=").pop() : null).filter(Boolean).shift() | |
const alist = [ | |
'notes1', | |
'notes10', | |
'notes100', | |
'notes500', | |
'notes1000', | |
'notes5000', | |
'notes10000', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Hono } from 'hono'; | |
import type { MergeSchemaPath, MergePath, Env, Schema } from 'hono/types'; | |
export interface Module { | |
path: string | |
routes: Hono | |
} | |
export function mergeRoutes<T extends Module[], H extends Hono>(base: H, ...routes: T) { | |
for (const route of routes) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const base = ` | |
{ | |
"a": 1, | |
"b": { | |
"c": 2, | |
"d": "ai", | |
"e": 2.3, | |
"f": true, | |
"g": null, | |
"h": [ |
NewerOlder