Skip to content
View bilelz's full-sized avatar

Block or report bilelz

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
bilelz/README.md
  • ๐Ÿ‘‹ Hi, Iโ€™m @bilelz
  • ๐Ÿ‘€ Iโ€™m interested in the web
  • ๐ŸŒฑ Iโ€™m currently learning the web
  • ๐Ÿ’ž๏ธ Iโ€™m looking to collaborate on the web
  • ๐Ÿ“ซ How to reach me : bilelz.dev
  • Deploy static content to Pages

Pinned Loading

  1. www www Public

    Personal website

    CSS

  2. covid100 covid100 Public

    Map for trips during the covid-19

    CSS

  3. PKCE Code Verifier and Code Challeng... PKCE Code Verifier and Code Challenge Generator without externals libs (vanilla js). Demo : https://codepen.io/bilelz/full/YzNozBe
    1
    function generateCodeVerifier() {
    2
      return Array(128)
    3
          .fill('0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-._~')
    4
          .map(x => x[Math.floor(crypto.getRandomValues(new Uint32Array(1))[0] / (0xffffffff + 1) * x.length)])
    5
          .join('');
  4. Generate app version file from packa... Generate app version file from package.json and git | for angular or other frameworks
    1
    /* 
    2
      From https://gist.github.com/bilelz/04707e300811d2b7fe3815ede073422c
    3
      inspired by https://medium.com/@amcdnl/version-stamping-your-app-with-the-angular-cli-d563284bb94d
    4
    */
    5
    const fs = require('fs');
  5. HTML's < dialog > element - feature... HTML's < dialog > element - feature detection
    1
    if (!!document.createElement("dialog").showModal) {
    2
      console.log('Native support: OK ๐Ÿ˜€')
    3
    }else{
    4
      console.log('Native support: KO ๐Ÿ˜ญ')
    5
    }