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
| [ | |
| { | |
| "id": "potatopatch_groundskeeper", | |
| "name": "Groundskeeper", | |
| "image": "https://www.bloodstar.xyz/p/Gobinator/The_Potato_Patch_Part_1/groundskeeper_the_potato_patch_part_1.png", | |
| "team": "townsfolk", | |
| "ability": "The Grimoire is arranged according to a pattern. [+Gardener]", | |
| "flavor": "Eyy Orp! Mahnd the graass wou'd'n yer! I'v'n jus' plaanter'd that this mornan'!", | |
| "firstNight": 0, | |
| "otherNight": 0, |
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
| [ | |
| { | |
| "id": "_meta", | |
| "author": "Darvey", | |
| "name": "Schisms and Pansies (v0.4.2)", | |
| "firstNight": [ | |
| "dusk", | |
| "minioninfo", | |
| "bootleggersanthology_insysns", | |
| "demoninfo", |
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
| [ | |
| { | |
| "id": "_meta", | |
| "author": "darvey", | |
| "name": "Foul Selene's Ascension (v0.2.2)", | |
| "firstNight": [ | |
| "darvonics_intern", | |
| "dusk", | |
| "darvonics_notary", | |
| "reddit_caretaker", |
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
| \documentclass[]{article} | |
| \usepackage{wallpaper, array} | |
| \usepackage{calc} | |
| \usepackage{etoolbox} | |
| \usepackage{tikz} | |
| \usetikzlibrary{patterns} | |
| \usetikzlibrary{calc} | |
| \usepackage[absolute,overlay]{textpos} |
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== | |
| // @match https://store.401games.ca/* | |
| // @match https://www.boardgamebliss.com/* | |
| // ==/UserScript== | |
| const is401 = document.location.host.indexOf("401") > -1; | |
| function getProduct() { | |
| try { | |
| if (is401) { | |
| const wrapper = document.getElementById("ProductJson-product-template"); |
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
| const http = require('http'); | |
| const WebSocket = require('ws'); | |
| // you'll need to npm install ws (tested on v1.1.1, which was the default as of this writing) | |
| const wss = new WebSocket.Server({ | |
| port: 3001 | |
| }); | |
| wss.on('error', console.error); | |
| wss.on('listening', () => console.log("* WS server ready")); |
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
| var magic = ["equals(caret(175.4, 203.9), caret(gt(37.8, 16.3), 19.5))", | |
| "equals(equals(caret(gt(88.7, 66.4), 101.5), caret(72.3, 39.5)), 37.8)", | |
| "equals(equals(equals(caret(22009.9, 10101.8), 7228.7), 368.7), gt(4138488.0, 4020319.0))", | |
| "equals(caret(2066.8, 668.8), caret(12.9, gt(122.1, 8.4)))", | |
| "equals(equals(caret(9999.9, 10375.2), caret(777.7, 37.9)), gt(96.8, 33.0))", | |
| "equals(equals(equals(caret(98765.7, 3777.5), 667.7), 268.3), caret(586728.2, 412841.8))"]; | |
| // unambiguous "caret(22009.9, 10101.8) = 7228.7 = 368.7 = gt(4138488.0, 4020319.0)", ? | |
| // "(98765.7 ^ 3777.5) = 667.7 = 268.3 = (586728.2 ^ 412841.8)" ? |
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
| <?php | |
| namespace App\Providers; | |
| use Illuminate\Support\Arr; | |
| use Illuminate\Support\ServiceProvider; | |
| use InvalidArgumentException; | |
| use Validator; | |
| class RequiredXorRuleProvider extends ServiceProvider | |
| { |
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
| # http://www.graphviz.org/content/cluster | |
| digraph G { | |
| rankdir = LR; | |
| splines = line; | |
| subgraph cluster_package { | |
| subgraph cluster_0 { | |
| color=blue; | |
| node [style=filled]; | |
| label = "JWT"; |
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
| #!/bin/bash | |
| if [[ -z "$(git config user.name)" ]]; then | |
| echo "Git username must be defined to commit!" | |
| echo "(Are you running inside Vagrant/Homestead?)" | |
| echo | |
| exit 1 | |
| fi |
NewerOlder