Skip to content

Instantly share code, notes, and snippets.

View madureira's full-sized avatar
💡
Always learning something!

Rafael Madureira madureira

💡
Always learning something!
View GitHub Profile
@madureira
madureira / .alacritty.yml
Created February 11, 2023 23:00
My personal Alacritty configuration
env:
TERM: xterm-256color
window:
decorations: full
opacity: 0.9
dynamic_title: true
@madureira
madureira / hello.asm
Created April 9, 2019 12:16
Hello World in Assembly (NASM)
; ----------------------------------------------------------------------------------------
; "Hello, World" in Assembly.
; *Runs on 64-bit Linux only.
;
; $ nasm -felf64 hello.asm -o hello.o && ld hello.o -o hello && rm hello.o && ./hello
; ----------------------------------------------------------------------------------------
global _start
section .text
const Heading = function(weight, text) {
this.weight = weight;
this.text = text
};
const Node = function(heading, children) {
this.heading = heading;
this.children = children;
};
/**