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

Block or report finevine

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. Projet7 Projet7 Public

    GRANDPY bot

    Python

  2. Projet6 Projet6 Public

    Create, populate and test OC PIZZA DATABASE

    PLpgSQL

  3. Projet5 Projet5 Public

    CLI for FOODSTITUTE

    Python

  4. A regex cheatsheet 👩🏻‍💻 (by Catherine) A regex cheatsheet 👩🏻‍💻 (by Catherine)
    1
    let regex;
    2
    
    
    3
    /* matching a specific string */
    4
    regex = /hello/; // looks for the string between the forward slashes (case-sensitive)... matches "hello", "hello123", "123hello123", "123hello"; doesn't match for "hell0", "Hello" 
    5
    regex = /hello/i; // looks for the string between the forward slashes (case-insensitive)... matches "hello", "HelLo", "123HelLO"