Skip to content

Instantly share code, notes, and snippets.

View psychemedia's full-sized avatar

Tony Hirst psychemedia

View GitHub Profile
@psychemedia
psychemedia / flake8_report_inliner.py
Last active May 11, 2021 17:17
Parse nbqa flake8 report and add flake8 errors to notebook code cell outputs
import nbformat
def flake8_report_insertion(report_file, overwrite=False, tags=True):
"""Parse flake8 report file into notebook output cells."""
# Read in report file generate as eg:
# nbqa flake8 notebooks/*.ipynb > flake8_reports.txt
with open(report_file, 'r') as f:
lines = f.read().splitlines()
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 / road-book-sketch.Rmd
Last active February 21, 2021 16:42
Initial sketch of using sfnetworks to see if we can generate a graph from which we can create a rally road book
```{r, cache = F, echo = F, message=F}
# Allow knitr to continue to execute even in the presence of errors
knitr::opts_chunk$set(error = TRUE)
knitr::opts_chunk$set(fig.path = "images/creating-road-book-")
knitr::opts_chunk$set(engine.path = list(python = '/usr/local/bin/python3'))
options(rgl.useNULL = TRUE,
rgl.printRglwidget = TRUE)
```
# Creating A Road Book
@psychemedia
psychemedia / sqlite_utils_magic.ipynb
Last active October 22, 2020 06:36
Proof of concept sqlite_utils magic
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@psychemedia
psychemedia / NetworkVisualisation.ipynb
Last active August 17, 2020 11:07
Example of plotting pretty networks using networkx and a force atlas layout
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@psychemedia
psychemedia / IPspeak.pl
Created June 6, 2020 18:11 — forked from andysc/IPspeak.pl
Speak the IP address of your linux machine. Perfect for Raspberry PIs or other headless servers with audio output. Just plug in a speaker or earphones and wait to be told the IP address to ssh to!
#!/usr/bin/perl
# IPspeak
# Andy S-C
# 18-May-13
# 15-Oct-16 - made more "human" ... ten dot nought dot one nine three dot seventeen
# this is the order we check the interfaces
@interfaces = ("eth0", "wlan0");
@psychemedia
psychemedia / Moodle quiz.ipynb
Created April 28, 2020 16:24
First pass at trying to parse Moodle CodeRunner quiz questions
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@psychemedia
psychemedia / Marking models.ipynb
Last active April 14, 2020 17:24
Start to explore marking distributions
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@psychemedia
psychemedia / requirements.txt
Last active April 28, 2020 19:23
UK Covid-19 NHS Daily deaths
pandas
sqlite-utils
parse
dateparser