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"?> | |
<profile name="Lulzbot Mini Aerostruder" version="2018-02-19 13:02:51" app="S3D-Software 4.0.0"> | |
<baseProfile>LulzBot Mini</baseProfile> | |
<printMaterial>ABS</printMaterial> | |
<printQuality>Medium</printQuality> | |
<printExtruders></printExtruders> | |
<extruder name="Primary Extruder"> | |
<toolheadNumber>0</toolheadNumber> | |
<diameter>0.5</diameter> | |
<autoWidth>1</autoWidth> |
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 | |
CXX=g++ | |
usage() { | |
echo "Usage: asmgen {src_file}" | |
exit 1 | |
} | |
if [ -z "$1" ]; then |
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 | |
export JBOSS_HOME=/home/pacs/dcm4chee | |
JBOSS_CLASSPATH=$JBOSS_HOME/bin/run.jar | |
JBOSS_NATIVE_DIR="$JBOSS_HOME/bin/native" | |
JBOSS_ENDORSED_DIRS="$JBOSS_HOME/lib/endorsed" | |
#enable remote access to jboss services and web interface | |
JBOSS_BIND_ADDR=${JBOSS_BIND_ADDR:-"0.0.0.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
#!/bin/sh | |
# Author: Michael Gunlock 2014 | |
### BEGIN INIT INFO | |
# Provides: dcm4chee | |
# Required-Start: \$remote_fs \$syslog | |
# Required-Stop: \$remote_fs \$syslog | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 |
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 | |
function usage() | |
{ | |
echo "Usage: $0 -u <Postgres_Username> -p <Password>" | |
} | |
USER="" |