Search for 'WA 0852 2611 9277 Pesan Interior Set Kamar Ukir Apartemen The Spring Residence Tangerang'
For details on the search query syntax, see the guide.
Total results: 3155, showing 961 - 984
Note: artifacts in italics are non-canonical forks. See the wiki for more details.
Set of utility functions designed to mix-in in your Clojure REPL sessions.
JNI Bindings for ATLAS BLAS and LAPACK library. Neanderthal needs
to find both JNI and the native jar (or nar) for the specific operating system you use.
Library wrapping the subjectivity lexicon from http://mpqa.cs.pitt.edu/
SWT is an open source widget toolkit for Java designed to provide efficient, portable access to the user-interface facilities of the operating systems on which it is implemented.
HugNeo4j offers a similar experience to the excellent HugSql library but for neo4j. As a matter of fact this library copies some very important parts from HugSql
Clojure API for the Parrot AR.Drone 2.0.
By John Wiseman / jjwiseman@gmail.com / http://twitter.com/lemonodor
Just add dependency, sprinkle some config, and run Clojure in your Springboot application.
This artifact may shadow a release on Maven Central. You should
search there for a canonical release.
The latest Telegram Bot API specification and client lib for Clojure-based apps.
A fast and complete ByteBuffer implementation using either ArrayBuffers in the browser or Buffers under node.js.
A set of common utility functions used by lstoll
A library to help load and program JavaFX apps using FXML as the primary markup language.
Clojure client library for the GoCardless API
A simple SDK to interact with the Telegram Bot API. It is based on the Morse. And intended to be compatible with GraalVM native-image.
The protocol for custom rendering in gorilla REPL.
Protocol Buffers for the RethinkDB database
The PostgreSQL Driver JDBC4
A Clojure library similar to garden with focus on simplicity and comfort of the programmer.
A small library to check assertions. Includes original expression and the values in it.
A Ring middleware that adds X-Clacks-Overhead header to the response
A set of utilities for stubbing Clojure multi-methods.
A lightweight clojure wrapper around the smack jabber/XMPP library
"Backwards compatible alternative to clojure's
defmulti/defmethod, with about 1/10 the method lookup overhead,
performance roughly comparable to protocols."
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.
Utility function for the Component library