Last update on: 2024-11-07
Please insert in alphabetical order Please make sure all entries start with "* "
- ➖: Placeholder
NAME PLATFORM CATEGORY COMMENT | |
==================================================================== | |
anki " @android @pc #vocab () | |
babbel ' @android @web #course (spanish) | |
beelinguapp ' @android #reading () | |
bunpo ' @android #grammar () | |
bunpro ' @android @web #grammar (japanese) | |
busuu $ @android @web #vocab () | |
chatterbug $ @android #streams (spanish) | |
clozemaster ' @android @web #vocab () |
name | web | mobile | paid | textbook | grammar | srs | vocab | visual vocab | cloze vocab | writing vocab | subs | reading | kana | kanji reading | kanji writing | audio | speaking | pitch | media | games | dictionary |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
bunpro | yes | yes | yes' | no | yes | yes | no | no | no | no | no | no | no | no | no | no | no | no | no | no | ? |
bunpo | no | yes | yes' |
Empty Project Export sizes on Windows for Game Engines, Game Frameworks, Virtual Consoles and Game Programming Languages
Name | Size ↑¹ | Size (compressed with UPX ) ↑² | Link |
---|---|---|---|
rxi/kit | 55.00 KB | 30.50 KB | 🔗 |
WASM-4 (c version) | 236.00 KB | ??? | 🔗 |
raylib | 0.99 MB | 275.00 KB | 🔗 |
BlitzMax (MaxIDE 1.43) | 1.49 MB | 650.00 KB | 🔗 |
rxi/juno | 1.61 MB | 759.00 KB | 🔗 |
PICO-8 | 2.37 MB | 987.00 KB | 🔗 |
document.onkeypress=function(e){ | |
var KEY_R = 114; | |
var KEY_X = 120; | |
var KEY_Y = 121; | |
var KEY_C = 99; | |
var KEY_P = 112; | |
var KEY_S = 115; | |
var KEY_H = 104; | |
var e = e || window.event; |
/* | |
how to install: | |
- visit about:support | |
- open profile folder | |
- create/edit chrome\userContent.css file | |
*/ | |
@-moz-document url-prefix("about:reader") { | |
/* fix toolbar */ | |
.toolbar { |
I hereby claim:
To claim this, I am signing this object:
@ECHO OFF | |
REM Example: Cmder.bat vim hello_world.c | |
REM will run vim hello_world.c inside Cmder | |
REM Note Add following line at the end of init.bat (without REM) | |
REM @if not "%*" == "" %* | |
SET "CMDER_ROOT=%~dp0" | |
IF "%ConEmuDir%" == "" SET "ConEmuDir=%CMDER_ROOT%\vendor\conemu-maximus5" | |
START "" "%ConEmuDir%\ConEmu.exe" /Icon "%CMDER_ROOT%\icons\cmder.ico" /Title Cmder /LoadCfgFile "%CMDER_ROOT%\config\ConEmu.xml" /cmd cmd /k ""%ConEmuDir%\..\init.bat" %*" -new_console:d:%USERPROFILE% |
fn main() { | |
struct Magic<T> { val: T } | |
let i = "string"; | |
println!("i = {}", i); | |
let Magic { val: mut i } = Magic { val: 5u }; | |
println!("i = {}", i); | |
i = 7; |