Skip to content

Instantly share code, notes, and snippets.

View arky's full-sized avatar

Arky arky

View GitHub Profile
@arky
arky / map.geojson
Last active March 22, 2020 08:39
Coordinates2GeoJson-Test
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@arky
arky / gist:6659651
Created September 22, 2013 12:56
Daily Words Google Apps Script Google Apps Script to parse and display wordsmith.org A Word A Day RSS Feed http://playingwithsid.blogspot.com/2013/09/google-apps-script-for-google-sites.html
//Parses Wordsmith XML Feed
function doGet(){
// Fetch XML
var response = UrlFetchApp.fetch("http://wordsmith.org/awad/rss1.xml").getContentText();
// Parse XML
var parsedResponse = Xml.parse(response, false);
var word = parsedResponse.getElement().getElement('channel').getElement('item').getElement('title').getText();
@arky
arky / gist:6659489
Last active December 23, 2015 15:59
Google Apps Script to parse and display wordcentral.com's Daily Buzzword RSS feed. http://playingwithsid.blogspot.com/2013/09/google-apps-script-for-google-sites.html
function doGet() {
// Fetch XML
var response = UrlFetchApp.fetch("http://wordcentral.com/buzzword/rss.xml").getContentText();
// Parse XML
var parsedResponse = Xml.parse(response, false);
var word = parsedResponse.getElement().getElement('channel').getElement('item').getElement('title').getText();
var desc = parsedResponse.getElement().getElement('channel').getElement('item').getElement('description').getText();