Skip to content

Instantly share code, notes, and snippets.

@signed8bit
signed8bit / media-server-startup.scpt
Created March 10, 2013 14:34
An AppleScript to mount an AFP volume where your iTunes media lives followed by a delayed startup of iTunes once the volume is available.
tell application "Finder"
mount volume "afp://user:password@nas-server/Media"
repeat 3 times
delay 5
if disk "Media" exists then
tell application "iTunes"
activate
end tell
exit repeat
@signed8bit
signed8bit / gist:3150095
Created July 20, 2012 10:38
Database Init Error dotCMS 2.1 with Oracle 11.2.0.2
[20/07/12 09:26:35:150 UTC] WARN util.JDBCExceptionReporter: SQL Error: 2291, SQLState: 23000
[20/07/12 09:26:35:151 UTC] ERROR util.JDBCExceptionReporter: ORA-02291: integrity constraint (ROOT.FK_PLUGIN_PLUGIN_PROPERTY) violated - parent key not found
[20/07/12 09:26:35:152 UTC] ERROR impl.SessionImpl: Could not synchronize database state with session
[20/07/12 09:26:35:169 UTC] ERROR util.ImportExportUtil: Unable to save Object to Hibernate Session
com.dotmarketing.exception.DotHibernateException: Unable to save Object to Hibernate Session
at com.dotmarketing.db.HibernateUtil.save(HibernateUtil.java:448)
at com.dotmarketing.util.ImportExportUtil.doXMLFileImport(ImportExportUtil.java:1433)
at com.dotmarketing.util.ImportExportUtil.doXMLFileImport(ImportExportUtil.java:1051)
at com.dotmarketing.util.ImportExportUtil.doImport(ImportExportUtil.java:314)