Skip to content

Instantly share code, notes, and snippets.

View MazeW's full-sized avatar
:octocat:

‮ezaM MazeW

:octocat:
View GitHub Profile
- [ARTCH, 宮村和生さん, "http://www.din.or.jp/%7Eabara/", "http://www.din.or.jp/%7Eabara/menu2.html"]
- [SGAS DESING BLOG.., 宮村和生さん, "http://5gas.blog17.fc2.com/", "http://5gas.blog17.fc2.com/?xml"]
- [AARDVARK, じじさん, "http://aardvark.xii.jp/", "http://aardvark.xii.jp/index.xml"]
- ["Are you me?", あゆみ.Kさん, "http://areyoume.net/", "http://areyoume.net/top.html"]
- [ああん庫, ななしさん, "http://page.freett.com/aanko/"]
- [相討ちネガティブギャング, いずみさん, "http://www.geocities.jp/negativegang/", "http://www.geocities.jp/negativegang/index_002.htm"]
- [ng18x2, いずみさん, "http://doelog.com/h/ng18x2/", "http://doelog.com/h/ng18x2/index.rss10"]
- ["icenotes, suite", 高野音彦さん, "http://icenotes.com/", "http://icenotes.com/diary/index.rdf"]
- [アイソトニクス, にーさん, "http://isotonix.jp/"]
XML.prettyPrinting = XML.ignoreWhitespace = false;
const
Name = 'bijin-tokei',
BT = 'http://www.bijint.com',
Base = [<div class={Name +' root'}
><div class="acts"
><input type="button" id="copy" accesskey="c" disabled="disabled" value="Copy"
/><input type="button" id="open" accesskey="o" disabled="disabled" value="Open"
/></div
><div id={Name} class="content"> </div
@willurd
willurd / web-servers.md
Last active August 1, 2024 04:29
Big list of http static server one-liners

Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.

Discussion on reddit.

Python 2.x

$ python -m SimpleHTTPServer 8000
@ebith
ebith / injectUserCss.js
Last active May 25, 2024 11:00
Inject CSS into a Discord client.
/*
* Usage
*
* copy core.asar from Discord app
* Win: %APPDATA%/discord/0.0.xxx/modules/discord_desktop_core/core.asar
* Mac: ~/Library/Application\ Support/discord/0.0.xxx/modules/discord_desktop_core/core.asar
* yarn add asar
* asar e core.asar core
* CSS_PATH=C:/dropbox/discordUser.css node injectUserCss.js
* asar p core core.asar
@victornpb
victornpb / deleteDiscordMessages.js
Last active July 9, 2024 07:46
Delete all your messages from DM or Channel in Discord
/*
This file is now hosted here:
https://github.com/victornpb/undiscord
*/
@dacoffey
dacoffey / app.js
Created March 23, 2021 05:58
NODE: Bare Minimum Web Server
require('http').createServer((req,res)=>{ res.writeHead(200); res.end('HELLOWORLD'); }).listen(80,'0.0.0.0');
@oSumAtrIX
oSumAtrIX / README.md
Last active July 29, 2024 11:49
Useful snippets for Discord

Discord console scripts

My collection of scripts for Discord.

Scripts

  • friend_invitelink.js: Generate a friend invite link
  • clientside_nitro.js: Spoof the client and enable client side Discord Nitro