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 | |
################################################################################# | |
# perform an unattended multipass VM setup and provisioning for MagAO-X | |
# | |
# note that you need ~/.ssh/id_ed25519.pub | |
# | |
# todo: provide CLI option to change name. | |
# todo: provide CLI options to change disk/cpus/memory | |
# |
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 | |
######################################################### | |
# fftw build script | |
# Build all precisions with threads. | |
# Modified from old version to use with-combined-threads | |
######################################################### | |
./configure --enable-float --with-combined-threads --enable-threads --enable-shared | |
make -j |
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 | |
############################################################################## | |
# An rclone backup script by Jared Males ([email protected]) | |
# | |
# Copyright (C) 2018 Jared Males <[email protected]> | |
# | |
# This script is licensed under the terms of the MIT license. | |
# https://opensource.org/licenses/MIT | |
# |