Skip to content

Instantly share code, notes, and snippets.

View mkordas's full-sized avatar
😃
happy

Michal Kordas mkordas

😃
happy
View GitHub Profile
@mkordas
mkordas / store-passwords.js
Created December 4, 2018 14:20
Store passwords
var password = GM_getValue(passwordType, "");
var encKey = GM_getValue("encKey", "");
if (!encKey) {
encKey = prompt('Encryption key not set for ' + passwordType + ' password, please enter a random string:', '');
GM_setValue("encKey", encKey);
}
decodeOrPrompt();
FROM ubuntu:14.04
MAINTAINER Daniil Yaroslavtsev <Daniil.Yaroslavtsev@gmail.com>
ENV DEBIAN_FRONTEND noninteractive
ENV MAVEN_VERSION 3.3.9
# Java Version
ENV JAVA_VERSION_MAJOR 8
ENV JAVA_VERSION_MINOR 45
ENV JAVA_VERSION_BUILD 14
sudo apt-add-repository multiverse && sudo apt-get update && sudo apt-get install flashplugin-installer
@mkordas
mkordas / log.txt
Created December 26, 2015 19:09
ZkSignalTest.awaitsWithTimeout
This file has been truncated, but you can view the full file.
Using worker: worker-linux-docker-b1a03f00.prod.travis-ci.com:travis-linux-9
travis_fold:start:system_info
Build system information
Build language: java
Build group: stable
Build dist: precise
Build image provisioning date and time
Thu Feb 5 15:09:33 UTC 2015
Operating System Details
[INFO] Scanning for projects...
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Build Order:
[INFO]
[INFO] qulice
[INFO] qulice-spi
[INFO] qulice-checkstyle
[INFO] qulice-pmd
[INFO] qulice-codenarc
[INFO] qulice-findbugs
@mkordas
mkordas / update.sh
Last active August 29, 2015 14:15
Script to update dependencies
#!/bin/sh
git checkout master
git reset --hard upstream/master
mvn versions:display-plugin-updates > updates_output.txt
#mvn versions:display-dependency-updates >> updates_output.txt
dos2unix updates_output.txt
grep ' -> ' updates_output.txt > to_update.txt
while read line; do
arr=($line)