Skip to content
View raposamillar's full-sized avatar
👟
👟

Highlights

  • Pro

Block or report raposamillar

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

Hi 👋 Bonjour

  • 🔭 I’m currently working on a website of local routes used by my running group
  • ⚡ Fun fact: J'ai enseigné le piano en français pendant deux ans

Pinned Loading

  1. sound-journal sound-journal Public

    An online repository of collected sounds including church bells, crickets, and silly piano playing.

    HTML

  2. running-routes running-routes Public

    A collection of routes used by a local group of runners in Etobicoke, Ontario, Canada.

    HTML

  3. runners-conversion-calculator runners-conversion-calculator Public

    A calculator to help amateur athletes convert their training distances from imperial to metric units and vice-versa

    CSS

  4. A-Night-In A-Night-In Public

    Suitable for both families and adults only, A Night In, invites users to find the perfect drink and movie pairing.

    JavaScript 1 2

  5. Email RegEx Tutorial Email RegEx Tutorial
    1
    # Email RegEx Tutorial
    2
    
                  
    3
    There are numerous ways to search for and validate data in an application using JavaScript.  Simple queries can be completed using keywords.  One-to-one data matches can be hard-coded.  However, the needs of most programs are more complex.  This is where regexes or regular expressions come into play.
    4
    
                  
    5
    Practically speaking, regexes allow for different combinations of letters, numbers, and symbols to be used to create a pattern.  Any code which fits the criteria or parameters is a match.  Regexes commonly are used to validate email addresses, usernames, phone numbers, and other types of input data.  To the novice developer they are coding puzzles in miniature, which one may observe like a blade of grass on a summer’s day.