Skip to content

Instantly share code, notes, and snippets.

View benhoyle's full-sized avatar

Ben Hoyle benhoyle

View GitHub Profile
@benhoyle
benhoyle / Modelling Claim Language.ipynb
Created October 6, 2016 14:47
A Juypter notebook experimenting with modelling patent claim language.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@benhoyle
benhoyle / Corpus Generation - GB Excluded Subject Matter.ipynb
Last active June 16, 2016 18:51
A Juypter (iPython) note on Corpus Creation
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@benhoyle
benhoyle / changeusername.sh
Last active May 28, 2016 12:48
Linux - Change Username
#!/bin/bash
echo "Enter the name of the OLD user and press [ENTER]: "
read olduser
echo "Enter the name of the NEW user and press [ENTER]: "
read newuser
echo "Killing all processes for $olduser"
pkill -u $olduser