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

Block or report DavidWesley

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

David Wesley

Passionate (pseudo) backend developer learning to build scalable systems with Node.js and TypeScript.

David Wesley's github stats

👩‍💻 About Me

  • 🌱 I’m currently learning Rust

  • 👨‍💻 All of my projects are available at https://github.com/DavidWesley

  • 💬 Ask me about Javascript, Typescript and Node


🛠 Language and tools

git

Pinned

  1. beecrowd-solutions-in-ts beecrowd-solutions-in-ts Public

    Question codes approved in URI Online Judge (or Beecrowd) site using only modern TS syntax (5.1+)

    TypeScript 1

  2. beecrowd-solutions-in-js beecrowd-solutions-in-js Public

    Question codes approved in URI Online Judge (or Beecrowd) site using only modern Javascript syntax (ES2016+)

    JavaScript 3

  3. upload-ai upload-ai Public

    Repositório do projeto desenvolvido na Trilha Mastery da NLW IA da Rocketseat.

    TypeScript 1

  4. linereader linereader Public

    A simple LineReader class, similar to Java's readline() method, written in Typescript (for Node) to read files line-by-line asynchronously and quickly.

    TypeScript

  5. Conversor de número inteiro para núm... Conversor de número inteiro para número por extenso (string) em português escrito em Javascript
    1
    export const convertNumberToPortugueseNomenclature = function PortugueseNumeralNomenclatureConverter() {
    2
      const PORTUGUESE_UNITS_NAMES_LIST = [
    3
        "",
    4
        "um",
    5
        "dois",
  6. Conversor de número por extenso (str... Conversor de número por extenso (string) escrito em português para número inteiro em Javascript
    1
    export const convertPortugueseNumeralNomenclatureToNumber = function PortugueseNumeralNomenclatureConverter() {
    2
      const PORTUGUESE_UNITS_NAMES_ENTRIES = [
    3
        ["zero", 0],
    4
        ["um", 1],
    5
        ["dois", 2],