Code Monkey home page Code Monkey logo
public class SoftwareEngineer
{
    public string Name { get; }
    public AboutMe AboutMe { get; }
    public IEnumerable<Language> Languages { get; }
    public FunFact FunFact { get; }

    public SoftwareEngineer(string name, AboutMe aboutMe, IEnumerable<Language> languages, FunFact funFact)
    {
        Name = name;
        AboutMe = aboutMe;
        Languages = languages;
        FunFact = funFact;
    }
}

var ricardo = new SoftwareEngineer(
    name: "Ricardo Tondello",
    aboutMe: new AboutMe("I'm currently working at https://www.nmbrs.com as a Software Engineer in Amsterdam πŸ‡³πŸ‡±"),
    languages: new[] { "Portuguese πŸ‡§πŸ‡·", "English πŸ‡¬πŸ‡§", "Italian 🀌" }, 
    funFact: throw new BodyException("Right arm not found!"));

Buy Me A Coffee

πŸ† GitHub Trophies

trophy

Snake animation

Ricardo Tondello's Projects

anotherredisdesktopmanager icon anotherredisdesktopmanager

πŸš€πŸš€πŸš€A faster, better and more stable redis desktop manager, compatible with Linux, windows, mac. What's more, it won't crash when loading a large number of keys.

envneedle icon envneedle

Delphi Tool to cacth environment variables value's

functional.benchmark icon functional.benchmark

Provides functionality to perform and measure benchmarks in C#. The class contains methods to benchmark both synchronous and asynchronous operations.

functional.discriminatedunion icon functional.discriminatedunion

Functional.DiscriminatedUnion is a C# library that provides a lightweight implementation of discriminated unions, also known as tagged unions or sum types, for functional programming in C#.

functional.resulttype icon functional.resulttype

Functional.ResultType is a C# library that provides a simple and lightweight Result type for handling functional programming concepts. It's designed to help you manage success and failure cases more elegantly, promoting better error handling and control flow in your applications.

functional.toolkit.optiontype icon functional.toolkit.optiontype

Functional.Toolkit.OptionType is a lightweight library that provides an implementation of the Option type in C#. The Option type is a functional programming concept that represents a value that may or may not be present. This can help reduce the number of null checks in your code, making it more robust and easier to reason about.

functionalenumerableextensions icon functionalenumerableextensions

These extensions are designed to enhance memory efficiency and make common operations more convenient. Whether you're converting to lists, arrays, or working with spans, these extensions aim to improve your code's performance and readability.

functionalstringextensions icon functionalstringextensions

These extensions are designed to make common string manipulation tasks more convenient and expressive. Whether you're dealing with default values, asynchronous operations, or executing actions based on string conditions, these extensions aim to simplify your code and enhance its readability.

lru icon lru

This is a thread safe caching strategy implementation of Least Recently Used (LRU). It defines the policy to evict elements from the cache to make room for new elements when the cache is full, meaning it discards the least recently used items first.

seppuku icon seppuku

Ferramenta para anΓ‘lise de mΓ©tricas de projetos Delphi (Complexidade ciclomatica).

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.