Search for 'WA 0859 3970 0884 Order Interior Rumah Menjadi Lantai 2 Berpengalaman Tepus Gunungkidul'

For details on the search query syntax, see the guide.

Total results: 121, showing 25 - 48

Note: artifacts in italics are non-canonical forks. See the wiki for more details.


  • Basic Clojure wrapper for JDOM 2

  • Data transformation library combining higher order functional programming with concepts from term rewriting.
  • mapr-storm 0.9-SNAPSHOT

    A connector for MapR and Storm consisting of two components: 1. Franz - a Kafka-like API for logging messages to topics, materializing them onto disk in a MapR Cluster 2. ProtoSpout - a Storm spout implementation that gathers newly-arrived data from the end of a file and creates tuples for a storm topology

  • Suggest a new project.clj that's compatible with Leiningen 2.

  • javafx 2.2.0 runtime for develop

  • This leiningen plugin helps to work around problems of clojure ahead-of-time compilation, by determining a suitable compilation order via clojure.tools.namespace. Forked from https://github.com/active-group/lein-aot-order

  • Data transformation library combining higher order functional programming with concepts from term rewriting.

  • timeago.js is a simple library (less than 2 kb) that is used to format datetime with *** time ago statement. eg: '3 hours ago'.

  • Noir and Fleet extensions

  • A simple, order agnostic Clojure(Script) router

  • Create Swagger 2 specification for sibiro routes

  • A native Clojure re-implementation of FIGlet, the classic ASCII art text renderer. Parses FIGfont Version 2 font files (Cowan & Burton, 1996-97), implements all six horizontal smushing rules plus universal smushing, and produces output identical to the reference C figlet. No external dependencies beyond Clojure itself.
  • fsrun 0.1.2

    High Order Plugin to run some tasks on fs change
  • cljs 0.3.0

    An experimental Clojure(ish) to Javascript compiler similar to [clojurescript](https://github.com/clojure/clojure-contrib/tree/master/clojurescript/). The library also provides several tools to assist you with integrating cljs into your workflow. All this in about 1k lines. Viva Clojure! # Usage Use the `cljs.core/to-js` function to turn a list (representing some code) into javascript, like so: (to-js '((fn [x] (alert x)) "hello world")) -> function(x){alert(x);}("hello world"); (to-js '(-> ($ "<div />") (.css {:backgroundColor "blue" . :border "dashed white 5px"}) -> (function(){var out = $("<div />"); out.css({backgroundColor:"blue",border:"dashed white 5px"}); return out}()) Neat, huh? In addition to the compiler, cljs provides several tools to make working with cljs in the context of a web project easier: 1. [cljs.watch](#cljs.watch) provides a mechanism for automatic recompilation on source changes. Used by either `lein cljs-watch` or `(use 'cljs.watch) (start-watch-project "./project.clj")`. Cljs output is declared in your project.clj file, under the :cljs key. 2. [cljs.stitch](#cljs.stitch) takes care of stitching the collection of source files that make up a library into a coherent javascript file. For more examples, please see the [cljs.test.core](#cljs.test.core) namespace.

  • Pipehat (|^) is a zero-dependency Clojure library for reading and writing HL7 version 2 messages encoded using vertical bar ("pipehat") encoding.

  • A lightweight order management system which can be used with clj-fix

  • java client for yellerapp.com's exception tracking api
  • lein-git 0.1.0

    lein-git is a leiningen-plugin which has been made in order to make commit whose messages follow certain pattern
  • system 0.1.0

    Start and stop services in a particular order.

  • Start and stop services in a particular order.

  • ordered hash and set types for Clojure and ClojureScript - instead of sorting by key, these collections retain insertion order.
  • dbg 0.1.2-SNAPSHOT

    Tracing evaluation order. It logs entering and leaving functions or macros/special forms. It indents them, along with any inner output - simple and pretty. You prefix function calls with `dbgf` or macros/special forms with `dbg`. It works without any extra parens (). Hence diffs are shorter, easier to read. Isn't that practical?