Skip to content

Instantly share code, notes, and snippets.

define([
"../core",
"../queue",
"../effects" // Delay is optional because of this dependency
], function( jQuery ) {
// Based off of the plugin by Clint Helfers, with permission.
// http://blindsignals.com/index.php/2009/07/jquery-delay/
jQuery.fn.delay = function( time, type ) {
time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;
[main] [ 2016-03-18 13:40:47.170 UTC ] [Host.<init>:1090] Begin tracing..
[main] [ 2016-03-18 13:40:47.224 UTC ] [OsUtilsBase.getBaseFromOrabase:659] oraBaseUtility /u01/app/oracle/product/12.1.0/xe/bin/orabase
[main] [ 2016-03-18 13:40:47.224 UTC ] [OsUtilsBase.getBaseFromOrabase:668] cmds: /u01/app/oracle/product/12.1.0/xe/bin/orabase
[main] [ 2016-03-18 13:40:47.225 UTC ] [OsUtilsBase.getBaseFromOrabase:672] envs: ORACLE_HOME=/u01/app/oracle/product/12.1.0/xe
[main] [ 2016-03-18 13:40:47.242 UTC ] [OsUtilsBase.getBaseFromOrabase:682] baseLocation from orabase
/u01/app/oracle
[main] [ 2016-03-18 13:40:47.242 UTC ] [OsUtilsBase.getBaseFromOrabase:707] orabaseLocation= /u01/app/oracle
[main] [ 2016-03-18 13:40:47.243 UTC ] [SilentHost.initialize:187] SilentHost-> initialize: m_tempLogFile = /u01/app/oracle/cfgtoollogs/dbca/silent.log_2016-03-18_01-40-47-PM
[main] [ 2016-03-18 13:40:47.248 UTC ] [Host.checkIfBigClusterAndHubNode:1710] Not a cluster environment: exiting BigCluster Check
[main] [ 2016-
@drewwells
drewwells / entrypoint.sh.patch
Created March 18, 2016 02:59
containerdatabase diff
diff --git a/entrypoint.sh b/entrypoint.sh
index 246457d..d3303aa 100755
--- a/entrypoint.sh
+++ b/entrypoint.sh
@@ -34,7 +34,7 @@ case "$1" in
echo "Starting tnslsnr"
su oracle -c "/u01/app/oracle/product/12.1.0/xe/bin/tnslsnr &"
#create DB for SID: xe
- su oracle -c "$ORACLE_HOME/bin/dbca -silent -createDatabase -templateName General_Purpose.dbc -gdbname xe.oracle.docker -sid xe -responseFile NO_VALUE -characterSet AL32UTF8 -totalMemory $DBCA_TOTAL_MEMORY -emConfiguration LOCAL -pdbAdminPassword oracle -sysPassword oracle -systemPassword oracle"
+ su oracle -c "$ORACLE_HOME/bin/dbca -silent -createDatabase -createAsContainerDatabase true -templateName General_Purpose.dbc -gdbname xe.oracle.docker -sid xe -responseFile NO_VALUE -characterSet AL32UTF8 -totalMemory $DBCA_TOTAL_MEMORY -emConfiguration LOCAL -pdbAdminPassword oracle -sysPassword oracle -systemPassword oracle"
@drewwells
drewwells / SassMeister-input.scss
Created February 9, 2016 04:24
Generated by SassMeister.com.
// ----
// Sass (v4.0.0.alpha.1)
// ----
> e {
color: blue;
}
@drewwells
drewwells / SassMeister-input.scss
Created January 25, 2016 16:10
Generated by SassMeister.com.
// ----
// Sass (v3.4.20)
// Compass (v1.0.3)
// ----
#010 {
color: #0000ff + #000001;
}
@drewwells
drewwells / syncmap.go
Last active January 8, 2016 19:39
sync access to map of pointers
package syncmap
import (
"fmt"
"sync"
)
type S struct {
name string
}
@drewwells
drewwells / SassMeister-input.scss
Created January 8, 2016 16:51
Generated by SassMeister.com.
// ----
// Sass (v3.4.20)
// Compass (v1.0.3)
// ----
#010 {
color: #010;
}
@drewwells
drewwells / SassMeister-input.scss
Created January 6, 2016 21:42
Generated by SassMeister.com.
// ----
// Sass (v3.4.20)
// Compass (v1.0.3)
// ----
#010 {
color: #abc line-block
}
function mxGraph(b,d,f,e){
var a=new Date();
a.setFullYear(2016,0,1);
var c=new Date();
if(a<c){
alert("mxGraph Evaluation copy expired");
return
}
}
@drewwells
drewwells / inheritance.go
Created January 10, 2014 20:44
Inheritance example in Go
package main
import "fmt"
type Car struct {
wheelCount int
}
// define a behavior for Car
func (car Car) numberOfWheels() int {