Skip to content
View joaquimbarreto's full-sized avatar
🈵
I hear and I forget. I see and I remember. I do and I understand. - Confucius
🈵
I hear and I forget. I see and I remember. I do and I understand. - Confucius

Block or report joaquimbarreto

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. barreto-co barreto-co Public

    Simple personal website using React

    JavaScript 1

  2. pig-latin pig-latin Public

    An app to translate any text to pig latin.

    Ruby 1

  3. Hands HQ Third Interview Pair Progra... Hands HQ Third Interview Pair Programming
    1
    string = "3797"
    2
    
                  
    3
    // test when a digit is taken out if the number is still prime
  4. hooks nav hooks nav
    1
    
                  
    2
    import React, { useState, useEffect } from "react";
    3
    import "../styles.css";
    4
    
                  
    5
    const NavHooks = props => {
  5. Regex Password Validation Regex Password Validation
    1
    function validate(password) {
    2
      return /(?=.{6,})(?=.*[a-z])(?=.*[A-Z])(?=.*[0-9])([a-zA-Z0-9]|)*$/.test(password);
    3
    }
  6. CSS Grid Template.html CSS Grid Template.html
    1
      <section class="grid">
    2
          <div class="row">
    3
            <div class="col-1-of-2">
    4
              Col 1 of2
    5
            </div>