This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name (Web-Vitals lib) Cumulative Layout Shift Measure | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Try to improve your CWV score | |
// @author @jaesbit | |
// @match *://*/* | |
// @grant none | |
// ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Cumulative Layout Shift Measure | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Try to improve your CWV score | |
// @author @jaesbit | |
// @match *://*/* | |
// @grant none | |
// ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.lang.StringBuilder; | |
import hudson.model.TaskListener; | |
import java.lang.reflect.Field; | |
class Logger { | |
public enum Level { | |
WTF(55), CRITICAL(50), ERROR(40), WARNING(30), INFO(20), DEBUG(10), NOSET(0); | |
private final int level; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
""" | |
Just python 3.6.X deploy and install for UBUNTU 16.04 or greater | |
Can be run in python 2 and 3 | |
Research, linux_py36 Started by Aaron Giovannini (agiovannini) | |
This file was created at 12/junio/2017 |