Skip to content
View NayMyers's full-sized avatar
  • Bournemouth
Block or Report

Block or report NayMyers

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

Pinned

  1. Dissertation Dissertation Public

    A repository to keep track of my dissertation

    TeX 1

  2. Grabs a stock data from an API in .j... Grabs a stock data from an API in .json format and writes it to a textView
    1
    package com.example.testapiinteraction;
    2
    
                  
    3
    import android.content.Context;
    4
    import android.service.autofill.Dataset;
    5
    import android.support.v7.app.AppCompatActivity;
  3. rightmove_property_value_scraper rightmove_property_value_scraper Public

    scrapes property values from rightmove and performs basic analysis. (only on pages not listed in robots.txt at time of creation)

    Jupyter Notebook

  4. WWWMC WWWMC Public

    What's Wrong With My Crop Website Repo

    JavaScript

  5. WWWMCAPI WWWMCAPI Public

    API to serve WWWMC website

    Python

  6. roulette wheel mating pool selector roulette wheel mating pool selector
    1
    def selectIndividualForMatingPool(fitness):
    2
        totalPopFitness = np.sum(fitness)
    3
        randomNumber = np.random.randint(totalPopFitness)
    4
        runningTotal = 0
    5
        for i, fit in enumerate(fitness):