I hereby claim:
- I am ham1 on github.
- I am ham1 (https://keybase.io/ham1) on keybase.
- I have a public key ASA4SU2Lqtlyy1Kb8xYR2l5vjsUORVXhGY-9wfjxSss7HQo
To claim this, I am signing this object:
| #!/bin/bash | |
| # Defensive bash script settings | |
| set -o nounset -o pipefail -o errexit -o verbose -o noglob | |
| # Runs vmstat every 1 second and sends results to InfluxDB | |
| vmstat 1 | awk -vhost_name=$HOSTNAME '/ [0-9]/ { | |
| timestamp=systime()"000000000" | |
| tags="host="host_name |
I hereby claim:
To claim this, I am signing this object:
| import com.frameworkium.core.ui.annotations.Visible; | |
| import com.frameworkium.core.ui.pages.BasePage; | |
| import org.openqa.selenium.WebElement; | |
| public abstract class AbstractSomethingPage<T extends BasePage<T>> extends BasePage<T> { | |
| @Visible | |
| private WebElement foo; | |
| public void doSomething() { |
| #!/usr/bin/env python | |
| # | |
| # This is a program to read data off a RoyalTek RGM 3800 GPS data logger. | |
| # Copyright in 2007, 2008, 2009 by Karsten Petersen <kapet@kapet.de> | |
| # | |
| # Contributions by Stephen Hildrey <steve@uptime.org.uk> | |
| # and Jens-Uwe Hagenah <> | |
| # | |
| # This program is free software: you can redistribute it and/or modify | |
| # it under the terms of the GNU General Public License as published by |
| package ai.pages; | |
| import com.frameworkium.core.ui.annotations.Visible; | |
| import com.frameworkium.core.ui.pages.BasePage; | |
| import com.frameworkium.core.ui.pages.PageFactory; | |
| import org.openqa.selenium.WebElement; | |
| import org.openqa.selenium.support.FindBy; | |
| public class Test extends BasePage<Test> { |