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

Organizations

@andela
Block or Report

Block or report brianbirir

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. iot-cloud-platform iot-cloud-platform Public

    IoT Cloud Platform

    JavaScript 2

  2. Git Squash Rebase Git Squash Rebase
    1
    #!/bin/sh
    2
    
                  
    3
    # Squash rebase all the commits in your working/feat. branch in one line against a base branch:
    4
    # git cherry -v base_branch | wc -l | awk '{print $1} gets the number of commits from the start of your branch
    5
    git rebase -i HEAD~$(git cherry -v base_branch | wc -l | awk '{print $1}')
  3. Python Date Time Resources Python Date Time Resources
    1
    # Resource Links for Python DateTime
    2
    
                  
    3
    https://www.guru99.com/date-time-and-datetime-classes-in-python.html
    4
    
                  
    5
    https://www.saltycrane.com/blog/2008/06/how-to-get-current-date-and-time-in/