Skip to content

Instantly share code, notes, and snippets.

@jeffvautin
jeffvautin / Brewfile
Last active April 18, 2024 02:01
Brewfile
tap "homebrew/bundle"
tap "homebrew/core"
tap "homebrew/cask"
cask_args appdir: "/Applications", require_sha: true
# `brew install`
brew "mas"
brew "youtube-dl"
brew "wget"
(* Import and update your Pinboard bookmarks to DEVONthink
Based on work done by Christian Grunenberg on Mon Jan 23 2006,
Rafael Bugajewski to support Pinboard instead of Delicious on Sun Dec 19 2010 and
Andreas Zeitler on Sun Mar 03 2011 to display user feedback when finished.
By Sascha A. Carlin <https://about.me/sascha.a.carlin> on 2018-03-07 to set the creation date of new record, show progress bar, use Pinboard Auth Token, use modification date of folder to fetch only recent items
Copyright (c) 2018. All rights reserved. *)
use framework "Foundation"
@jeffvautin
jeffvautin / le-renew.sh
Last active March 6, 2016 04:20 — forked from erikaheidi/le-renew.sh
Auto renewal for Let's Encrypt Apache
#!/bin/bash
#================================================================
# Let's Encrypt renewal script for Apache on Ubuntu/Debian
# @author Erika Heidi<erika@do.co>
# Usage: ./le-renew.sh [base-domain-name]
# More info: http://do.co/1mbVihI
#================================================================
domain=$1
le_path='/opt/letsencrypt'
le_conf='/etc/letsencrypt'
@jeffvautin
jeffvautin / keybase.md
Created September 26, 2014 01:54
Keybase Verification

Keybase proof

I hereby claim:

  • I am jeffvautin on github.
  • I am jeffv (https://keybase.io/jeffv) on keybase.
  • I have a public key whose fingerprint is A395 58D7 32EC 59A9 EF23 066B 6374 B5E9 99A9 A69B

To claim this, I am signing this object:

@jeffvautin
jeffvautin / eno_return_analysis
Created July 23, 2014 15:22
Simple analysis of difference between 16- and 24-bit versions Eno • Hyde song “Return”.
%% Read files
[return_16,FS_16,NBITS_16,OPTS_16] = wavread('High Life-001-Eno ∑ Hyde-Return 16.wav');
[return_24,FS_24,NBITS_24,OPTS_24] = wavread('High Life-001-Eno ∑ Hyde-Return 24.wav');
%% Make Diff
return_diff = return_24 - return_16;
return_diff_boost = 0.99*return_diff/max(max(abs(return_diff)));
%% Plot