Skip to content

Instantly share code, notes, and snippets.

View modess's full-sized avatar

Niklas Modess modess

View GitHub Profile
// ==UserScript==
// @name Chessable Enhancer
// @match *://*chessable.com/*
// @version 0.0.0
// @author modess
// @require https://cdn.jsdelivr.net/combine/npm/@violentmonkey/dom@2,npm/@violentmonkey/ui@0.7
// @require https://gist.github.com/raw/2625891/waitForKeyElements.js
// @grant GM_addStyle
// @grant GM_setClipboard
pipeline {
agent any
options {
disableConcurrentBuilds()
timeout(time: 30, unit: 'MINUTES')
}
environment {
PATH = "vendor/bin:/var/lib/jenkins/.composer/vendor/bin:$PATH"
@modess
modess / phpunit.xml.dist
Created October 1, 2018 04:13
Laravel >= 5.5 PHPUnit configuration file
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
@modess
modess / phpunit.xml.dist
Created March 13, 2018 06:07
Generic PHPUnit configuration file
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
@modess
modess / phpunit.xml.dist
Last active October 1, 2018 04:12
Laravel <= 5.4 PHPUnit configuration file
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="bootstrap/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"