Skip to content
View tracyloisel's full-sized avatar

Organizations

@VerseauParis @EquipeTechnique
Block or Report

Block or report tracyloisel

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

    Forked from getcursor/cursor

    An editor made for programming with AI 🤖

    TypeScript 1

  2. activejob-google_cloud_pubsub activejob-google_cloud_pubsub Public

    Forked from ursm/activejob-google_cloud_pubsub

    Google Cloud Pub/Sub adapter and worker for ActiveJob

    Ruby 2

  3. Add to_i feature to TrueClass and Fa... Add to_i feature to TrueClass and FalseClass object
    1
    /*
    2
     * call-seq:
    3
     *   false.to_i   ->  0
    4
     *
    5
     * The integer representation of <code>false</code> is 0.
  4. add new ruby configuration to atom p... add new ruby configuration to atom package goto-definition
    1
      Ruby:
    2
        regex: [
    3
          "(^|\\s)class\\s+{word}(\\s|$)"
    4
          "(^|\\s)module\\s+{word}(\\s|$)"
    5
          "(^|\\s)def\\s+(?:self\\.)?{word}\\s*\\(?"
  5. Write chainable methods at class level Write chainable methods at class level
    1
    #PizzaHut.pepperoni(6).
    2
    #         italian_sausage_ml(20).
    3
    #         ham(6).
    4
    #         bacon(6).
    5
    #         seasoned_pork_and_beef(10).