Skip to content
View allanShady's full-sized avatar
🏠
Working from home
🏠
Working from home
Block or Report

Block or report allanShady

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
allanShady/README.md

allancamilo.com Blog Projects Tweets instagram

Visitor Count

Pinned

  1. nlw4-moveit nlw4-moveit Public

    An application to remind Developers to practices health habits that count to their daily.

    TypeScript 3 1

  2. MSQL-Server-made-easy-with-docker MSQL-Server-made-easy-with-docker Public

    Docker files to host container with MSSQL

    TSQL 3

  3. nlw-happy nlw-happy Public

    O Happy é uma aplicação que conecta pessoas à casas de acolhimento institucional para fazer o dia de muitas crianças mais feliz 💕❤

    TypeScript 2

  4. work-environment-setup work-environment-setup Public

    My favorities tools sets and set up

    3

  5. Keycloak Token introspection Keycloak Token introspection
    1
    #!/bin/bash
    2
    
                  
    3
    KC_REALM=<insert realm name here>
    4
    KC_USERNAME=<username here>
    5
    KC_PASSWORD=<password here>
  6. Usefull git commands Usefull git commands
    1
    #!/bin/bash
    2
    
                  
    3
    # remove all local branches except develop
    4
    git branch | grep -v “develop” | xargs git branch -d
    5