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
'************************ | |
'Name: Disable Connection | |
'Author: Jeremy England | |
'Company: SimplyCoded | |
'Date: 10/01/2016 | |
'************************ | |
Option Explicit | |
Dim interface, interfaceName, interfaceTarget, available, verb | |
'Pick the Interface Name you want to disable |
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/local/bin/php | |
<?php | |
include_once('getRSSLocation.php'); | |
// del.icio.us username and password | |
$username = 'your_username'; | |
$password = 'your_password'; | |
$cache_file = '/tmp/delicious-blogroll.xml'; | |
$blogs = array(); |
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/env python | |
""" | |
A simple script that creates an OPML file of the RSS feeds to | |
a Twitter user's lists. | |
python twitter_list_to_opml.py mylesb | |
Copyright (c) 2010, Myles Braithwaite <[email protected]> | |
All rights reserved. |