Skip to content

Instantly share code, notes, and snippets.

@Ismael-VC
Ismael-VC / vtermtest.cpp
Created October 10, 2024 04:21 — forked from shimarin/vtermtest.cpp
SDL2 terminal emulator using libvterm
// g++ -o vtermtest vtermtest.cpp -lvterm -lutil -lSDL2 -lSDL2_ttf -licuuc
#include <termios.h>
#include <pty.h>
#include <unistd.h>
#include <stdlib.h>
#include <sys/wait.h>
#include <iostream>
#include <vector>
#include <vterm.h>
#include <SDL2/SDL.h>
Error in user YAML: (<unknown>): found character that cannot start any token while scanning for the next token at line 3 column 1
---
language: uxntal
contributors:
	- ["Devine Lu Linvega", "https://wiki.xxiivv.com"]
filename: learnuxn.tal
---

Uxntal is a stack-machine assembly language targetting the Uxn virtual machine.

Stack machine programming might look at bit odd, as it uses a postfix notation,

@shimarin
shimarin / vtermtest.cpp
Last active December 13, 2024 23:43
SDL2 terminal emulator using libvterm
/*
MIT License
Copyright (c) Tomoatsu Shimada 2024
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
# Extended Harmonica Tablature (Rhythm and Articulations, etc.)
## Standard tab notation.
| Syntax | Meaning |
|-------------|---------|
| `4` or `+4` | **Blow**: When a hole number stands by itself, or is preceded by a *plus*, the hole is tobe exhaled (blow). |
| `-4` | **Draw**: When a hole number is preceded by a *minus* the hole is to be inhaled (draw). |
| `-3'` | Half step *draw* bend |
| `10''` | Whole step *blow* bend |
@Ismael-VC
Ismael-VC / ExtHarpTab.md
Last active January 20, 2021 05:21
Extended Harmonica Tablature (Rhythm and Articulations)

Extended Harmonica Tablature (Rhythm and Articulations, etc.)

Standard tab notation.

Syntax Meaning
4, +4 Blow.
-4 Draw.
-3' half step draw bend
10'' whole step blow bend
@XlogicX
XlogicX / games.md
Last active March 30, 2025 06:34
List of Boot Sector Gamers

Boot Sector Games

A list of playable boot sector games, most of which are on github. Fun to play, great to learn from. There are also many cool non-booting boot sectors out there that aren't games (so more like demos), but this page is just reserved to interactive boot sectors / games. This list is also not complete, but not on purpose, it is a best effort collection of games, so if you know of any fun boot sector games, please contribute.

This page lists a collection of 31 games spanning several authors: nanochess, me, daniel-e, shikhin, JulianSlzr, XanClic, QiZD90, darkvoxels, guyhill, w-shackleton, egtzori, VileR, ish_works, franeklubi, queso_fuego, franeklubi, Jethro82, waternine9, tevoran, palma3k, taylor-hartman. peterferrie should also be mentioned as he has touched a lot of these games.

TetrOS

https://github.com/daniel-e/tetros

Tetris Clone. Full color, no score. This was one of the older boot sector games out there. ![tetros](https://gist.github.com/assets/1570856/3a0d1023-cbe6-4b4d-

SOBERS Assignment

Introduction

For this assignment our client has a web application that deals with accounting. One of the features is to import csv's with bank statements.

In this assignment, There is already a version that runs for a single bank. In this assignment a version is needed that is not a POC(Proof of Concept) but will be used as the main point for the bank integration feature. There for maintenance and extensibility will be important. Your task will be to create a script that parses data from different banks.

@fdidron
fdidron / ABOUT.md
Last active April 9, 2024 23:53
Ergodox-EZ Glow per layer / per key illumination

rules.mk

Contains all the directives required to activate QMK's rgb matrix features.

config.h

Sets a constant required to read the rgb matrix config from the EEPROM.

keymap.c

Custom keymap based on my layout. This is where the magic happens.

First let's declare a rgb_matrix_config variable of type rgb_config_t :

anonymous
anonymous / Dapper guide.md
Created July 6, 2017 09:19
Dapper guide

File: Download Dapper guide   From design to style to tech, Dapper Guide is a curation of the best and most exciting goods and information making the rounds on the streets and on rooftop The latest Tweets from Dapper Guide (@dapperguide). A Curation of Sophistication for the Millennial Man » media/PR: [email protected]. New York. Fashion to me is nothing but a bunch of senseless trends that come and go with the voices of “fashion” society. Style on the other hand is something tangible, The word “dapper” typically describes a man who is neat and trim in appearance, but we like to think of it as embodying something more — the highest level of So You're Go To #DapperSummer #menswear with our #dapper Guy Ben @ Ben is Back! We did a #photoshoot today with our #Dapper Guy @ #Dap

@kungfooman
kungfooman / offsetof_julia.jl
Created June 19, 2017 21:03
C's offsetof in julia
type ABC a::Int64; b::Int64; c::Int64 end
function offsetof(type_, member::Symbol)
for (i, item) in enumerate(fieldnames(type_))
if item == member
return fieldoffset(type_, i)
end
#print(typeof(i))
end
# what to do when symbol not in type_?