Skip to content

Instantly share code, notes, and snippets.

View s0me0ne-unkn0wn's full-sized avatar

s0me0ne-unkn0wn

View GitHub Profile
@s0me0ne-unkn0wn
s0me0ne-unkn0wn / fellowship.md
Created March 19, 2024 20:01
Polkadot Fellowship application

Hi, I'm s0me0ne-unkn0wn. I've worked on Polkadot since July 2022 and have been a core developer in the Parachain Core team since October 2022.

Here's my list of notable contributions:

Codebase contributions

#define _GNU_SOURCE
#include <unistd.h>
#include <stdlib.h>
#include <sys/mman.h>
#include <fcntl.h>
int main(int argc, char **argv) {
int fd;
if((fd = open("/bin/ls", O_RDONLY)) == -1) exit(1);
off_t len = lseek(fd, 0, SEEK_END);
@s0me0ne-unkn0wn
s0me0ne-unkn0wn / build.rs
Created August 2, 2023 14:38
Build additional artifacts if a single package build is explicitly requested
use std::process::Command;
use std::env::var;
use std::path::Path;
fn main() {
let cargo = var("CARGO").unwrap();
let target = var("TARGET").unwrap();
let profile = var("PROFILE").unwrap();
let out_dir = var("OUT_DIR").unwrap();
let target_dir = format!("{}/workers", out_dir);