View rmAdded.linux.sh
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
rename 's/\.added$//' *.added |
View getOracleSolarisInfo.sh
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
printf "System Info for CBM Servers\n\n" >> ~/SystemInformation.txt | |
printf "\nProduction\n\n" >> ~/SystemInformation.txt | |
printf "\nOS Release:\n" >> ~/SystemInformation.txt | |
cat /etc/release >> SystemInformation.txt | |
printf "\nHostname:\n" >> ~/SystemInformation.txt | |
hostname >> SystemInformation.txt | |
printf "\nIP Address:\n" >> ~/SystemInformation.txt | |
/usr/sbin/ifconfig -a | awk 'BEGIN { count=0; } { if ( $1 ~ /inet/ ) { count++; if( count==2 ) { print $2; } } }' >> SystemInformation.txt | |
printf "\n\nRAM Info\n" >> ~/SystemInformation.txt |
View BootstrapDefault.html
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>Bootstrap 101 Template</title> | |
<!-- Bootstrap --> | |
<link href="css/bootstrap.min.css" rel="stylesheet"> |
View procedure.sql
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
/* | |
AUTHOR:Joe Developer | |
ACCEPTS:These Args | |
DOES:Performs Function | |
RETURNS:Return Value | |
DEPENDENCIES:Uses/Needs | |
NOTES: Special Considerations | |
*/ | |
CREATE [OR REPLACE] PROCEDURE procedure_name | |
[ (parameter [,parameter]) ] |
View function.sql
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
/* | |
AUTHOR:Joe Developer | |
ACCEPTS:These Args | |
DOES:Performs Function | |
RETURNS:Return Value | |
DEPENDENCIES:Uses/Needs | |
NOTES: Special Considerations | |
*/ | |
CREATE OR REPLACE FUNCTION FunctionTemplate( | |
parameter1 number, |
View Package.sql
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
CREATE OR REPLACE PACKAGE BFH2_TEMPLATE | |
AS | |
/* | |
AUTHOR: Joe Developer | |
PACKAGE NAME: TEMPLATE SPEC | |
CREATION DATE: MM/DD/YYYY | |
PURPOSE: | |
DEPENDENCIES: | |
CHANGELOG: |
View PackageBody.sql
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
CREATE OR REPLACE PACKAGE BODY BFH2_TEMPLATE | |
AS | |
/* | |
AUTHOR: Joe Developer | |
PACKAGE NAME: TEMPLATE BODY | |
CREATION DATE: MM/DD/YYYY | |
PURPOSE: | |
DEPENDENCIES: | |
CHANGELOG: |
View extRename.sh
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
for file in *.cdf.cntrl; do mv "$file" "`basename $file .cdf.cntrl`.cntrl"; done |
View bool to string.sql
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
v_str := CASE WHEN p_Success_Check THEN 'TRUE' ELSE 'FALSE' END; |
View docker startup
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
$ boot2docker init | |
$ boot2docker start | |
$ export DOCKER_HOST=tcp://$(boot2docker ip 2>/dev/null):2375 |
OlderNewer