Skip to content
View alsimoes's full-sized avatar

Highlights

  • Pro
Block or Report

Block or report alsimoes

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

  1. cacau cacau Public

    Simple game made with Löve2D for the Löve Jam 2021.

    Lua

  2. rci rci Public

    [INCOMPLETE] Application for indexing and control of multiple copies of files on removable devices.

    Python

  3. python-studies python-studies Public

    python-studies

    PowerShell

  4. SQL code to format CPF/CNPJ SQL code to format CPF/CNPJ
    1
    ,CASE  
    2
       WHEN LEN([nr_cnpj]) = 10  THEN SUBSTRING([NR_CNPJ],1,2) + '.' + SUBSTRING([NR_CNPJ],3,3) + '.' + SUBSTRING([NR_CNPJ],6,3) + '-' + SUBSTRING([NR_CNPJ],9,2)
    3
       WHEN LEN([nr_cnpj]) = 11  THEN SUBSTRING([NR_CNPJ],1,3) + '.' + SUBSTRING([NR_CNPJ],4,3) + '.' + SUBSTRING([NR_CNPJ],7,3) + '-' + SUBSTRING([NR_CNPJ],10,2)
    4
       WHEN LEN([nr_cnpj]) = 12 THEN  '00.' + SUBSTRING([NR_CNPJ],1,3) + '.' + SUBSTRING([NR_CNPJ],4,3) + '/' + SUBSTRING([NR_CNPJ],7,4) + '-' + SUBSTRING([NR_CNPJ],11,2)
    5
       WHEN LEN([nr_cnpj]) = 13  THEN '0' + SUBSTRING([NR_CNPJ],1,1) + '.' + SUBSTRING([NR_CNPJ],2,3) + '.' + SUBSTRING([NR_CNPJ],5,3) + '/' + SUBSTRING([NR_CNPJ],8,4) + '-' + SUBSTRING([NR_CNPJ],12,2)