Skip to content

Instantly share code, notes, and snippets.

class A {
public void publ() {
this.priv();
}
private void priv() {
System.out.println("A PRIVATE");
}
}
class B extends A {
(def seen-primes (atom []))
;; BUG: if composite c is larger than any p in known-primes-atom,
;; and (rem c p) != 0 for all p, then c would be seen as a prime, though
;; it is a composite number.
(defn memoized-prime? [known-primes-atom n]
(if (< n 2)
false
(every? #(not (zero? (rem n %)))
(for [d @known-primes-atom :when (< (* d d) n)] d))))
rcov -Itest --rails test/functional/*.rb test/unit/*.rb
(defproject cljservice "1.0.0-SNAPSHOT"
:description "A Compojure 'Hello World' application"
:dependencies [[org.clojure/clojure "1.2.0-beta1"]
[org.clojure/clojure-contrib "1.2.0-beta1"]
[compojure "0.4.1"]
[ring/ring-jetty-adapter "0.2.3"]]
:main simpleweb)
(ns simpleweb
(:gen-class)
(:use compojure.core
ring.adapter.jetty)
(:require [compojure.route :as route]))
(defroutes greeter
(GET "/" [] "<h1>test</h1>")
(route/not-found "not found"))
An error has occurred while processing the Maven artifact tasks.
Diagnosis:
Unable to resolve artifact: Missing:
----------
1) com.lowagie:itext:jar:1.4
Try downloading the file manually from the project website.
Then, install it using the command:
~/code/labrepl(master⚡)$ lein deps
Downloading: com/lowagie/itext/1.4/itext-1.4.pom from clojure-releases
Downloading: com/lowagie/itext/1.4/itext-1.4.pom from clojure
Downloading: com/lowagie/itext/1.4/itext-1.4.pom from clojure-snapshots
Downloading: com/lowagie/itext/1.4/itext-1.4.pom from clojars
Downloading: com/lowagie/itext/1.4/itext-1.4.pom from central
Downloading: com/lowagie/itext/1.4/itext-1.4.jar from clojure-releases
Downloading: com/lowagie/itext/1.4/itext-1.4.jar from clojure
Downloading: com/lowagie/itext/1.4/itext-1.4.jar from clojure-snapshots
Downloading: com/lowagie/itext/1.4/itext-1.4.jar from clojars
~/code/ttt$ lein deps
Copying 2 files to /Users/eshira/code/ttt/lib
Overriding previous definition of reference to ttt
Overriding previous definition of reference to dependency.fileset
Copying 24 files to /Users/eshira/code/ttt/lib/dev
~/code/ttt$ lein deps
Exception in thread "main" java.lang.NullPointerException (NO_SOURCE_FILE:0)
at clojure.lang.Compiler.eval(Compiler.java:5440)
at clojure.lang.Compiler.eval(Compiler.java:5391)
at clojure.core$eval.invoke(core.clj:2382)
; Use \p to close this buffer!
Could not determine the Namespace of the file.
This might have different reasons. Please check, that the ng server
is running with the correct classpath and that the file does not contain
syntax errors. The interactive features will not be enabled, ie. the
keybindings will not be mapped.
Reason:
; Use \p to close this buffer!
java.io.FileNotFoundException: Could not locate test__init.class or test.clj on classpath:
at clojure.lang.RT.load(RT.java:412)
at clojure.lang.RT.load(RT.java:381)
at clojure.core$load$fn__4511.invoke(core.clj:4905)
at clojure.core$load.doInvoke(core.clj:4904)
at clojure.lang.RestFn.invoke(RestFn.java:409)
at clojure.core$load_one.invoke(core.clj:4729)
at clojure.core$load_lib.doInvoke(core.clj:4766)