via https://pitchfork.com/features/lists-and-guides/the-best-songs-of-the-1990s/
To generate list:
$ curl -Ss 'https://pitchfork.com/features/lists-and-guides/the-best-songs-of-the-1990s/' \
| pup --plain 'h2 text{}' \
| awk 'NF' \
via https://pitchfork.com/features/lists-and-guides/the-best-songs-of-the-1990s/
To generate list:
$ curl -Ss 'https://pitchfork.com/features/lists-and-guides/the-best-songs-of-the-1990s/' \
| pup --plain 'h2 text{}' \
| awk 'NF' \
Race center: https://racecenter.lavuelta.es/en
Mozilla event stream docs: https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events
Sample cURL:
$ curl 'https://racecenter.lavuelta.es/live-stream' \
-H 'Accept: text/event-stream' \
-H 'Accept-Language: en-US,en;q=0.5' --compressed \
Fulton County locations: https://www.mapcustomizer.com/map/Atlanta%20Early%20Voting%20Locations
$ python test_setattr.py | |
test_setattr 0.11335835400000001 | |
test_direct_object_manipulation 0.04550438199999998 | |
$ python test_setattr_data_types.py | |
int | |
setattr() 0.104297199 | |
direct obj manipulation 0.046985358000000005 | |
float | |
setattr() 0.097025698 |
Given a certain amount of employees in an office, how many weeks of the year should it be reasonable to celebrate birthdays?
Assumptions:
Here are 20 trials:
In Strava, when you go on a bike ride with other folks, it groups your activities together.
Use this bookmarklet to open up the activities of all of the other people you rode bikes with in separate tabs.
location
, paste in the contents of bookmarklet.js
title | year | |
---|---|---|
Adventures in Babysitting | 2016 | |
Alley Cats Strike | 2000 | |
Avalon High | 2010 | |
Bad Hair Day | 2015 | |
Brink! | 1998 | |
Buffalo Dreams | 2005 | |
Cadet Kelly | 2002 | |
Camp Rock | 2008 | |
Camp Rock 2: The Final Jam | 2010 |
#!/usr/bin/env python | |
"""Grab the latest NY Times Crossword puzzle | |
TODO: Figure out how to get today's puzzle - for some reason this grabs yesterday's | |
""" | |
import os | |
import re | |
import time |
#!/bin/bash | |
mkdir /tmp/picblast | |
cd ~/Pictures/Photos\ Library.photoslibrary | |
for i in $(find . | grep jpegvideocompl) | |
do | |
ffmpeg -i $i /tmp/picblast/${i:(-8)}.wav | |
done |