Skip to content
View hoox's full-sized avatar

Block or report hoox

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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 Loading

  1. Battery Details Battery Details
    1
    navigator.getBattery().then(function(battery){
    2
    	console.log(battery.level);
    3
    	console.log(battery.charging);
    4
    });
  2. Ambient Light API - "Device Light" E... Ambient Light API - "Device Light" Event Listner
    1
    window.addEventListener('devicelight', function(event) {
    2
        var media = document.querySelectorAll("img");
    3
        for (var i=0;i<media.length;i++) {
    4
            media[i].style.opacity = event.value / 100;
    5
        }
  3. yarn-workspaces-webpack-react-starter yarn-workspaces-webpack-react-starter Public

    A Yarn Workspaces + Webpack + React Starter Kit 🔰

    JavaScript

  4. yarn-workspaces-webpack-typescript-preact-starter yarn-workspaces-webpack-typescript-preact-starter Public

    A Yarn Workspaces + Webpack + TypeScript + Preact Starter Kit 🔰

    JavaScript 1