Skip to content

Instantly share code, notes, and snippets.

View jakedowns's full-sized avatar
💜
exploring, is there something you'd like to show me?

Jake Downs jakedowns

💜
exploring, is there something you'd like to show me?
View GitHub Profile
@jakedowns
jakedowns / AHRS.ipynb
Created February 6, 2024 01:42 — forked from CGamesPlay/AHRS.ipynb
AHRS
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jakedowns
jakedowns / gourcevideo.sh
Last active March 25, 2022 00:00 — forked from Gnzlt/gourcevideo.sh
Gource video export command
#!/bin/bash
gource \
-s .03 \
-1280x720 \
--auto-skip-seconds .1 \
--multi-sampling \
--start-position 0.85
--stop-position 1.0
--stop-at-end \
@jakedowns
jakedowns / install.bash
Last active January 2, 2018 18:37 — forked from val-bubbleflat/install.bash
Install V8Js on Laravel Forge
sudo add-apt-repository ppa:pinepain/libv8-archived
sudo apt-get update
sudo apt-get install libv8-5.2
sudo pecl install v8js
sudo su
echo "extension=v8js.so" >> /etc/php/7.0/fpm/php.ini
echo "extension=v8js.so" >> /etc/php/7.0/cli/php.ini
exit
sudo service nginx restart && sudo service php7.0-fpm restart