- Make sure you have Node.JS installed.
- Create a folder
- Add
tsconfig.jsonandpackage.jsonto that folder. - Add
index.mtsto asrcfolder beneath it. - Edit the fourth line of
index.mtsto contain your bluesky handle, excluding the@sign. - Open a terminal in the main folder.
- Run
npm install
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
| #pragma once | |
| #include <tuple> | |
| #include <vector> | |
| /** multi_vector | |
| * The beginnings of a structure-of-arrays vector. | |
| * (Currently append-only. | |
| * Just makes iteration and appending friendlier and less error-prone.) | |
| * @author PrinceZyntaks | |
| * @date 2025-06-04 |
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/sh | |
| # cobold.sh - squeeze anything into the sequence number columns of a COBOL source file. | |
| # usage: cobold.sh [source.cob] [some_text.txt] | |
| # output *should* be syntactically correct | |
| cut -b 7- "$1" > "$1_tmp" | |
| fold -w 6 "$2" > "$2_tmp" | |
| paste -d '\0' "$2_tmp" "$1_tmp" |
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
| # EOS App Installer by Nova | |
| # To Run Automatically: wget -O - http://bit.ly/29HmORs | ruby | |
| # Make sure you have ruby installed first! | |
| # First we set up some stuff - scroll down for the actual package list! | |
| $ppas = [] | |
| $packages = [] | |
| $execs = [] | |
| def ppa url |