Skip to content

Instantly share code, notes, and snippets.

View vanhalt's full-sized avatar
🎯
Focusing

Rafa vanhalt

🎯
Focusing
  • Somewhere
  • X @vanhalt
View GitHub Profile
@dallasmarlow
dallasmarlow / gist:2937920
Created June 15, 2012 18:10
rbenv for fish
set PATH $HOME/.rbenv/bin $PATH
set PATH $HOME/.rbenv/shims $PATH
rbenv rehash >/dev/null ^&1
@nishantmodak
nishantmodak / nginx.conf.default
Last active May 26, 2024 19:29
Default Nginx Conf
#user nobody;
#Defines which Linux system user will own and run the Nginx server
worker_processes 1;
#Referes to single threaded process. Generally set to be equal to the number of CPUs or cores.
#error_log logs/error.log; #error_log logs/error.log notice;
#Specifies the file where server logs.
@kripken
kripken / hello_world.c
Last active January 17, 2024 12:15
Standalone WebAssembly Example
int doubler(int x) {
return 2 * x;
}