Skip to content
View simonbassey's full-sized avatar

Block or report simonbassey

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 Loading

  1. spring-todo spring-todo Public

    A simple restful webservice with spring-boot following SOLID principles and Clean Architecture

    Java

  2. NodeTodo NodeTodo Public

    A demo RESTful webservice with NodeJs/Typescript using Express and MongoDb and follows Clean Architecture

    TypeScript

  3. DistributedCache-Demo DistributedCache-Demo Public

    A sample .NetCore web API that uses Redis and Microsoft's Caching Extension library for distributed caching

    C#

  4. Vector.py Vector.py
    1
    class Vector:
    2
    
                  
    3
      def __init__(self, l):
    4
        if type(l) is not list and type(l) is not tuple:
    5
          raise ValueError(str.format("class Vector only accepts a list"))