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
<?xml version="1.0" encoding="UTF-8"?> | |
<gpx | |
version="1.1" | |
creator="RunKeeper - http://www.runkeeper.com" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xmlns="http://www.topografix.com/GPX/1/1" | |
xsi:schemaLocation="http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd" | |
xmlns:gpxtpx="http://www.garmin.com/xmlschemas/TrackPointExtension/v1"> | |
<trk> |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<gpx | |
version="1.1" | |
creator="RunKeeper - http://www.runkeeper.com" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xmlns="http://www.topografix.com/GPX/1/1" | |
xsi:schemaLocation="http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd"> | |
<trk> | |
<name><![CDATA[Running 2/26/12 9:01 am]]></name> |
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 | |
$environment = 'sandbox'; // or 'beta-sandbox' or 'live' | |
/** | |
* Send HTTP POST Request | |
* | |
* @param string The API method name | |
* @param string The POST Message fields in &name=value pair format | |
* @return array Parsed HTTP Response body |
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 | |
/* | |
Plugin Name: Hello Dolly | |
Plugin URI: http://wordpress.org/# | |
Description: This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation | |
summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will | |
randomly see a lyric from <cite>Hello, Dolly</cite> in the upper right of your admin screen on every page. | |
Author: Matt Mullenweg | |
Version: 1.5 | |
Author URI: http://ma.tt/ |
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
.Net | |
Adaptive Accounts | |
Adaptive Payments | |
Alternative Ways to Fund Your Project | |
analytics | |
Android | |
{...} |
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
csvtopics = open("devzone.topics.csv", "rb") | |
topicreader = csv.reader(csvtopics, dialect='excel') | |
csvnumitems = open(devzonedir+"devzone.topics.items.csv", "wb") | |
numitemswriter = csv.writer(csvnumitems, dialect='excel') | |
for topic in topicreader: | |
currenttopic = topic[0] | |
topicfile = (currenttopic.replace(' ', '')).replace('.', 'dot') | |
csvcurrenttopic = open(devzonedir+"devzone.analysis.topic."+topicfile+".csv", "wb") | |
topicwriter = csv.DictWriter(csvcurrenttopic, fieldnames=['pubDate', 'articleOrBlog', 'title', 'link', 'hitCount'], restval='', extrasaction='ignore', dialect='excel') |
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
31 Jan 2011 18:31:26,article,PayPal and the Road to Adaptive Payments,https://www.x.com/docs/DOC-3191,,{content of article would be here} |
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
for row in articles.rows: | |
row["articleOrBlog"] = "article" | |
date = row["pubDate"] | |
date = date[5:-4] | |
row["pubDate"] = date | |
csvwriter.writerow(row) |
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
select * from rss where url in ('https://www.x.com/people/ptwobrussell/blog/feeds/posts?numItems=20', 'https://www.x.com/people/billday/blog/feeds/posts?numItems=20', 'https://www.x.com/people/travis/blog/feeds/posts?numItems=20', 'https://www.x.com/blogs/Ethan/feeds/posts?numItems=20', 'https://www.x.com/community/feeds/blogs?community=2133&numItems=1000', 'https://www.x.com/community/feeds/documents?community=2133&numItems=200') |
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
import yql | |
y = yql.Public() | |
articlequery = "select * from rss where url in ('https://www.x.com/community/feeds/documents?community=2133&numItems=38')" | |
articles = y.execute(articlequery) |