https://github.com/kriswiner/MPU6050/wiki/Affordable-9-DoF-Sensor-Fusion
https://github.com/bolderflight/MPU9250 (>= teensy 3.x)
[Unit] | |
Description=xBrowserSync is a free tool for syncing browser data between different browsers and devices, built for privacy and anonymity. | |
After=syslog.target | |
After=network.target | |
After=mongod.service | |
[Service] | |
Type=simple | |
User=xbrowsersync | |
Group=xbrowsersync |
Software installation of my usual tools (via homebrew) and applications (via homebrew-cask) can be automated with homebrew-bundle.
Install homebrew:
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
Add bundle: brew tap Homebrew/bundle
REW Tutorial: https://recording.de/threads/rew-workshop.147164/#post-1504318
Room modes calculator: http://trikustik.at/wissen/rechner-raummoden/ (interactive!)
Link: BOSS DD-20 Giga Delay
openssl dhparam -out /etc/nginx/ssl/dhparams.pem 2048
. Watch your raspberry getting hot for an hour.ln -s /etc/nginx/sites-available/home-assistant.conf /etc/nginx/sites-enabled/home-assistant.conf
systemctl restart nginx
[Unit] | |
Description=Gitea | |
After=syslog.target | |
After=network.target | |
After=postgresql.service | |
# for fcgi appliance: | |
#After=memcached.service | |
[Service] | |
Type=simple |
tested with MacOS 10.12.4
/etc/postfix/main.cf
, see below./etc/postfix/smtp_sasl_passwords
and smtp_generic
, see below.chmod 0640 /etc/postfix/smtp_sasl_passwords
cd /etc/postfix && postmap smtp_sasl_passwords && postmap smtp_generic
postfix reload
#!/bin/bash | |
printf "\n\n\e[0;32mKernel Extensions: \e[0m\n\n" | |
kextstat -kl | awk '!/com\.apple/{printf "%s %s\n", $6, $7}' | |
printf "\n\n\e[0;32mSystem-wide LaunchItems/Daemons: \e[0m\n\n" | |
sudo launchctl list | sed 1d | awk '!/0x|com\.(apple|openssh|vix)|edu\.mit|org\.(amavis|apache|cups|isc|ntp|postfix|x)/{print $3}' | |
printf "\n\n\e[0;32mUser-context LaunchItems/Daemons: \e[0m\n\n" | |
launchctl list | sed 1d | awk '!/0x|com\.apple|edu\.mit|org\.(x|openbsd)/{print $3}' |
-- Example list of processes to ignore: {"xGestures"} or {"xGestures", "OtherApp", ...} | |
property processesToIgnore : {} | |
-- Get the size of the Display(s), only useful if there is one display | |
-- otherwise it will grab the total size of both displays | |
tell application "Finder" | |
set _b to bounds of window of desktop | |
set screen_width to item 3 of _b | |
set screen_height to item 4 of _b | |
end tell |