I hereby claim:
- I am CedricGatay on github.
- I am cedricgatay (https://keybase.io/cedricgatay) on keybase.
- I have a public key whose fingerprint is 262E B7FB 9A44 F248 EA73 0362 3F06 F893 DF33 D566
To claim this, I am signing this object:
| import RxSwift | |
| // trick to get a clean unwrap optional by creating an intermediate type | |
| protocol Optionable { | |
| associatedtype Wrapped | |
| var value: Wrapped? { get } | |
| } | |
| extension Optional : Optionable { | |
| var value: Wrapped? { return self } |
| #!/bin/bash | |
| AUTH=AUTHTOKEN; | |
| ASUSWRTPRESENCEIP=IP; | |
| DOMOTICZ_IP=IP; | |
| DOMOTICZ_PORT=PORT; | |
| curl --silent http://$ASUSWRTPRESENCEIP:9090 > devices | |
| function checkPresence { |
| import hudson.model.*; | |
| import hudson.util.*; | |
| import jenkins.model.*; | |
| import hudson.FilePath.FileCallable; | |
| import hudson.slaves.OfflineCause; | |
| import hudson.node_monitors.*; | |
| node('master'){ | |
| stage('Cleanup nodes'){ |
| CFONB FILE |
I hereby claim:
To claim this, I am signing this object:
| ACTION=="add", ATTR{idVendor}=="1e54", ATTR{idProduct}=="2030", RUN+="/usr/local/bin/set_typematrix_colemak_mapping" |
| <repositories> | |
| <repository> | |
| <id>gcm-server-repository</id> | |
| <url>https://github.com/slorber/gcm-server-repository/raw/master/releases/</url> | |
| </repository> | |
| </repositories> |
| // adapted from https://gist.github.com/dmarcato/d7c91b94214acd936e42 | |
| def toCamelCase(String string) { | |
| String result = "" | |
| string.findAll("[^\\W]+") { String word -> | |
| result += word.capitalize() | |
| } | |
| return result | |
| } |
I hereby claim:
To claim this, I am signing this object:
| <assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd"> | |
| <id>ui-dist</id> | |
| <formats> | |
| <format>zip</format> | |
| </formats> | |
| <includeBaseDirectory>false</includeBaseDirectory> | |
| <fileSets> | |
| <fileSet> |