- Get evaluation license key : http://my.datomic.com/eval/request
- Download pro version : http://downloads.datomic.com/pro.html
- Dev mode setup
datomic % uri="datomic:sql://heh?jdbc:postgresql://localhost:5432/heh?user=myPSQLUser&password=myPSQLPassword"; | |
<datomic:sql://heh?jdbc:postgresql://localhost:5432/heh?user=myPSQLUser&password=myPSQLPassword> | |
datomic % Peer.createDatabase(uri); | |
<true> | |
datomic % conn = Peer.connect(uri); | |
<{:db-id "heh-5193d8ad-0ec4-4fcc-b995-0915581bb2e0", :unsent-updates-queue 0, :pending-txes 0, :next-t 1000, :basis-t 62, :index-rev 0, :index-root {:rev 0, :key "5193d921-b783-47c2-a9cf-7e555747b8cd"}, :log-root {:rev 0, :key "5193d921-17a1-4a03-9717-f10a869812cb"}}> | |
datomic % datom = Util.list("db/add", | |
Peer.tempid("db.part/user"), | |
"db/doc", | |
"hello world"); |
(defproject profiletest "0.1.0-SNAPSHOT" | |
:description "FIXME: write description" | |
:url "http://example.com/FIXME" | |
:license {:name "Eclipse Public License" | |
:url "http://www.eclipse.org/legal/epl-v10.html"} | |
:dependencies [[org.clojure/clojure "1.5.1"]] | |
:main profiletest.core | |
:profiles { | |
:dev {:source-paths ["src" "src.dev"]} | |
:prod {:source-paths ["src" "src.prod"]} |
#!/bin/bash | |
# This little script creates incremental rsync backups from my | |
# external Lightroom Library (but could be anything) to another | |
# external harddrive. Backups are important, you know. | |
# The result looks like this: | |
# | |
# 20120105-1759 | |
# 20120107-1928 |
#!/bin/bash | |
# log into your server | |
ssh root@[server ipaddress] | |
# change root password | |
passwd | |
# update all packages and operating system | |
apt-get update && apt-get --yes upgrade |
#include <Blur.h> | |
#define ASSERT_BLUR_SETUP() { \ | |
if(!is_setup) { \ | |
printf("ERROR: not setup.\n"); \ | |
return; \ | |
} \ | |
} | |
Blur::Blur() |
/** | |
* Custom.css | |
* WebKit Inspector styles for Google Chrome | |
* | |
* by Scott Buchanan <[email protected]> | |
* http://wafflesnatcha.github.com | |
* | |
* Fugue Icons by Yusuke Kamiyamane | |
* http://p.yusukekamiyamane.com | |
*/ |