Skip to content
View bolufowobi's full-sized avatar
🏠
Working from home
🏠
Working from home
  • Remote
  • NIGERIA
Block or Report

Block or report bolufowobi

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
bolufowobi/README.md

Babs Olufowobi

About me

using System;
using System.Collections.Generic;

var details = new BioDetails
        {
            Details = new Dictionary<string, string>
            {
                ["- ⚡ Quick bio:"] = "Quality oriented self-motivating engineer that is commercially aware, evolving, and enthusiastic about building stuff",
                ["- 👯 I’m looking to collaborate on:"] = "Dotnet, C#, ASP.Net, and Docker related projects",
                ["- 💬 Ask me about:"] = "Dotnet, ASP.NET, C#, SQL, Software Design & Architecture, Web-Dev, and CI/CD Pipelines",
                ["- 📫 How to reach me:"] = "olufowobibabs@gmail.com"
            }
        };

        foreach (var (key, value) in details.Details)
        {
            Console.WriteLine($"{key} {value}");
        }
    

interface IBioDetails
{
    Dictionary<string, string> Details { get; }
}

record BioDetails : IBioDetails
{
    public Dictionary<string, string> Details { get; init; } = new();
}

You can reach me at 👽

Babs Olufowobi's LinkedIn Profile Babs Olufowobi's LinkedIn Profile Babs Olufowobi's Stack Overflow Profile

My stack 👨‍💻

Tools that I use on a daily basis, or that I've used or worked (either much or a bit) with on the past

Babs Olufowobi :: StackShare

Popular repositories Loading

  1. gRPC-Demo gRPC-Demo Public

    A simple CRUD Student data.Using Winform as Client and Console as Server

    C# 1 1

  2. demo demo Public

    Forked from typicode/demo

    A demo repository for My JSON Server (Alpha)

  3. bolufowobi.github.io bolufowobi.github.io Public

    Port

    HTML

  4. framework framework Public

    Forked from accord-net/framework

    Machine learning, computer vision, statistics and general scientific computing for .NET

    C#

  5. SignalR-Mastery SignalR-Mastery Public

    Forked from 1kevgriff/SignalR-Mastery

    Source code and examples for my SignalR Mastery course.

    C#

  6. Akowe-Crud Akowe-Crud Public

    A simple ASP .Net Core 3.1 Web Api to record a basic Academic Credentials.

    JavaScript