Skip to content
View wasiulhaque's full-sized avatar
Recognized Garbage
Recognized Garbage

Organizations

@iut-cse @MasterCourse-Bangladesh
Block or Report

Block or report wasiulhaque

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
wasiulhaque/README.md
using System;

[AttributeUsage(AttributeTargets.Class)]
public class DataClassAttribute : Attribute
{
    public bool UnsafeHash { get; }
    public bool Frozen { get; }

    public DataClassAttribute(bool unsafeHash = false, bool frozen = false)
    {
        UnsafeHash = unsafeHash;
        Frozen = frozen;
    }
}

[DataClass(unsafeHash: true, frozen: true)]
class Bio
{
    public string Name { get; init; } = "Wasiul Haque";
    public string Designation { get; init; } = "Junior Software Engineer";
    public string Company { get; init; } = "Reve Systems";
    public string Base { get; init; } = "Dhaka, Bangladesh";
}

[DataClass(unsafeHash: true, frozen: true)]
class Stack
{
    public string[] Languages { get; init; } = { "C#", "JavaScript", "Python" };
    public string[] Frameworks { get; init; } = { "ASP.Net", "FastAPI", "ReactJS" };
    public string[] Databases { get; init; } = { "MySQL", "PostgreSQL", "Mongo" };
    public string[] Learning { get; init; } = { "Docker", "GraphQL", "Rust" };
}

[DataClass(unsafeHash: true, frozen: true)]
class Social
{
    public string Twitter { get; init; } = "WasiulHq";
    public string LinkedIn { get; init; } = "wasiul-haque";
}

Pinned Loading

  1. Ecfor Ecfor Public

    Forked from Hasan-Saju/Ecfor

    A web application which translates speech to sign language and sign language to speech in order to minimize the communication gap between normal people and the people with special need.

    CSS

  2. tic-tac-toe tic-tac-toe Public

    A desktop tic-tac-toe game built using Java and Swing that lets player play with a very simple UI.

    Java

  3. BankBase BankBase Public

    Forked from Hasan-Saju/BankBase

    A Django based web application which will help a bank employee to Record and Provide User Data, Record and Provide Transactions, Record and Provide Bank Statement, Check and Record Loan Schemes, Ch…

    HTML

  4. Quizzards Quizzards Public

    An online quiz app that enables the teacher to create quizzes. Students can sign into their account and opt in for the quizzes that are either made public or have been assigned to them.

    PHP 2