Skip to content

Instantly share code, notes, and snippets.

View psychemedia's full-sized avatar

Tony Hirst psychemedia

View GitHub Profile
@psychemedia
psychemedia / nhs_parking_review.ipynb
Last active February 22, 2023 23:50
NHS car parking revenues
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@psychemedia
psychemedia / nhs_parking_review.ipynb
Created November 24, 2019 13:37
NHS car parking revenues
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@psychemedia
psychemedia / datetime_scatter.ipynb
Last active November 20, 2019 18:01
Example of scatter plot based on median values by hour from datetimes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@psychemedia
psychemedia / wrc_telem_unpack_example.py
Created November 19, 2019 22:12
Example of handling compressed json
import requests
url = 'https://webappsdata.wrc.com/srv/fs/pull/1a3cdf87-4d91-435c-a1f9-7aab556fc3b1/ss07mee_telemetry_js_merged/js'
#I get an SSL error so dump the verification
r = requests.get(url, verify=False)
import gzip
import base64
import json
@psychemedia
psychemedia / apt.txt
Last active November 16, 2019 18:57
TM112 md demo Binder
git
gcc
zip
@psychemedia
psychemedia / linked data bands.ipynb
Last active October 30, 2019 11:16
Example of finding relationships between band genres using SPARQL queries over DBPedia Linked Data
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@psychemedia
psychemedia / thebelab.tpl
Created October 29, 2019 10:48
nbconvert template for generating ThebeLab enabled HTML page from ipynb notebook
<!--
Template to geneate a ThebeLab enhanced HTML page.
The Binder / Jupyyer kernel target needs setting explicitly in the template.
Run using: jupyter nbconvert --to html 'my notebook.ipynb' --template=thebelab.tpl
-->
{% extends 'full.tpl'%}
@psychemedia
psychemedia / bands.svg
Created October 1, 2019 23:53
Music genre connections via bands listed under Heavy Metal genre on dbpedia
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@psychemedia
psychemedia / venues.html
Created October 1, 2019 18:35
Venue map
<!DOCTYPE html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script>
L_NO_TOUCH = false;
L_DISABLE_3D = false;
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.js"></script>