This file contains hidden or 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
# Unifi uses inadyn to configure dyndns. To Use INWX use this config | |
Service: dyndns | |
Hostname: <dynamic-dns-fqdn> | |
Username: <your-username> | |
Password: <your-password> | |
Server: dyndns.inwx.com/\/nic/update?hostname=%h&myip=%i |
This file contains hidden or 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/env python | |
# coding=utf-8 | |
""" This snippet dumps as many status updates from a given user as possible. | |
The output matches the IFTTT reciepe #36991's output and is intended to create | |
the initial dataset for the Evernote Note. The enml-editor might be of help... | |
Script requires pytz and tweepy.""" | |
import tweepy |
This file contains hidden or 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/sh | |
smartctl -a /dev/$1 | grep Load_Cycle_Count | awk '{printf "cycles:" $10 " "'} |
This file contains hidden or 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/sh | |
# | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. | |
# | |
# This program is distributed in the hope that it will be useful, | |
# but WITHOUT ANY WARRANTY; without even the implied warranty of | |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |