A version of Mike Bostock’s animated world countries, which uses a more accurate spherical interpolation.
Dashing widget to display weather from forecast.io. This widget was forked from https://gist.github.com/mjamieson/5274790 to add Skycons and the forecast for later in the day.
##Usage
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
# This script will unfavourite all of the tweets you have favourited (liked). | |
# Install tweepy with pip install tweepy or pip3 install tweepy for python3 | |
# Create a Twitter app at https://apps.twitter.com/. Give it read and write permissions. Click on the app and go to Keys and Access tokens to find the credentials. | |
import tweepy | |
consumer_key = "" | |
consumer_secret = "" | |
access_token = "" |
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
-- don't do anything unless we target latex | |
if FORMAT ~= "latex" then | |
return {} | |
end | |
local List = require'pandoc.List' | |
local function latex(str) | |
return List:new{pandoc.RawInline('latex', str)} | |
end |