Skip to content

Instantly share code, notes, and snippets.

View evertonse's full-sized avatar

Everton Jr. evertonse

  • Home
  • Brazil - Sergipe
View GitHub Profile
@williamchange
williamchange / raymarch_noise.hlsl
Created November 21, 2024 09:35
raymarching noise
struct Functions {
// 3d gradient noise from iq
// https://www.shadertoy.com/view/Xsl3Dl
float3 hash( float3 p )
{
p = float3( dot(p,float3(127.1,311.7, 74.7)),
dot(p,float3(269.5,183.3,246.1)),
dot(p,float3(113.5,271.9,124.6)));
@dgalling
dgalling / add.c
Created September 8, 2024 18:09
Simple C interop example in swift
int add(int a, int b) {
return a + b;
}
@laytan
laytan / lsp.odin
Last active January 18, 2024 03:19
Incomplete LSP example Odin
package lsp
import "core:bufio"
import "core:encoding/json"
import "core:io"
import "core:log"
Null :: distinct struct{}
Initialize_Error :: Response_Error(Initialize_Error_Data)
Complete stuff:
https://xmonader.github.io/letsbuildacompiler-pretty/
Lexers + DFAs:
https://gist.github.com/pervognsen/218ea17743e1442e59bb60d29b1aa725
Parsing:
https://eli.thegreenplace.net/2012/08/02/parsing-expressions-by-precedence-climbing
Backend:
@evertonse
evertonse / x86-assembly-notes.md
Created June 1, 2023 19:22 — forked from mikesmullin/x86-assembly-notes.md
Notes on x86-64 Assembly and Machine Code

Mike's x86-64 Assembly (ASM) Notes

Assembling Binary Machine Code

Operating Modes:

These determine the assumed/default size of instruction operands, and restricts which opcodes are available, and how they are used.

Modern operating systems, booted inside Real mode,

@kmatt
kmatt / void-wsl.txt
Last active March 9, 2025 17:01
Install Void Linux on WSL2
# Based on https://gist.github.com/kmatt/71603170556ef8ffd14984af77ff10c5
# prompt ">" indicates Powershell commands
# prompt "$" are Linux shell commands
# https://docs.microsoft.com/en-us/windows/wsl/install-win10
> dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
> dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
# install https://wslstorestorage.blob.core.windows.net/wslblob/wsl_update_x64.msi