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
./gradlew cucumber --debug-jvm |
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
# vim: tw=80 shiftwidth=4 tabstop=4 softtabstop=4 et ai | |
name: anki-desktop | |
version: 2.0.52 | |
summary: Anki desktop client | |
description: | | |
Anki is a program which makes remembering things easy. Because it's a lot | |
more efficient than traditional study methods, you can either greatly | |
decrease your time spent studying, or greatly increase the amount you learn. | |
confinement: devmode |
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
Usage: java cucumber.api.cli.Main [options] [[[FILE|DIR][:LINE[:LINE]*] ]+ | @FILE ] | |
Options: | |
-g, --glue PATH Where glue code (step definitions, hooks | |
and plugins) are loaded from. | |
-p, --[add-]plugin PLUGIN[:PATH_OR_URL] | |
Register a plugin. | |
Built-in formatter PLUGIN types: junit, | |
html, pretty, progress, json, usage, rerun, |
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
allprojects { | |
repositories { | |
jcenter() | |
} | |
afterEvaluate { | |
project.tasks.matching(new Spec<Task> () { | |
def boolean isSatisfiedBy(Task el) { | |
return (el instanceof JavaExec || el instanceof Test) ? true : false | |
} |
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
➜ ~ pacman -Qi libinput | |
Name : libinput | |
Version : 1.10.3-1 | |
Description : Input device management and event handling library | |
Architecture : x86_64 | |
URL : https://www.freedesktop.org/wiki/Software/libinput/ | |
Licenses : custom:X11 | |
Groups : None | |
Provides : None | |
Depends On : mtdev systemd libevdev libwacom |
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
# Steps to repeat | |
On tty1 - Start terminology from a login shell via ~/.zlogin | |
- For reference started with: terminology -W -s &> ~/.terminology_log | |
On tty2 - Login, exit terminology session. | |
- startx with ~/.xinitrc executing a gnome session | |
- Swithc back to tty1 | |
- Terminology in tty1 in unresponsive to input and contains a black screen | |
### Below is the contents of the entire .termology_log |
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
accerciser | |
aconfmgr-git | |
aisleriot | |
android-udev | |
atomix | |
autoconf | |
automake | |
baobab | |
bash | |
binutils |
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
➜ ~ pacman -Qqe | |
autoconf | |
automake | |
bash | |
binutils | |
bison | |
blueman | |
bluez | |
bluez-utils | |
bzip2 |
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
java.lang.ExceptionInInitializerError | |
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) | |
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) | |
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) | |
at java.lang.reflect.Constructor.newInstance(Constructor.java:526) | |
at org.junit.runners.BlockJUnit4ClassRunner.createTest(BlockJUnit4ClassRunner.java:217) | |
at org.junit.runners.BlockJUnit4ClassRunner$1.runReflectiveCall(BlockJUnit4ClassRunner.java:266) | |
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) | |
at org.junit.runners.BlockJUnit4ClassRunner.methodBlock(BlockJUnit4ClassRunner.java:263) | |
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:78) |
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
WITH RECURSIVE | |
days(day) AS ( | |
SELECT '2015-10-05T00:00:00Z' | |
UNION ALL | |
SELECT date(day,'+1 day') || 'T00:00:00Z' FROM days WHERE day < '2015-11-21T00:00:00Z' | |
) | |
SELECT day, picks.title, picks.date FROM days LEFT JOIN picks ON picks.date = days.day WHERE picks.date IS NULL; |
NewerOlder