Skip to content
View jdwaudby's full-sized avatar
Block or Report

Block or report jdwaudby

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
jdwaudby/README.md

Hi there 👋

Pinned

  1. jdwaudby.github.io jdwaudby.github.io Public

    HTML

  2. battleship battleship Public

    C#

  3. f1-sweepstake f1-sweepstake Public

    C#

  4. LINQPad script for generating a rand... LINQPad script for generating a randomised list of F1 drivers for any given total
    1
    int total = 18;
    2
    
                  
    3
    string[] drivers = {
    4
    "Sebastian Vettel, Ferrari",
    5
    "Kimi Räikkönen, Ferrari",
  5. LINQPad script for generating a rand... LINQPad script for generating a randomised list of F1 drivers for a given list of players
    1
    var players = new List<Player> {
    2
    	new Player(1,"Player 1"),
    3
    	new Player(2,"Player 2"),
    4
    	new Player(3,"Player 3"),
    5
    	new Player(4,"Player 4"),