Skip to content
View adryanf's full-sized avatar
🎯
Focusing
🎯
Focusing

Block or report adryanf

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. inframod inframod Public

    Automatically provisions local interdependent node modules referenced as file dependencies

    TypeScript 1

  2. thingsofinterest thingsofinterest Public

    Things I find interesting

    C#

  3. Call celery task chain from flask ap... Call celery task chain from flask app using celery task signatures
    1
    from flask import Flask, request
    2
    from celery import Celer
    3
     
    4
    celery = Celery('sample', backend='rpc://', broker='amqp://guest@localhost//')
    5
     
  4. Number of valid parentheses combinat... Number of valid parentheses combinations
    1
    //inefficient O(n^2)
    2
     
    3
    // Improvement Ideas
    4
    // The binary numbers must be balanced - equal number of 0s and 1s - maybe there's an efficient way to find out these numbers
    5
    //