Skip to content

Instantly share code, notes, and snippets.

View jaredmales's full-sized avatar

Jared R. Males jaredmales

View GitHub Profile
@jaredmales
jaredmales / magaox_multipass_setup.sh
Last active February 1, 2025 02:30
perform an unattended multipass VM setup and provisioning for MagAO-X
#!/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
#
@jaredmales
jaredmales / fftw_buildall.sh
Last active November 17, 2020 22:13
An fftw build script
#!/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
@jaredmales
jaredmales / rclone-cron.sh
Last active February 20, 2025 08:08
An rclone backup script for cron
#!/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
#