Focused crawls are collections of frequently-updated webcrawl data from narrow (as opposed to broad or wide) web crawls, often focused on a single domain or subdomain.
A small library which handles decaying exponential backoff. This is useful if you want to start throttling something whilst it is going wrong, but recover once things start working again.
Nonlinear regression using to estimate kinetics constants of DNA promoter opening and escape during transcription initiation complex assembled between Lambda PR promoter and E. coli RNA polymerase.
Web application that calculates and displays the nth root of a number. Performed without the help of math libraries, only using simple mathematical operators ( + , - , x , / ). Developed in JS.
Exponentation by squaring is an algorithm that will quickly calculate x^n given user input. x and n are integers in this case. This implementation uses recursion, whereby a function calls itself within it's own body. The answer is outputted on the console.