hyperHTML | lit-html | |
---|---|---|
released | March 2017 | August 2017 |
version | ||
license | ISC | BSD 3-Clause License |
compatibility template literals | Edge 13+, FF 34+, CH 41+, SF 9.1+, iOS 9.2+ | Edge, FF 55+, CH 41+, SF 9.1+, iOS 9.2+ |
compatibility transpiled | IE9+ FF 34+, WK (Android 4+), C |
This file contains 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 python3 | |
import os.path | |
import glob | |
import sqlite3 | |
import json | |
def main(): | |
styles_glob = os.path.expanduser('~/AppData/Roaming/Mozilla/Firefox/Profiles/*.default/stylish.sqlite'); | |
styles_path = glob.glob(styles_glob)[0]; |
This file contains 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 RedaddCSS | |
// @namespace com.digitalfishfun.nosteponcss | |
// @version 1 | |
// @description Allows subreddits to add CSS through an unofficial method. | |
// @grant none | |
// @include https://reddit.com/r/* | |
// ==/UserScript== | |
const nosteponcss_instructions = ` |
This file contains 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
An exception has occurred in the compiler (1.8.0_131). Please file a bug against the Java compiler via the Java bug reporting page (http://bugreport.java.com) after checking the Bug Database (http://bugs.java.com) for duplicates. Include your program and the following diagnostic in your report. Thank you. | |
java.lang.AssertionError | |
at com.sun.tools.javac.util.Assert.error(Assert.java:126) | |
at com.sun.tools.javac.util.Assert.check(Assert.java:45) | |
at com.sun.tools.javac.comp.LambdaToMethod$LambdaAnalyzerPreprocessor$LambdaTranslationContext.addSymbol(LambdaToMethod.java:2024) | |
at com.sun.tools.javac.comp.LambdaToMethod$LambdaAnalyzerPreprocessor.visitNewClass(LambdaToMethod.java:1378) | |
at com.sun.tools.javac.tree.JCTree$JCNewClass.accept(JCTree.java:1516) | |
at com.sun.tools.javac.tree.TreeTranslator.translate(TreeTranslator.java:58) | |
at com.sun.tools.javac.tree.TreeTranslator.visitLambda(TreeTranslator.java:289) | |
at com.sun.tools.javac.comp.LambdaToMethod$L |