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

Block or report adryanf

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. 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
    //