index | type | original_key_name | value |
---|---|---|---|
1 | LINE | LOADING_LINE_1 | "Discord was almost called Bonfire before we picked our name. It was meant to be nice and cozy." |
2 | LINE | LOADING_LINE_2 | "Discord was almost called Wyvern before we picked our name. Not too proud of that one." |
4 | LINE | LOADING_LINE_4 | 'There are a bunch of hidden "Easter Eggs" in the app that happen when you click certain things...' |
5 | LINE | LOADING_LINE_5 | "Discord started as a game company making a mobile game called Fates Forever." |
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
{ | |
"100": "Continue", | |
"101": "Switching Protocols", | |
"102": "Processing (WebDAV; RFC 2518)", | |
"103": "Early Hints (RFC 8297)", | |
"200": "OK", | |
"201": "Created", | |
"202": "Accepted", | |
"203": "Non-Authoritative Information (since HTTP/1.1)", | |
"204": "No Content", |
I hereby claim:
- I am happyendermangit on github.
- I am happyenderman (https://keybase.io/happyenderman) on keybase.
- I have a public key whose fingerprint is 5D4B B3F8 F7D0 79F0 8396 FAEF AB61 F34F AD41 762B
To claim this, I am signing this object:
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
/** modify voice message button color **/ | |
button[aria-label="Voice message"] { | |
background-color: #21C063; | |
border-radius: 50px; | |
} | |
button[aria-label="Voice message"] svg { | |
width: 20px; | |
height: 20px; | |
} |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<meta | |
content="width=device-width,initial-scale=1,maximum-scale=3" | |
name="viewport" | |
/> | |
<!-- section:seometa --> |
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_URL = "http://localhost/Isos"; | |
const result = []; | |
Array.prototype.map_pattern = function (pattern) { | |
return this.map(item=>item.match(pattern)) | |
} | |
Array.prototype.filter_valids = function (pattern) { | |
return this.filter(item=>item) |