- SimpleImport
- Orders
- CompanyRegistration
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
| Releasing Yawik into v0.32.0-RC1 version. | |
| ----------------------------------------- | |
| Releasing v0.32.0-RC1 to ~> cross-solution/YAWIK repo | |
| CMD git checkout release-0.32.0 | |
| ERR Already on 'release-0.32.0' | |
| CMD git pull origin release-0.32.0 | |
| ERR fatal: Couldn't find remote ref release-0.32.0 | |
| CMD git tag -s v0.32.0-RC1 -m "Release v0.32.0-RC1 version" |
Every so often I have to restore my gpg keys and I'm never sure how best to do it. So, I've spent some time playing around with the various ways to export/import (backup/restore) keys.
cp ~/.gnupg/pubring.gpg /path/to/backups/
cp ~/.gnupg/secring.gpg /path/to/backups/
cp ~/.gnupg/trustdb.gpg /path/to/backups/
convert branch alias to:
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
| class FeatureContext extends MinkContext { | |
| /** | |
| * @Given /^I wait for css element "([^"]+)" to (appear|disappear)$/ | |
| */ | |
| public function iWaitForCssElement($element, $appear) | |
| { | |
| $xpath = $this->getSession()->getSelectorsHandler()->selectorToXpath('css', $element); | |
| $this->waitForXpath($xpath, $appear == 'appear'); | |
| } |
- symlink sandbox/config
- check coveralls config
- fix behat config
- check module config
- ignores composer.lock
- fix travis coverage upload
- check README.md build status to master
- check .travis/phpenv.ini
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
| # .config/i3/config | |
| set $mod Mod4 | |
| set $alt Mod1 | |
| font pango:Segoe UI 8 | |
| # Use Mouse+$mod to drag floating windows to their wanted position | |
| floating_modifier $mod | |
| # class border backgr. text |
set $mod Mod4
set $mod2 Mod1
mode "mouse" {
# set your three speeds here
set $slow 1
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
| # Install Gnome and some other useful thins | |
| # The official installation guide (https://wiki.archlinux.org/index.php/Installation_Guide) contains a more verbose description. | |
| # And based on https://wiki.archlinux.de/title/Anleitung_f%C3%BCr_Einsteiger | |
| # I have just copied commands from https://wiki.archlinux.de/title/Anleitung_f%C3%BCr_Einsteiger#Weitere_notwendige_Dienste | |
| # It's just to have it with one view after doing a [fresh installation](https://gist.github.com/thacoon/05d5a39606ab554455d6713e8a714b2c) | |
| # Some useful services | |
| pacman -S acpid ntp dbus avahi cups cronie ntp |
To make selenium easier to be used by developer this 2 packages added into dev dependencies:
enm1989/chromedriverse/selenium-server-standalone
New bash script bin/start-selenium added, so developer can start selenium by using this command:
# cd path/to/phplist3
$ bin/start-selenium