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
<?php | |
/** | |
* Implementation of hook_views_default_views | |
*/ | |
function example_views_default_views() { | |
return example_default_views_from_files(); | |
} | |
/** | |
* Helper function for default views - get from files in a subdirectory |
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 | |
# | |
# Music collection reconcile - which tracks are new locally/on external HD? | |
# | |
# Basically a poor-man's rsync, but it seems faster for solely this task. Also | |
# less likely to generate false positives, although it can make false negatives | |
# e.g. if files have been changed (ID3 information etc.) | |
import sys | |
import glob |
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/bash | |
# Add or list DNS entries in an 02 wireless box | |
# To compensate for O2's unreliable DNS provision | |
# h/u/p for standard O2 wireless box | |
host=192.168.1.254 | |
user=SuperUser | |
pass=O2Br0ad64nd | |
# OpenDNS server to add |
NewerOlder