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
/* ==UserStyle== | |
@name HIDIVE - Better Subtitle Outline/Stroke | |
@namespace com.toadking.hidive | |
@version 1.0.0 | |
@description Better subtitle outline/stroke effect on HIDIVE | |
@author Toad King | |
@preprocessor default | |
@var color strokeColor "Outline/Stroke Color" black | |
@var number strokeWidth "Outline/Stroke width" [0.15, 0, 1, 0.01, 'em'] | |
==/UserStyle== */ |
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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Relationship Combiner</title> | |
<style> | |
#output { | |
white-space: pre-wrap; | |
} |
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
// example input | |
const input = ` | |
Disc 1 | |
Composed by | |
John Doe (1, 2, 6~10) | |
Foo Bar (3) | |
Arranged by | |
Some Guy (1~10) |
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 { readFileSync, writeFileSync } from 'fs' | |
async function get(url, options) { | |
const controller = new AbortController() | |
const { signal } = controller | |
const res = await fetch(url, { ...options, signal }) | |
if (!res.ok) { | |
controller.abort() | |
throw new Error(`bad request (${res.status} ${res.statusText})`) | |
} |
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 Musicbrainz - Combine Catalog Numbers | |
// @namespace com.toadking.mb.catalog | |
// @match https://musicbrainz.org/* | |
// @grant none | |
// @version 1.4 | |
// @author Toad King | |
// ==/UserScript== | |
const catNumRegExp = /^(.*?)(\d+)([^\d]*)$/ |
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 -e | |
# source: https://gist.github.com/ToadKing/006dd0eaa5f2cdc26b88bfb2d08b0e15 | |
_name=firefox | |
_channel=nightly | |
_lang=en-US | |
_arch=x86_64 | |
pkgname=${_name}-${_channel} |
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
<div id="wheel" ref="wheelContainer" :style="styles.wheel"> | |
<img :style="styles.ticker" | |
ref="ticker" | |
:src="settings.ticker.url"/> | |
<div id="inner-wheel"> | |
<img v-if="settings.centerImage.enabled" | |
:src="settings.centerImage.url" | |
:style="styles.centerImage" /> | |
<svg viewBox="-1 -1 2 2" | |
xmlns="http://www.w3.org/2000/svg" |
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
ACTION=="add", SUBSYSTEM=="hidraw", ATTRS{idVendor}=="1038" RUN+="/etc/udev/rules.d/steelseries-perms.py '%E{DEVNAME}'" |
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
Computer Information: | |
Manufacturer: Unknown | |
Model: Unknown | |
Form Factor: Desktop | |
No Touch Input Detected | |
Processor Information: | |
CPU Vendor: GenuineIntel | |
CPU Brand: Intel(R) Core(TM) i7-4770 CPU @ 3.40GHz | |
CPU Family: 0x6 |
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
1>------ Build started: Project: dynarmic, Configuration: Debug x64 ------ | |
1>Build started 8/12/2018 9:07:24 PM. | |
1>Target ResolveProjectReferences: | |
1> Target GetNativeManifest: | |
1>Target InitializeBuildStatus: | |
1> Touching "dynarmic.dir\Debug\dynarmic.tlog\unsuccessfulbuild". | |
1>Target CustomBuild: | |
1> All outputs are up-to-date. | |
1>Target ClCompile: | |
1> a32_emit_x64.cpp |
NewerOlder