-
7 Dec: [Study Group] Week 1 of Intro Group!
-
14 Dec: [No study group!] Clojure Meetup @ Acrolinx: https://www.meetup.com/Clojure-Berlin/events/235462305/
-
21 Dec: [Study Group] Week 2 of Intro Group! Xmas Edition
-
21 Dec - ? Holiday Break
We had a great lineup of speakers at ClojureBridge Berlin. Find a list of them, with twitter handles and slides, below. Wir hatten viele tolle SpeakerInnen bei ClojureBridge Berlin. Hier findest du eine Liste der Namen und gegebenfalls einen Link zu ihrer Präsentation.
- Twitter: @thatbettina
To fix this, run:
$ rebar get-deps compile
$ cd ..
$ mix deps.compile ```
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
1. Log into your account on github.com | |
2. Click on your avatar (top right corner) > Settings. | |
3. In the left sidebar, go to Security. You will see "Two Factor Authentication" on top of the page. | |
4. You can now choose either using SMS or an Authentication app to do this. I personally have used both SMS and Google Authenticator at points and both work fine. I hear authy also works well. | |
5. You'll have to enter the code you generated using your chosen method and confirm. |
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 is a useful macro for clojure debugging | |
(defmacro dbg[x] `(let [x# ~x] (println "dbg:" '~x "=" x#) x#)) | |
;; Use it anywhere in your expression like so: | |
(defn factorial[n] (if (= n 0) 1 (* n (dbg (factorial (dec n)))))) | |
;; Taken from [stackoverflow](http://stackoverflow.com/a/2352280/789070) |