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
<str:WorkProduct xmlns:str="http://www.saic.com/precis/2009/06/structures"> | |
<ulex:PackageMetadata xmlns:ulex="ulex:message:structure:1.0"> | |
<ulex:DataItemID>Incident-c8ec700e-f8c9-4b27-9a3a-8b4f84a4f4fa</ulex:DataItemID> | |
<ulex:DataItemReferenceID>Incident-c8ec700e-f8c9-4b27-9a3a-8b4f84a4f4fa</ulex:DataItemReferenceID> | |
<ns:DataItemStatus ns:label="UICDS Work Product Status" ns:codespace="http://uicds.org/1.0/codespace/workproduct/status" ns:code="Active" xmlns:ns="http://ucore.gov/ucore/2.0"/> | |
<ulex:DataOwnerMetadata> | |
<ns:DataOwnerIdentifier xmlns:ns="http://ucore.gov/ucore/2.0"> | |
<ns1:Organization xmlns:ns1="http://metadata.dod.mil/mdr/ns/DDMS/2.0/"> | |
<ns1:name>ucids.org</ns1:name> | |
</ns1:Organization> |
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
<project name="MyProject" default="dist" basedir="."> | |
<description> | |
simple example build file | |
</description> | |
<!-- set global properties for this build --> | |
<property name="src" location="src"/> | |
<property name="build" location="build"/> | |
<property name="dist" location="dist"/> | |
<target name="init"> |
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/sh | |
# reads a single column of numeric data from stdin and prints out statistics | |
# blank lines are ignored | |
# prints sum, count, mean, median, minimum, maximum | |
sort -n | | |
awk 'BEGIN{c=0;sum=0;}\ | |
/^[^#]/{a[c++]=$1;sum+=$1;}\ | |
END{ave=sum/c;\ |
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
<?xml version="1.0"?> | |
<project name="PROJECT_NAME" default="run" basedir="."> | |
<!--**************************************************--> | |
<!-- Configureable Properties --> | |
<!--**************************************************--> | |
<!-- The main class, where public static void main(String... is --> | |
<property name="Main.class" value="MAIN_CLASS"/> |