Skip to content
View means2014's full-sized avatar
🏠
Working from home
🏠
Working from home

Block or report means2014

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 250 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. Converts utcdate time from database ... Converts utcdate time from database to users locale for web applications.
    1
    function utc_to_local() {
    2
    /*  
    3
    NOTE: The utctime is created in Flask with datetime.utcnow().
    4
    If your initial datetime is formatted differently, you may
    5
    need to do some sanitization to get this to work for you.
  2. Simple python snippet to display fil... Simple python snippet to display file tree in console
    1
    import os
    2
    
                  
    3
    def print_curr_dir(some_dir, level=1):
    4
        root, dirs, files = next(os.walk(some_dir))
    5
        for i in range(level-1):