Skip to content
View jidesakin's full-sized avatar
🪴
🪴

Block or report jidesakin

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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. cpp-challenges cpp-challenges Public

    C++ Challenges: Low to Pro

    C++

  2. demy demy Public

    Bot

    JavaScript

  3. pokemon-api pokemon-api Public

    Given a Pokemon’s name returns that Pokemon’s abilities

    JavaScript 1

  4. UoW Example UoW Example
    1
    unitOfWork: IUnitOfWork = UnitOfWorkFactory::makeUnitOfWork('typeorm');
    2
    
                  
    3
    unitOfWork.start();
    4
    
                  
    5
    var work = () {
  5. techstarta/techstarta techstarta/techstarta Public

    3

  6. typeorm-unit-of-work.ts typeorm-unit-of-work.ts
    1
    export class TypeOrmUnitOfWork implements IUnitOfWork {
    2
      private readonly asyncDatabaseConnection: Connection;
    3
      private readonly queryRunner: QueryRunner;
    4
      private transactionManager: EntityManager;
    5