I hereby claim:
- I am thefotios on github.
- I am thefotios (https://keybase.io/thefotios) on keybase.
- I have a public key whose fingerprint is 2264 2751 B5AD E6D2 DC85 FA4A 91BD C79C 39F3 48FD
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| { | |
| "capabilities": | |
| [ | |
| { | |
| "browserName": "firefox", | |
| "version": "6.0.2", | |
| "maxInstances":5 | |
| } | |
| ], | |
| "configuration": |
| #!/bin/bash | |
| # | |
| # Service for selenium (from http://www.thelinuxblog.com/adding-a-service-on-fedora/) | |
| # | |
| # Author: Fotios Lindiakos (fotios@redhat.com) | |
| # | |
| # chkconfig: 2345 55 45 | |
| # | |
| # description: This is the selenium service | |
| # processname: selenium |
| def setup | |
| @url="http://localhost" | |
| @verification_errors = [] | |
| @tags = [] | |
| @custom_data = { | |
| "commit" => 'abcd1234', | |
| "release" => 'rhc-site-0.79.4' | |
| } | |
| --- !ruby/object:ExampleTest | |
| _assertion_wrapped: false | |
| _result: !ruby/object:Test::Unit::TestResult | |
| assertion_count: 1 | |
| channels: | |
| CHANGED: | |
| !ruby/object:Test::Unit::Util::ProcWrapper ? | |
| a_proc: &id001 !ruby/object:Proc {} | |
| hash: 140653561707680 |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #include <pwd.h> | |
| #include <sys/types.h> | |
| #include <time.h> | |
| #define emailAddrLen 33 | |
| #define IDStringLen 9 |
| set nocompatible | |
| set smartindent | |
| set number | |
| set sw=2 | |
| set ts=2 | |
| set sts=2 | |
| set et | |
| syntax on | |
| filetype plugin indent on |
| @ready_file = 'sauce_ready' | |
| # Get the Sauce configuration information | |
| cfg = Sauce::Config.new() | |
| # Create a command to spawn the jar file | |
| cmd = "java -jar Sauce-Connect.jar -f #{@ready_file} #{cfg.opts[:username]} #{cfg.opts[:access_key]}" | |
| # Create a command to kill it when we're done | |
| # Source: http://goo.gl/CCiFz | |
| kill_cmd = "ps aux | grep -e '#{cmd}' | grep -v grep | awk '{print $2}' | xargs -i kill {}" |
| # Script for converting list of files using ffmpeg | |
| # | |
| # Author: Fotios Lindiakos (fotioslindiakos@gmail.com) | |
| # | |
| # Usage: batch_ffmpeg.sh file1 [file2 file3 ...] | |
| extension=mp3 | |
| options="-y" | |
| for source in "$@" |