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; } = "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; } = { "Python", "C#", "Javascript" };
public string[] Frameworks { get; init; } = { "ASP.Net", "FastAPI", "ReactJS" };
public string[] Databases { get; init; } = { "MySQL", "Redis", "Mongo" };
public string[] Learning { get; init; } = { "Kubernetes", "GraphQL", "Rust" };
}
[DataClass(unsafeHash: true, frozen: true)]
class Social
{
public string Twitter { get; init; } = "WasiulHq";
public string LinkedIn { get; init; } = "wasiul-haque";
}
⭐
Recognized Garbage
Just want to sleep and never wake up.
- Tuscaloosa, Alabama
-
22:01
(UTC -06:00) - wasiulhaque.github.io
- @WasiulHq
- in/wasiul-haque
- u/wasiulhq
Highlights
Pinned Loading
-
Ecfor
Ecfor PublicForked 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
-
tic-tac-toe
tic-tac-toe PublicA desktop tic-tac-toe game built using Java and Swing that lets player play with a very simple UI.
Java
-
BankBase
BankBase PublicForked 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
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.