Skip to content

Instantly share code, notes, and snippets.

View RobertoMalatesta's full-sized avatar

Roberto Malatesta RobertoMalatesta

View GitHub Profile

Awesome-Selfhosted

Awesome

Selfhosting is the process of locally hosting and managing applications instead of renting from SaaS providers.

This is a list of Free Software network services and web applications which can be hosted locally. Non-Free software is listed on the Non-Free page.

See Contributing.

@kvnxiao
kvnxiao / awesome-selfhosted-sorted-by-stars.md
Last active September 26, 2025 11:01
awesome-selfhosted-sorted-by-stars.md

Awesome-Selfhosted

Awesome

Selfhosting is the process of locally hosting and managing applications instead of renting from SaaS providers.

This is a list of Free Software network services and web applications which can be hosted locally. Non-Free software is listed on the Non-Free page.

See Contributing.

@ErikAugust
ErikAugust / spectre.c
Last active October 7, 2025 15:37
Spectre example code
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#ifdef _MSC_VER
#include <intrin.h> /* for rdtscp and clflush */
#pragma optimize("gt",on)
#else
#include <x86intrin.h> /* for rdtscp and clflush */
#endif
@luser
luser / servo-cross-mac
Created May 26, 2016 18:29
Cross-compile Servo from Linux to OS X
#!/bin/bash
#TODO: you will need to manually get an OS X SDK.
set -e
# Install the proper Rust nightly with rustup, and add the OSX target.
rustup install nightly-`cat rust-nightly-date`
rustup override add nightly-`cat rust-nightly-date`
rustup target install x86_64-apple-darwin
@DerZyklop
DerZyklop / deploy-openui5.sh
Last active August 29, 2015 14:07
Make an openui5-app work on android
sudo npm install -g cordova
brew install android-sdk -g
android
// Now the "Android SDK-Manager" GUI opens; download the preselected packages plus "Android 4.4.2 (API 19)"
brew cask install android-file-transfer
brew install ant -g
cordova create hello com.example.hello HelloWorld
cd hello