Skip to content

Instantly share code, notes, and snippets.

View jaredmales's full-sized avatar

Jared R. Males jaredmales

View GitHub Profile
@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 January 8, 2024 01:56
An rclone backup script for cron
#!/bin/bash
##############################################################################
# An rclone backup script by Jared Males (jaredmales@gmail.com)
#
# Copyright (C) 2018 Jared Males <jaredmales@gmail.com>
#
# This script is licensed under the terms of the MIT license.
# https://opensource.org/licenses/MIT
#