Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/4clojure/4clojure
An interactive problem website for learning Clojure
https://github.com/4clojure/4clojure
Last synced: 1 day ago
JSON representation
An interactive problem website for learning Clojure
- Host: GitHub
- URL: https://github.com/4clojure/4clojure
- Owner: 4clojure
- License: epl-1.0
- Created: 2011-04-12T05:35:29.000Z (almost 14 years ago)
- Default Branch: develop
- Last Pushed: 2021-08-08T10:25:33.000Z (over 3 years ago)
- Last Synced: 2025-01-12T14:05:21.855Z (9 days ago)
- Language: Clojure
- Homepage: https://www.4clojure.com
- Size: 3.31 MB
- Stars: 1,064
- Watchers: 54
- Forks: 226
- Open Issues: 89
-
Metadata Files:
- Readme: README.md
- License: LICENSE.html
Awesome Lists containing this project
README
# 4clojure.com has been discontinued
Another site may take over the domain name at some point, but for now 4clojure.com is down on purpose. [More details on the forum](https://groups.google.com/g/clojure/c/ZWmDEzvn-Js).
# 4Clojure
An interactive problem website for learning Clojure:
[https://www.4clojure.com](https://www.4clojure.com).## Contributing
Anyone interested in contributing should check out
the [Issues](https://github.com/4clojure/4clojure/issues) page for ideas
on what to work on.Join us in #4clojure on freenode for help or discussion.
## Setup instructions for running locally
* Download and install [leiningen](https://github.com/technomancy/leiningen).
* Download and install [mongodb](http://www.mongodb.org/).
* The project uses
[clojail](https://github.com/flatland/clojail), which
requires a security policy setup in your home directory (because
Clojure's `eval` is unsafe if used improperly). Set up a file called
`.java.policy` in your home directory. The contents should look
vaguely like this:grant { permission java.security.AllPermission; };
but see the readme of that project for more details.
* cd to the 4clojure project directory and run `lein deps`.
* Start up your mongodb, if you don't have autostart:mongod
* For the first time use, you will need to load the problem data. Run the script `load-data.sh`:./load-data.sh
* Run `lein ring server`
* To run the tests: `lein test`
## Contributors
* [David Byrne](https://github.com/dbyrne) (dbyrne)
* [Alan Malloy](https://github.com/amalloy) (amalloy)
* [Anthony Grimes](https://github.com/Raynes) (raynes)
* [Carin Meier](https://github.com/gigasquid) (cmeier)
* [Clint Harrison](https://github.com/Clinteger) (clinteger)
* [Darren Austin](https://github.com/darrenaustin) (darren)
* [David Davis](https://github.com/daviddavis) (daviddavis)
* [Devin Walters](https://github.com/devn) (devn)
* [Michael Kohl](https://github.com/citizen428) (citizen428)
* [Martin Sander](https://github.com/marvinthepa) (0x89)
* [Alex McNamara](https://github.com/amcnamara) (amcnamara)
* [Ara Jeknavorian](https://github.com/arajek) (arajek)
* [Thomas Lamb](https://github.com/tclamb) (tclamb)Problem sources:
* Aaron Bedra's [Clojure Koans](https://github.com/functional-koans/clojure-koans)
* [Ninety-Nine Lisp Problems](http://www.ic.unicamp.br/~meidanis/courses/mc336/2006s2/funcional/L-99_Ninety-Nine_Lisp_Problems.html)
* [Project Euler](http://www.projecteuler.net)## License
The source code for 4clojure is available under the Eclipse Public License v 1.0. For more information, see LICENSE.html.