Skip to content

Instantly share code, notes, and snippets.

View Eloitor's full-sized avatar

Eloi Torrents Eloitor

View GitHub Profile
@Eloitor
Eloitor / playground.art
Created September 21, 2024 06:02 — forked from drkameleon/playground.art
tiny UI playground for Arturo
execScript: function [scr][
null
do scr
cc: to :string unstack 1
eval ~{showResult("|cc|")}
]
webview ~{!html
<!DOCTYPE html>
<html class="has-navbar-fixed-top" lang="en">
@Eloitor
Eloitor / init.c
Created August 5, 2021 19:32 — forked from rofl0r/init.c
minimal init daemon by rich felker, author of musl libc
#define _XOPEN_SOURCE 700
#include <signal.h>
#include <unistd.h>
int main()
{
sigset_t set;
int status;
if (getpid() != 1) return 1;