Skip to content
View iGitScor's full-sized avatar
🤜
Making a better world
🤜
Making a better world

Organizations

@FlipFlopWeekly @MontpellierJS @FatBoyCrew @AilePapillon @hackathoncovid19
Block or Report

Block or report iGitScor

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

Hi there 👋

  • 🔭 I’m currently working on too many projects

  • 🌱 I’m currently learning ...

    • How to write articles
    • Machine learning
    • Team management
  • 💬 Ask me about development by creating an issue on this repository

  • 📫 How to reach me: Twitter, Github

  • ⚡ Fun fact: I'd like to work in North America

Pinned

  1. frontend-developer frontend-developer Public

    Frontend developer playground

    JavaScript

  2. hiring-meteor hiring-meteor Public

    A job ad site with meteor content administration

    TypeScript 1 3

  3. zori-meteor-ng2 zori-meteor-ng2 Public

    Real-time link sharer using Meteor as its backend and AngularJS 2 on the frontend.

    CSS

  4. Normalize Normalize
    1
    "mon string avé des accents".normalize("NFD").replace(/[\u0300-\u036f]/g, ''); // Remove accent
    2
    "mon string avé des accents".normalize("NFD").replace(/([^a-zA-Z0-9 ]*)/g, ''); // Keep only letters, numbers and space
    3
    
                  
    4
    "mon string avé des accents".normalize("NFD")
    5
      .replace(/[\u0300-\u036f]/g, '')
  5. :root tip :root tip
    1
    :root {
    2
      font-size: calc(16px + (24 - 16) * (100vw - 400px)/(800 - 400));
    3
      line-height: calc(1.3em + (1.5 - 1.3) * ((100vw - 21em)/(35 - 21)));
    4
    }
  6. Remove unnecessary architecture in b... Remove unnecessary architecture in build phase (Xcode)
    1
    APP_PATH="${TARGET_BUILD_DIR}/${WRAPPER_NAME}"
    2
    
                  
    3
    # This script loops through the frameworks embedded in the application and
    4
    # removes unused architectures.
    5
    find "$APP_PATH" -name '*.framework' -type d | while read -r FRAMEWORK