-
Reset to factory defaults
reset config bootstrap reset config
The username is
admin
and the password isaerohive
orAerohive1
.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// https://gist.github.com/jkoop/577a96fa421a8dfec22a48334a7493a0 | |
function scanForRedLink(link, url) { | |
if (link.classList.contains('no-redlink')) { // for stuff like logout links | |
return; | |
} | |
if (url === null || url.startsWith('javascript:') || url.startsWith('#') || url.length < 1) { // for stuff like javascript and elements | |
return; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
while [ $# -gt 0 ]; do | |
extension="${1##*.}" | |
ffmpeg -i "$1" 2> tmp.txt | |
# Chapter #0:0: start 0.000000, end 1290.013333 | |
# first _ _ start _ end | |
while read -r first _ _ start _ end; do |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/php | |
<?php | |
/** | |
* This script SSHes into all of my AeroHive Wifi APs, gets a list of current | |
* connected clients from each if them, assembles the list into one, and writes | |
* that list to a JSON file. | |
* | |
* This is intended to be run as a minutely `cron` job. As such, the path of the | |
* output file is the date, formatted to not put a million files in one folder: |
OlderNewer