Skip to content

Instantly share code, notes, and snippets.

Some text
more text
@boundedinfinity
boundedinfinity / che
Last active March 27, 2017 16:32
Che wrapper script
#!/usr/bin/env bash
che_version=5.5.0
workspace=${CHE_WORKSPACE:-$HOME/che}
if [[ ! -d "$workspace" ]] ; then
mkdir -p "$workspace"
fi
opt_chedir="-v $PWD:/chedir"
@boundedinfinity
boundedinfinity / designer.html
Last active August 29, 2015 14:07
designer
<link rel="import" href="../core-icon-button/core-icon-button.html">
<link rel="import" href="../core-toolbar/core-toolbar.html">
<link rel="import" href="../core-header-panel/core-header-panel.html">
<link rel="import" href="../core-item/core-item.html">
<polymer-element name="my-element">
<template>
<style>
:host {
@boundedinfinity
boundedinfinity / designer.html
Last active August 29, 2015 14:07
designer
<link rel="import" href="../core-scaffold/core-scaffold.html">
<link rel="import" href="../core-header-panel/core-header-panel.html">
<link rel="import" href="../core-menu/core-menu.html">
<link rel="import" href="../core-item/core-item.html">
<link rel="import" href="../core-icon-button/core-icon-button.html">
<link rel="import" href="../core-toolbar/core-toolbar.html">
<link rel="import" href="../core-menu/core-submenu.html">
<polymer-element name="my-element" unresolved="">
case class ScalaClass(var var1:String) {
def method1(arg1:Int) = s"arg is $arg1"
}
import java.util.ArrayList;
import java.util.List;
import com.pingidentity.sqe.automationcommons.validate.impl.JsonValidator;
import com.pingidentity.sqe.automationcommons.validate.impl.LocationHeaderResponseStartsWithValidator;
import com.pingidentity.sqe.clientwrapper.data.HttpResponseWrapper;
public interface ResponseValidator
{
void validate(HttpResponseWrapper response);
@boundedinfinity
boundedinfinity / pom.xml
Created June 3, 2011 03:46
Basic maven pom.xml file
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.boundedinfinity</groupId>
<artifactId>basic-projet</artifactId>
<version>0.0.1-SNAPSHOT</version>
</project>