Skip to content

Instantly share code, notes, and snippets.

View elliotfontaine's full-sized avatar
🧌

Elliot Fontaine elliotfontaine

🧌
View GitHub Profile
@VojtaStruhar
VojtaStruhar / publish-godot-to-itch.yml
Created March 6, 2024 21:14
Publish a Godot 4 game to Itch.io with Github Actions
name: Publish to Itch.io
on:
push:
branches: ["master"]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
@gauchy
gauchy / notion2Habitica.py
Last active October 10, 2025 00:06
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: