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

Block or report HarshDaga

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. CryptoTickerBot CryptoTickerBot Public

    A .NET Core program to fetch ticker data from various crypto exchange websites.

    C# 28 9

  2. KomodoRpcClient KomodoRpcClient Public

    A .NET Core WPF App for interacting with a Komodo RPC server.

    C#

  3. Plagiarism-Checker Plagiarism-Checker Public

    C# 1 3

  4. Workaround for integral generic cons... Workaround for integral generic constraints in C#
    1
    using System;
    2
    using System.Linq.Expressions;
    3
    using System.Runtime.CompilerServices;
    4
    
                  
    5
    public static class Operator
  5. A Full Cycle Linear Congruential Gen... A Full Cycle Linear Congruential Generator implementation in C#
    1
    // https://en.wikipedia.org/wiki/Linear_congruential_generator
    2
    public class LinearCongruentialGenerator
    3
    {
    4
      public const            long   Increment = 13;
    5
      private static readonly Random Random    = new Random ( );