This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from github import Github | |
| import time | |
| import os | |
| token = os.getenv('GITHUB_API_TOKEN') | |
| if not token: | |
| print('Please create a GitHub token for use with the API') | |
| quit() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| if [[ -z $1 ]]; then | |
| echo "error: please provide an executable" | |
| exit 1 | |
| fi | |
| out_dir="$(basename ${1}).bundled" | |
| mkdir -p "${out_dir}" | |
| # ldd gives the SO files the exe links with |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| No user data is collected, stored, distributed, or inferred by this app. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;;; sl-mode.el --- major mode for sl -*- lexical-binding: t; -*- | |
| ;; inspired by https://www.omarpolo.com/post/writing-a-major-mode.html | |
| (eval-when-compile | |
| (require 'rx)) | |
| (defconst sl--font-lock-defaults | |
| (let ((fn-keywords '("defun" "extern")) | |
| (keywords '("defun" "for" "in" "set" "lambda" "let" "cons" "car" "cdr" "and" "or" "xor" "not" "extern" "if")) | |
| (types '("string" "int" "bool" "float" "list"))) | |
| `( |
OlderNewer