Skip to content

Instantly share code, notes, and snippets.

View elliotfontaine's full-sized avatar
🇫🇷

Elliot Fontaine elliotfontaine

🇫🇷
View GitHub Profile
@gauchy
gauchy / notion2Habitica.py
Last active July 16, 2024 12:18
Notion to Habitica Sync tool
import requests, json
#Notion's token and databaseId
token = 'XXX'
databaseId = 'XXX'
#Notion's headers
headers = {
"Authorization": "Bearer " + token,
"Content-Type": "application/json",
@janxkoci
janxkoci / plink_pruning_prep.sh
Last active June 29, 2022 08:27
This simple script prepares your VCF dataset for pruning with Plink. It takes name of the input VCF as argument and produces new, annotated VCF.
@anmoljagetia
anmoljagetia / appify
Created August 7, 2017 12:33
Appify script to create MacOS apps from scripts.
#!/usr/bin/env bash
Appify="$(basename "$0")"
if [ ! "$1" -o "$1" = "-h" -o "$1" = "--help" ]; then cat <<EOF
Appify v5 for Mac OS X
Creates the simplest possible Mac OS X app from a shell script.
Takes a shell script as its first argument: