This file contains hidden or 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
// ==UserScript== | |
// @name StackEdit Image Extension | |
// @namespace http://chri.sh/ | |
// @version 0.4.1 | |
// @description Add image-pasting capability to StackEdit editor. | |
// @author chrahunt | |
// @match https://stackedit.io/editor | |
// @run-at document-end | |
// @grant none | |
// @downloadURL https://gist.github.com/chrahunt/c27686b095a390c26ff8/raw/se-image-paste.user.js |
-
Download the latest zip file from https://github.com/rauenzi/BetterDiscordApp/releases. The file will likely be named
BetterDiscord_*_win.zip
. -
Downlod themes and plugins from https://betterdiscordlibrary.com/.
-
Place themes in
%AppData%\BetterDiscord\themes
, and plugins in%AppData%\BetterDiscord\plugins
. -
Enable or disable themes and plugins under user settings.
Recommended plugins:
- PreventSpotifyAutoPause: https://raw.githubusercontent.com/Metalloriff/BetterDiscordPlugins/master/PreventSpotifyAutoPause.plugin.js
This file contains hidden or 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
//META{"name":"Holo","description":"","author":"github.com/rzjnzk","version":"0.0.1"}*//{} | |
#app-mount .app-2rEoOp | |
{ | |
/* background-color: transparent; */ | |
background-image: url(https://i.imgur.com/nLRfaKa.jpg); | |
background-size: cover; | |
} | |
.da-titleBar |
This file contains hidden or 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
//META{"name":"Holo","description":"","author":"github.com/rzjnzk","version":"0.0.1"}*//{} | |
#app-mount .app-2rEoOp | |
{ | |
/* background-color: transparent; */ | |
background-image: url(https://i.imgur.com/nLRfaKa.jpg); | |
background-size: cover; | |
} | |
.da-titleBar |
This file contains hidden or 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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <time.h> | |
#include <string.h> | |
#include <linux/limits.h> | |
int main(int argc, char *argv[]) | |
{ | |
printf("begin"); |
This file contains hidden or 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
ignorePatterns: | |
- "**/node_modules/**" | |
overrides: | |
# `.mjs`. | |
- files: | |
- "**/*.mjs" | |
extends: | |
- eslint:recommended | |
env: | |
node: true |