Skip to content
View calazzza's full-sized avatar
  • Solutis Tecnologias
  • Salvador/BA - Brazil

Block or report calazzza

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. calazzza.github.io calazzza.github.io Public

    Personal site

    SCSS

  2. dosabcp dosabcp Public

    Esse sistema é uma calculadora que fornece o traço inicial para dosagem de concreto.

    JavaScript

  3. plone-eggs-versions plone-eggs-versions Public

    A Python script to list Plone Eggs versions from your instance to a versions.cfg file

    Python

  4. tempoMVC tempoMVC Public

    C#

  5. Nodemon VS Code Debug Nodemon VS Code Debug
    1
    {
    2
        "configurations": [
    3
            {
    4
                "console": "integratedTerminal",
    5
                "internalConsoleOptions": "neverOpen",
  6. Select where in a list Select where in a list
    1
    DECLARE @myList TABLE (id int)
    2
    INSERT INTO @myList VALUES (1),(2),(3),(4),(5),(6)
    3
    SELECT * FROM Example WHERE Id IN (SELECT id from @myList)