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
var urls = {}; | |
// Use browser debug tools to determine the column ID of the column which contains the tweets you want to archive | |
var columnID = 'e.g. c1668738656730s59'; | |
var col = document.querySelector('.chirp-container[data-column=' + columnID + ']') | |
// Each time you run this line, new content will be loaded into the column by scrolling, and the new tweet information added | |
// to urls. Repeat the “up, enter, wait for new content” cycle until either you are satisfied or tweetdeck refuses to load | |
// more content. If you get HTTP 429 errors, wait a little and continue! Only once you get a 410 or just nothing at all when | |
// running the line have you reached the end. | |
col.parentElement.scrollBy(0, col.scrollHeight); document.querySelectorAll('[data-column=' + columnID + '] .tweet-timestamp a').forEach(function (el) {urls[el.href] = true;}) |
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
file: 2021-06-timberlake.csv | |
# context_query is used to provide context for links to lists of observations when there’s no inat project providing that context. | |
# If you do have a project with date and place bounds, leave out context_query and use | |
# project: your-project-id | |
# instead. | |
context_query: 'd1=2021-06-11&d2=2021-06-13&place_id=118103' | |
locale: en | |
root_header_level: 2 | |
places: | |
# Places MUST be in smallest to biggest order, id: global MUST be last in list. |
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
<div class="h-entry"> | |
<h1 class="p-name">Album Name</h1> | |
<time class="dt-published">2021-02-12</time> | |
<img class="u-photo" src="cover.png" alt="" /> | |
<p class="p-summary">Summary of what the ablum is</p> | |
<div class="e-content"> |
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
# coding: utf-8 | |
import argparse | |
import pandas as pd | |
""" | |
Find which species in an iNaturalist export only have observations from a single observer. | |
Get an export from here: https://www.inaturalist.org/observations/export with a query such | |
as quality_grade=research&identifications=any&rank=species&projects[]=92926 and at least the |
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
<xml id="skufilterbrowse" class="slide"> | |
<productcatalog><labels><label key="skuset.deliverypolicyurl">Delivery policy content URL</label><label key="price.save">Save</label><label key="skuset.seemoredetails">See more details</label><label key="price.additionaloffers">Additional Offers</label><label key="price.freeitem">Includes Free Item*</label><label key="price.instsaving">Instant Savings</label><label key="skuset.eddieseedetails">See details </label><label key="price.rebateurl">RebateURL</label><label key="skuset.freedelivery">FREE SHIPPING, plus 5% back for Rewards Members</label><label key="price.printableCoupons">Click here for Printable Coupon</label><label key="price.value">Value</label><label key="skuset.eddieshipdetails">Estimated to arrive no later than </label><label key="price.qty">Qty.</label><label key="price.chooseyouritems">Choose your Items</label><label key="price.true">true</label><label key="skuset.clearancemessage"><strong>CLEARANCE ITEM:</strong> </label><label key="price |
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
id: 4DtGgd | |
author: | |
type: h-card | |
url: 'http://waterpigs.co.uk' | |
photo: 'http://photos.waterpigs.co.uk/photos/custom/201210/5d5a4d-Facing-Down_100x100xCR.jpg' | |
name: 'Barnaby Walters' | |
name: 'Just added some more tunes to http://www.waterpigs.co.uk/wpsm/ — As far as I can tell, it''s the largest collection of hurdy gurdy sheet music on the web! #folkmusic #hurdygurdy #abc' | |
content: "<p>Just added some more tunes to <a class=\"auto-link\" href=\"http://www.waterpigs.co.uk/wpsm/\">http://www.waterpigs.co.uk/wpsm/</a> — As far as I can tell, it's the largest collection of hurdy gurdy sheet music on the web! <a rel=\"tag\" href=\"/tags/folkmusic\">#folkmusic</a> <a rel=\"tag\" href=\"/tags/hurdygurdy\">#hurdygurdy</a> <a rel=\"tag\" href=\"/tags/abc\">#abc</a></p>\n" | |
published: '2011-09-16T16:41:38+00:00' | |
updated: null |
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
<div class="h-event"> | |
<span class="dt-start"> | |
<data class="value" value="2013-01-01">first day of 2013</data> at | |
<data class="value" value="21:00">nine in the evening</data> | |
</div> |
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
.DS_Store | |
composer.phar | |
/vendor/ |
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
<?php | |
// where $app is a silex/pimple container — this could easily be rewritten as an ordinary function though | |
// example usage: list($location, $err) = $app['nominatim.reverse']([-1.125, 3.526]) | |
function nameForLocation(array $location, $fallback='Unknown Location') { | |
if (isset($location['name'])) return $location['name']; | |
if (isset($location['street-address']) and isset($location['region'])) | |
return "{$location['street-address']}, {$location['region']}"; |
NewerOlder