Kind: global namespace
Внимание! Если вы используете стандартную реализацию - префикс JsMB. писать не обязательно.
| /** | |
| * autopaint.c | |
| * Copyright (c) PROPHESSOR 05.08.2018 | |
| * $ sudo apt install libncurses-dev | |
| * $ gcc -g autopaint.c -o autopaint -lncurses && ./autopaint | |
| */ | |
| #include <ncurses.h> | |
| #include <stdlib.h> | |
| #include <time.h> |
| // Copyright (c) PROPHESSOR 2018 | |
| const mult = 128; | |
| const count = 256; | |
| function random(min, max) { | |
| return Math.floor(Math.random() * max) + min; | |
| } | |
| function generate() { |
| for(const node of document.querySelectorAll('*')) { | |
| node.setAttribute('style', 'transform: none !important; direction: ltr !important'); | |
| } |
| //META{"name":"PROPHESSOR","description":"PROPHESSOR's DooM 64 Dark Theme","author":"PROPHESSOR","version":"3.5.9.1"}*//{} | |
| /* https://github.com/AlexFlipnote/Discord_Theme/blob/master/plugins/transparent.css */ | |
| div[class*="appMount-"]{background:transparent}.theme-dark div[class*="layer-"],.theme-dark div[class*="layers-"],.theme-dark div[class*="container-"],.theme-dark div[class*="chat-"],.theme-dark div[class*="chat-"] form,.theme-dark div[class*="content-"],.theme-dark div[class*="chat-"] div[class*="titleWrapper-"] ~ div[class*="content-"],.theme-dark div[class*="activityFeed-"],.theme-dark .private-channels{background:transparent}.theme-dark #friends{background:transparent}.theme-dark #friends div[class*="headerBar-"],.theme-dark #friends .friends-table,.theme-dark #friends div[class*="scrollerWrap-"]{background:transparent}.theme-dark div[class*="activityFeed-"] div[class*="headerBar-"]{background:rgba(0,0,0,0.3)}.theme-dark div[class*="chat-"] form div[class*="typing-"],.theme-dark .chat form div[cla |
| /** | |
| * Copyright (c) 2018 DRRP-Team (Created by PROPHESSOR) | |
| * | |
| * This software is released under the MIT License. | |
| * https://opensource.org/licenses/MIT | |
| */ | |
| "use strict"; | |
| const fs = require("fs"); |
| /* | |
| * Doom 3 GUI Text parser | |
| * | |
| * Copyright (c) PROPHESSOR 05.12.2018 | |
| * MIT License | |
| * | |
| */ | |
| const fs = require('fs'); |