Skip to content
View saulodias's full-sized avatar
Block or Report

Block or report saulodias

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. fgts-saque-aniversario fgts-saque-aniversario Public

    A calculadora do Saque Aniversário do FGTS é uma ferramenta web desenvolvida em HTML, CSS e JavaScript, utilizando o framework Bootstrap para o estilo visual. Ela permite aos usuários calcular o v…

    HTML

  2. scoot-challenge scoot-challenge Public

    TypeScript

  3. br-cidades-api br-cidades-api Public

    API de Consulta de Municípios por Coordenadas Geográficas. Encontre a cidade brasileira correspondente a uma localização com latitude e longitude.

    Python 3

  4. Converts SVG files from stroke to path Converts SVG files from stroke to path
    1
    mkdir -p _output
    2
    
                  
    3
    for i in *.svg
    4
    do
    5
       inkscape --actions="select-all;selection-ungroup;select-all;selection-ungroup;select-all;object-stroke-to-path;" --export-filename=- $i > _output/$i
  5. cv-schema cv-schema Public

    The CV Schema is a JSON format for representing applicant information. It's easy to implement and adaptable to different languages and cultures. Benefits include uniformity, simplicity, extensibili…

    HTML 1

  6. A TypeScript module with useSessionS... A TypeScript module with useSessionStorage and useLocalStorage React hooks to save values in the browser sessionStorage or localStorage.
    1
    import { useState, useEffect } from 'react'
    2
    
                  
    3
    /**
    4
     * A prefix to identify session and local storage keys saved using
    5
     * the storage hooks in this application.