# install (old) nodejs package and npm
$ sudo apt-get install nodejs npm
# install coffee-script (globally)
$ sudo npm install -g coffee-script
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
(ns alephtest.core | |
(:require [lamina.core :as l]) | |
(:require [aleph.http :as a]) | |
(:require [ring.adapter.jetty :as jetty])) | |
;; https://github.com/ztellman/aleph | |
(def counter (atom 0)) | |
(defn say-hello [] | |
(let [n (swap! counter inc)] |
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
(ns kormatest.core | |
(:require [korma.core :as sql]) | |
(:require [korma.db :as db]) | |
(:require [clojure.contrib.sql :as jdbc])) | |
(def play-con | |
(db/mysql {:db "playground" | |
;; :host "localhost" ;; optional? | |
:port "3406" ;; normal: 3306 | |
:user "root" |
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
;; this file is a walkthrough of Moustache features, a web framework for Clojure | |
;; http://github.com/cgrand/moustache/tree/master | |
;; Moustache allows to declare routes, apply middlewares and dispatch on http methods. | |
;; Moustache is compatible with all frameworks built on Ring, including Compojure | |
(ns demo | |
(:use net.cgrand.moustache) | |
(:use [ring.adapter.jetty :only [run-jetty]])) ;; hmmm Ring without servlets | |
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
((ns excel.core | |
(:import [org.apache.poi.hssf.usermodel HSSFWorkbook HSSFSheet HSSFRow | |
HSSFRichTextString HSSFFont HSSFDataFormat | |
HSSFCellStyle HSSFCell]) | |
(:import [java.io FileOutputStream FileInputStream IOException]) | |
#_(:import [org.apache.poi.ss.util CellRangeAdrress])) | |
(defn make-excel [file-name] | |
(let [wb (HSSFWorkbook.) |
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
-- Oracle Applications (aka EBS) | |
-- Trailing blanks problem in Oracle Workflow | |
-- check: | |
select case when display_name!=trim(display_name) then '>'||display_name||'<' end xx_disp | |
,case when description!=trim(description) then '>'||description||'<' end xx_desc | |
, w.* | |
from wf_activities_tl w -- wf_item_types_tl, wf_activities_tl, wf_messages_tl | |
where display_name!=trim(display_name) | |
or description!=trim(description); |
NewerOlder