Skip to content
View l4vr0v's full-sized avatar
🥄
*holds up spork*
🥄
*holds up spork*

Block or report l4vr0v

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
l4vr0v/README.md

Yes I'm a gamer, also a taxpayer.

   - Mary-Belle Kirschner

I mainly write code out of obsessions with data and/or strategy video games.

Pinned Loading

  1. Remove empty hyperlinks (e.g., <a hr... Remove empty hyperlinks (e.g., <a href=''>, <a href='#'>) so misclicks don't accidentally open new pages.
    1
    // ==UserScript==
    2
    // @name         Fix Fake Hyperlinks
    3
    // @namespace    https://greasyfork.org/en/users/689296
    4
    // @version      0.3.0
    5
    // @description  Replaces <a href=''> and <a href='#'> with <a>
  2. Quick and dirty Monte Carlo model to... Quick and dirty Monte Carlo model to determine base pair frequencies (given base frequency map)
    1
    """
    2
    Model the pairs resulting from a known # of available bases.
    3
    e.g., if you have 300 'A's and 300 'B's, to be selected (without replacement)
    4
    and paired, how many 'AA's, 'AB's, and 'BB's will you see?
    5