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
-- "fa" is a number ranging from 0 to 1 | |
-- 1 = 100% faded out | |
-- 0 = 0% faded out | |
-- 0.5 = 50% faded out, etc. | |
function fade_scr(fa) | |
fa=max(min(1,fa),0) | |
local fn=8 | |
local pn=15 | |
local fc=1/fn |
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
cave story amateur translation | |
- menu screen | |
ζεγγ | |
γγγγγγγγ | |
βstart from the beginningβ | |
ηΆγγγ | |
γ€γ₯γγγγ | |
βcontinueβ |
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
// functionally "push" values from an Array onto an Object with UUID as key | |
import _ from 'lodash'; | |
import uuid from 'uuid'; | |
let oldguy = { "pretend-uuid": 9001 }; | |
let values = [1, 2, 3]; | |
Object.assign({}, oldguy, _.fromPairs( | |
_.map(values, (value) => [uuid(), value]) | |
)); |
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
VM586:1 ππ©π πππππππ‘π π ππ¦ π€πππ π©πππ π’π . | |
VM586:1 πππππππ‘ππ π ππ¦ π€πππ ππππ ππ’π ππππππππππ ππππ©π‘. | |
VM586:1 ππ©π πππ’πππππ π π©πππ£ππ π€πππ ππππ ππ’π ππππππ ππππ©π‘. | |
VM586:1 πΆπ©πππ π π¦ππ’π π£πππ‘π’ππ πππ©π. | |
VM586:1 ππ©π πππππππ‘π πππ¦ ππ π‘π©π π πππππ ππ’π π‘. | |
VM586:1 πΆππππππ‘π π¦ππ’ππ πππ ππ π πππ-ππππππ§ππ‘πππ. | |
VM586:1 πππ’ ππππππ£π π‘π©ππ‘ π‘π©ππ π π©πππ£πππ π€πππ ππππ π¦ππ’. | |
VM586:1 ππ©π π΄.πΌ.ππππ'π πππ‘π ππ π πππππ. | |
VM586:1 πππ’ π€πππ ππππππ π π πππ-πΈππ©π ππ ππππ ππππ‘πππππ . | |
VM586:1 ππ’π πππ¦ ππ π‘π©π πππ©π π‘π π‘π©ππ πππππ πππ¦ππ. |
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
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDKwpReSF0JCiwORkqBEXsh2jko6PLxim1GrdP+UkvqKsaxktU0xH2ayO4MGEOWUPLzpG/KrEG62aeiSqFh/Ls5tr7Vclh0auHmqnkFMs9PKGFOeVyb1Ug3UjrkdJk3swkCF7dOzbJwEitV4R222/NcFqLjD8MN1JQDHs/sR3ERn1PvR0vzHZrFc2/tqs+0FM73f2u7Gjj3Qy61Tj6sbugtvzNS73yxuVvzfc0pcrApCfVF7ZZX5EkyJxsmmz2e0BpzByhTEHE8w+0Z8BeL37Tm+EkHIH5qE8AVySWyMcG6/EuCLdhot4UFZE8ivHjJ3NJRscP/0UCpr6v6WSEtY55KHHL9+L4HWiD+DXVFiHGhgGoE3Wkac9g26SzVZy7If61Ivma65v8hL2Y7hpV20xe8R/EQOF3aZT/WZqhLVhckg/SF+KuH7I5FeS37O+PwMz+/bk/ZYodRtuNHKTJxYU5amXxntnn0DMxz9W8lOnQ+7lP6euemGEzu8+mfkJpKkxy78X/MnJFpVRM8LLDQQ2VshlN6wMlEDdjtLvS8wVh2GW8hFLoCXi+fBPIQz+g8r3fza4tiVFa03VcUQFWRDz22QMFW8thdqPlXd1okKGCQ/5QjLdJCJchDIMJ6+reVXlwR4EC94gAWlJmPEnwkFaqIe6BM0pJPxS9xVz6geFWKlw== [email protected] |
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
package; | |
import kha.Assets; | |
import kha.Color; | |
import kha.Framebuffer; | |
import kha.Scheduler; | |
import kha.System; | |
class Main { | |
static function update(): Void { |
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
[class*="sidebar-"] { | |
width: 125px; | |
} | |
[class*="sidebar-"] * { | |
font-size: 12px !important; | |
} | |
[class*="guilds-"] { | |
width: 40px; |
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
# Use a monochrome statusline, with host and session names on the right. | |
set-option -g status-position bottom | |
set -g status-bg black | |
set -g status-fg white | |
set -g status-left '' | |
set -g status-right ' #h: #S ' | |
# Use normal and bright monochrome colors to show a tab line on the left. | |
set -g status-justify left | |
set-window-option -g window-status-separator '' |