Skip to content

Instantly share code, notes, and snippets.

View sharpninja's full-sized avatar

Payton Byrd sharpninja

  • 17:21 (UTC -05:00)
View GitHub Profile
@ZacharyPatten
ZacharyPatten / GenerateRandomWeightedData.cs
Last active January 2, 2020 22:09
An example of weighted random generation.
using System;
using System.Collections.Generic;
using System.Linq;
namespace MathSyntax
{
class Program
{
static void Main(string[] args)
{
@ZacharyPatten
ZacharyPatten / Unique Random Generation.md
Last active August 2, 2020 01:20
Generating Unique Random Data: A Practical Example Of Algorithm Analysis

Generating Unique Random Data: A Practical Example Of Algorithm Analysis

I ran across a practical example of algorithm analysis when I wrote a method that generates unique random values inside a provided range. Figured I would share it...

The code in this article was included in my https://github.com/ZacharyPatten/Towel project. Please check it out if you want to see more code like it. :)

Introduction

@davidfowl
davidfowl / dotnetlayout.md
Last active May 15, 2024 07:06
.NET project structure
$/
  artifacts/
  build/
  docs/
  lib/
  packages/
  samples/
  src/
 tests/