Skip to content

Instantly share code, notes, and snippets.

View jonathanbell's full-sized avatar

Jonathan Bell jonathanbell

View GitHub Profile
@jonathanbell
jonathanbell / Compare two dates in VBA.md
Last active March 17, 2023 23:06
March 17 2023 - Compare two dates in VBA

Compare two dates in VBA

Simple example showing how to compare two dates by first converting them to epoch Unix timestamps.

@jonathanbell
jonathanbell / How to Setup SSH Keys.md
Last active September 30, 2018 22:26 — forked from stormpython/how_to_set_up_ssh_keys.md
April 10 2018 - How to Setup SSH Keys
@jonathanbell
jonathanbell / Instarss.md
Last active March 18, 2023 00:03
August 28 2014 - InstaRss

Instarss

I was looking around for a way to get a user's public Instagram feed as an RSS feed without using the Instagram API when I came across this question on Stack Overflow.

Probably the best way to do this, would be to use the Instagram API. However, I had no desire to sign up for an Instagram account.

Initially, this answer on Stack Overflow suited my needs quite well. However, as fate would have it, Instagram changed its HTML output and the page's JSON data structure changed. Since the idea is quite simple (we're just screen scrapping here) I decided to write my own script. If this works well for you, consider upvoting my answer on Stack Overflow: http://stackoverflow.com/a/25559442/1171790