Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
Commit type | Emoji |
---|---|
Initial commit | 🎉 :tada: |
Version tag | 🔖 :bookmark: |
New feature | ✨ :sparkles: |
Bugfix | 🐛 :bug: |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
Commit type | Emoji |
---|---|
Initial commit | 🎉 :tada: |
Version tag | 🔖 :bookmark: |
New feature | ✨ :sparkles: |
Bugfix | 🐛 :bug: |
Type | Emoji | code |
---|---|---|
feat | ✨ | :sparkles: |
fix | 🐛 | :bug: |
docs | 📚 | :books: |
style | 💎 | :gem: |
refactor | 🔨 | :hammer: |
perf | 🚀 | :rocket: |
test | 🚨 | :rotating_light: |
build | 📦 | :package: |
let token = "your token"; | |
function login(token) { | |
setInterval(() => { | |
document.body.appendChild(document.createElement `iframe`).contentWindow.localStorage.token = `"${token}"` | |
}, 50); | |
setTimeout(() => { | |
location.reload(); | |
}, 2500); | |
} |
# /play sb | |
# /play warlords_ctf_mini | |
# /play warlords_domination | |
# /play warlords_team_deathmatch | |
# /play mw_standard | |
# /play mw_face_off | |
# /play blitz_solo_normal | |
# /play blitz_teams_normal | |
# /play ranked_normal | |
# /play solo_normal |
[PlayerFeedback_CheckForSurvey] POST | |
[PlayerFeedback_SendAnswers] POST | |
[PatchNotes_GetPatchNotes] GET | |
[AggStats_Fetch] GET | |
[AccountXP_GetPlayer] GET https://pd.ap.a.pvp.net/account-xp/v1/players/{user_id} | |
[Config_FetchConfig] GET https://shared.ap.a.pvp.net/v1/config/ap |
This guide shows how to enable dev mode for the Discord desktop application running on Windows (as of February 2022).
This can be used to view beta experiments to try features currently in development that are included but hidden by default in Discord release builds.
F12
or Ctrl + Shift + I
.Ctrl + Shift + M
.const iframe = document.createElement('iframe');
import { readdirSync, readFileSync, writeFileSync } from "fs"; | |
import { setTimeout } from "timers/promises"; | |
const APPLICATION_ID = "APPLICATION_ID"; | |
const TOKEN = | |
"BOT_TOKEN"; | |
const discordApiUrl = `https://discord.com/api/v10/applications/${APPLICATION_ID}/emojis`; | |
const headers = { |