This file contains 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
{ | |
"title": "UK MS Sculpt Keyboard (Exceptions for MS Remote Desktop)", | |
"rules": [ | |
{ | |
"description": "Backslash ", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"key_code": "non_us_backslash", |
This file contains 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
#!/usr/bin/env bash | |
# Originally by: Dr. Martin Menzel www.dr-menzel-it.de | |
# Modified by Matthew Pherigo https://gist.github.com/mwpher/4493681e9efdcc271830 | |
# Rewritten by Charles Anthony | |
# | |
# Recursively restores the zfs filesystems below a given filesystem to a snapshot | |
# e.g. given | |
# the-pool | |
# the-pool/var | |
# the-pool/var/lib |
This file contains 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
c:\java\apache-tomcat-7.0.64-orbeon>bin\catalina.bat version | |
Using CATALINA_BASE: "c:\java\apache-tomcat-7.0.64-orbeon" | |
Using CATALINA_HOME: "c:\java\apache-tomcat-7.0.64-orbeon" | |
Using CATALINA_TMPDIR: "c:\java\apache-tomcat-7.0.64-orbeon\temp" | |
Using JRE_HOME: "C:\java\jdk\jdk1.7.0_71-64" | |
Using CLASSPATH: "c:\java\apache-tomcat-7.0.64-orbeon\bin\bootstrap.jar;c:\java\apache-tomcat-7.0.64-orbeon\bin\tomcat-juli.jar" | |
Server version: Apache Tomcat/7.0.64 | |
Server built: Aug 19 2015 17:18:06 UTC | |
Server number: 7.0.64.0 | |
OS Name: Windows 7 |
This file contains 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
c:\java\apache-tomcat-8.0.26>bin\catalina.bat version | |
Using CATALINA_BASE: "c:\java\apache-tomcat-8.0.26" | |
Using CATALINA_HOME: "c:\java\apache-tomcat-8.0.26" | |
Using CATALINA_TMPDIR: "c:\java\apache-tomcat-8.0.26\temp" | |
Using JRE_HOME: "C:\java\jdk\jdk1.7.0_71-64" | |
Using CLASSPATH: "c:\java\apache-tomcat-8.0.26\bin\bootstrap.jar;c:\java\apache-tomcat-8.0.26\bin\tomcat-juli.jar" | |
Server version: Apache Tomcat/8.0.26 | |
Server built: Aug 18 2015 11:38:37 UTC | |
Server number: 8.0.26.0 |
This file contains 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
package uk.org.backstage; | |
import com.vaadin.annotations.VaadinServletConfiguration; | |
import com.vaadin.data.Property; | |
import com.vaadin.data.util.IndexedContainer; | |
import com.vaadin.server.VaadinRequest; | |
import com.vaadin.server.VaadinServlet; | |
import com.vaadin.ui.AbstractSelect; | |
import com.vaadin.ui.CheckBox; | |
import com.vaadin.ui.Table; |
This file contains 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
package uk.org.backstage; | |
import com.vaadin.annotations.VaadinServletConfiguration; | |
import com.vaadin.data.Container; | |
import com.vaadin.data.util.IndexedContainer; | |
import com.vaadin.event.ItemClickEvent; | |
import com.vaadin.event.ShortcutAction; | |
import com.vaadin.server.VaadinRequest; | |
import com.vaadin.server.VaadinServlet; | |
import com.vaadin.ui.Button; |
This file contains 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
/** | |
* An extension used to configure a TextField to allow only numbers, using the autoNumeric jQuery plugin. | |
* | |
* Proof of concept, really : have not implemented any server side configuration. | |
* <p/> | |
* | |
* @author Charles | |
* @see <a href="http://www.decorplanit.com/plugin">autoNumeric site</a> | |
* @see <a href="https://jquery.org">jQuery site</a> | |
*/ |
This file contains 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
package org.backstage; | |
import au.com.bytecode.opencsv.CSVReader; | |
import com.vaadin.Application; | |
import com.vaadin.data.Item; | |
import com.vaadin.data.util.IndexedContainer; | |
import com.vaadin.ui.Table; | |
import com.vaadin.ui.Upload; | |
import com.vaadin.ui.VerticalLayout; | |
import com.vaadin.ui.Window; |
This file contains 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
public class TestApp extends Application { | |
public void init() { | |
Window mainWindow = new TestWindow(); | |
setMainWindow(mainWindow); | |
} | |
public class TestWindow extends Window { | |
public TestWindow() { | |
IndexedContainer container = createContainer(); | |
Table table = createTable(container); |
This file contains 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
package com.example; | |
import com.vaadin.Application; | |
import com.vaadin.data.Item; | |
import com.vaadin.data.util.IndexedContainer; | |
import com.vaadin.terminal.ExternalResource; | |
import com.vaadin.ui.Embedded; | |
import com.vaadin.ui.Table; | |
import com.vaadin.ui.VerticalLayout; | |
import com.vaadin.ui.Window; |
NewerOlder