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.tabby9; | |
import com.vaadin.annotations.AutoGenerated; | |
import com.vaadin.ui.CustomComponent; | |
import com.vaadin.ui.Label; | |
import com.vaadin.ui.NativeButton; | |
import com.vaadin.ui.Panel; | |
import com.vaadin.ui.TabSheet; | |
import com.vaadin.ui.VerticalLayout; |
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
#!/bin/bash | |
## Copyright (C) 2009 Przemyslaw Pawelczyk <[email protected]> | |
## License: GNU General Public License v2, v3 | |
# | |
# Lockable script boilerplate | |
### HEADER ### | |
hn=`hostname --short` | |
LongHN=`hostname` |
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 groovy | |
import groovy.util.Node; | |
import java.util.zip.GZIPInputStream; | |
def root = new Node ( null, "root", [ path : "", leaf : false, value : "" ] ); | |
Words = [] | |
// Pull off the first letter, see if the node has that. | |
// If at end of word, make as leaf node | |
def stuffWord ( word, node ) { |