- 🔭 zmk-nice-oled – Vertical widgets for OLED & MiP-LCD screens using ZMK (split & non-split)
- 🖥️ zmk-dongle-display-view – Horizontal widgets for OLED & MiP-LCD screens, ready-made widgets
- 🧩 zmk-oled-adapter – Adapter for OLEDs in ZMK without modifying keyboard shields
- 🧰 zmk-config – Quickly and easily configure your wireless Corne / Sofle / Lily58 keyboard with ZMK.
- ⚙️ qmk-config – Quickly and easily configure your keyboard using QMK
- 👤 qmk_userspace – QMK USER SPACE for keyboards
- 🛠️ vimtools – Swiss-army knife for Vim (features & settings to speed you up)
- 🌲 gm – Cross-platform Git manager with a friendly UI
- 🧾 vim-better-header – Automated, clean file headers
▶️ vim-executor – Multi-language code executor
Tipp: Click on the project names to jump directly to the repos.
Execute make run
in your thoughts to see the exit of the code ;)
/* =======================================================
* Languages & Tools (README)
* FileName: readme.c
* Run: /usr/bin/clang -O2 readme.c -o readme && ./readme
* =======================================================
*/
#include <stdio.h>
#define COUNT(a) (sizeof(a) / sizeof((a)[0]))
static const char* OS[] = { "Linux", "macOS", "Windows"};
static const char* LANG[] = { "C", "Python", "R", "Java" };
static const char* EDITOR[] = { "Vim" };
static const char* SHELLS[] = { "Bash" };
static const char* TOOLS[] = { "Docker", "Git" };
static void show(const char* title, const char* v[], size_t n) {
printf("• %-7s: ", title);
for (size_t i = 0; i < n; ++i) printf("%s%s", v[i], (i + 1 < n ? ", " : "\n"));
}
int main(void) {
puts("{");
show("OS", OS, COUNT(OS));
show("Code", LANG, COUNT(LANG));
show("Editor", EDITOR, COUNT(EDITOR));
show("Shell", SHELLS, COUNT(SHELLS));
show("Tools", TOOLS, COUNT(TOOLS));
puts("}");
return 0;
}
// vim: set fdm=marker:
- corne keyboard animaciones con QMK (bongocat, luna, crab, ocean-dream) | MC Technology
- corne keyboard animaciones para teclado custom con QMK (bongocat y mas ...) | MC Technology
- corne keyboard full wireless nicenano tutorial (guia facil) | MC Technology
- Ejecuta y depura código en VIM con SOLO 1 click + multiterminales | MC Technology
- Depurando en VIM con vimspector | MC Technology