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 Full Textarea | |
// @namespace http://idioticdev.com | |
// @description Displays textareas in a lightbox. | |
// @include * | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
let areas = document.getElementsByTagName('textarea') | |
if (areas.length < 1) |
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
const path = require('path') | |
module.exports = { | |
entry: path.join(__dirname, 'public', 'scripts', 'display.js'), | |
output: { | |
path: path.join(__dirname, 'cache', 'scripts'), | |
publicPath: '/scripts/', | |
filename: 'display.js' | |
}, | |
module: { |
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
ERROR in ./public/scripts/display.js | |
Module not found: Error: Can't resolve 'test.js' in '/home/timothy/Projects/Tools/printmanager-2.0/public/scripts' | |
resolve 'test.js' in '/home/timothy/Projects/Tools/printmanager-2.0/public/scripts' | |
Parsed request is a module | |
using description file: /home/timothy/Projects/Tools/printmanager-2.0/package.json (relative path: ./public/scripts) | |
Field 'browser' doesn't contain a valid alias configuration | |
after using description file: /home/timothy/Projects/Tools/printmanager-2.0/package.json (relative path: ./public/scripts) | |
resolve as module | |
/home/timothy/Projects/Tools/printmanager-2.0/public/scripts/node_modules doesn't exist or is not a directory | |
/home/timothy/Projects/Tools/printmanager-2.0/public/node_modules doesn't exist or is not a directory |
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
<template> | |
<div>test</div> | |
</template> |
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
#!/bin/sh | |
valac gjs_constructor_test.vala -X -fPIC -X -shared -o gjs_constructor_test.so --library=GjsConstructorTest --gir GjsConstructorTest-0.1.gir | |
g-ir-compiler --shared-library=gjs_constructor_test.so --output=GjsConstructorTest-0.1.typelib GjsConstructorTest-0.1.gir | |
cp gjs_constructor_test.so /usr/lib/ | |
cp GjsConstructorTest-0.1.typelib /usr/lib/girepository-1.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
const css = document.createElement('style') | |
css.type = 'text/css' | |
css.innerHTML = ` | |
.dead-simple-lightbox + * { | |
display: none; | |
} | |
.dead-simple-lightbox-container { | |
display: none; | |
position: fixed; |
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
import React, { useState, useContext, useRef } from 'react' | |
import { DatePicker } from 'material-ui-pickers' | |
import { MuiPickersContext } from 'material-ui-pickers' | |
export default function DateMultiPicker({ | |
value, | |
onChange, | |
labelFunc, | |
format, | |
emptyLabel, |
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
<script> | |
import UrlPattern from 'url-pattern' | |
import location, { navigate, noMatch } from './location.js' | |
export let path | |
export let component = undefined | |
export let redirect = undefined | |
$: pattern = new UrlPattern(path) | |
$: router = { |
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
import fs from 'fs' | |
import transform from 'rollup-plugin-transform-input' | |
import prettier from 'prettier' | |
import postcss from 'postcss' | |
import sorting from 'postcss-sorting' | |
function formatContents(filepath, source) { | |
return prettier.format(source, { | |
filepath, | |
arrowParens: 'avoid', |
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
main () { | |
var a = 2; | |
var b = [ | |
if (a == 1) | |
1 | |
else if (a == 2) | |
2 | |
]; | |
print(b); |