free online course

2015-08-31 Thread r/ Wobben
Hello, 

I found this MOOC to learn me clojure : 
http://iloveponies.github.io/120-hour-epic-sax-marathon/basic-tools.html

Is this a good one or is there a better free alternative. 

Roelof

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


I am Clojure Junior and i am looking remote work

2015-08-31 Thread Krzysztof Władyka
Hi,

What i see all companies looking Clojure Senior and it is a problem to find 
a job in Clojure for me, because i am Junior :)

My linkedin profile: https://pl.linkedin.com/in/kwladyka

I have code in Clojure for this task during one of recruitment, but the 
company asked me to not show it public. I can give access on bitbucket to 
private repository. I believe it is very good task to show my skills and i 
got very good opinion for this task.

The problem is to find all unique configurations of a set of normal chess 
> pieces on
> a chess board with dimensions MxN where none of the pieces is in a 
> position to take any of the
> others. Assume the colour of the piece does not matter, and that there are 
> no pawns among the
> pieces.
> Write a program which takes as input:
> 1. The dimensions of the board: M, N
> 2. The number of pieces of each type (King, Queen, Bishop, Rook and 
> Knight) to try and
> place on the board.
> As output, the program should list all the unique configurations to the 
> console for which all of the
> pieces can be placed on the board without threatening each other.


So the question is: *do you know any company which looking remote Clojure 
Junior? I can also relocate if conditions are good.*

I am from Poland.

Best regards,
Krzysztof Władyka

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


feedback about solutions

2015-08-31 Thread r/ Wobben
Hello, 

I did solve the boolean chapter of the ilovehorses git repo.
My solutions can be found here: 
https://github.com/rwobben/i-am-a-horse-in-the-land-of-booleans/blob/master/src/i_am_a_horse_in_the_land_of_booleans.clj

Any experts who can give me feedback about the solutions so I can learn 
from it.

Roelof
 

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[ANN] ring-logger 0.6.1

2015-08-31 Thread Nicolás Berger
I'm glad to announce the release of ring-logger 0.6.1

Ring-logger is a fork of pjlegato's ring.middleware.logger that aims
to make it easier to switch the logging infrastructure (from onelog to
taoensso/timbre, the now default tools.logging or any other),
customize the logging output (coloring/no-coloring, turn off or
customize specific messages) and much more!

clojars coordinates: [ring-logger "0.6.1"]
github: https://github.com/nberger/ring-logger/releases/tag/0.6.1

Usage & migration from r.m.logger instructions, customization
examples, roadmap and much more can be found in
https://github.com/nberger/ring-logger

I'd like to thank Paul Legato for building ring.middleware.logger
without which ring-logger would not exist. I think r.m.logger is a
perfectly valid option if you don't mind pulling dependencies from
OneLog.

Feedback and contributions are more than welcome!

-
Nicolás

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [ANN] ring-logger 0.6.1

2015-08-31 Thread Nicolás Berger
Just released ring-logger 0.6.2 with a bugfix for the OneLog
implementation. Use this release if you are going to use it with
OneLog, or wait until the 0.7.0 release which should happen soon.

# Changelog

## 0.6.2

* Fix OneLog implementation: error -> error-with-ex

## 0.6.1

* Add ability to customize messages & to disable coloring


On Mon, Aug 31, 2015 at 3:31 PM, Nicolás Berger  wrote:
> I'm glad to announce the release of ring-logger 0.6.1
>
> Ring-logger is a fork of pjlegato's ring.middleware.logger that aims
> to make it easier to switch the logging infrastructure (from onelog to
> taoensso/timbre, the now default tools.logging or any other),
> customize the logging output (coloring/no-coloring, turn off or
> customize specific messages) and much more!
>
> clojars coordinates: [ring-logger "0.6.1"]
> github: https://github.com/nberger/ring-logger/releases/tag/0.6.1
>
> Usage & migration from r.m.logger instructions, customization
> examples, roadmap and much more can be found in
> https://github.com/nberger/ring-logger
>
> I'd like to thank Paul Legato for building ring.middleware.logger
> without which ring-logger would not exist. I think r.m.logger is a
> perfectly valid option if you don't mind pulling dependencies from
> OneLog.
>
> Feedback and contributions are more than welcome!
>
> -
> Nicolás

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: free online course

2015-08-31 Thread Denis Fuenzalida
I recommend Clojure for the Brave and True: http://www.braveclojure.com/

If you can clone this github repo and you are not afraid of the command 
line you can try: https://github.com/relevance/labrepl


Denis

El lunes, 31 de agosto de 2015, 8:49:46 (UTC-7), r/ Wobben escribió:
>
> Hello, 
>
> I found this MOOC to learn me clojure : 
> http://iloveponies.github.io/120-hour-epic-sax-marathon/basic-tools.html
>
> Is this a good one or is there a better free alternative. 
>
> Roelof
>
>















 

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: free online course

2015-08-31 Thread r/ Wobben
Thanks, 

I know Clojure for the Brave and True but what I miss there are exercises I 
can do myself.
I will look at the labrepl course. 

Roelof


Op dinsdag 1 september 2015 03:22:04 UTC+2 schreef Denis Fuenzalida:
>
> I recommend Clojure for the Brave and True: http://www.braveclojure.com/
>
> If you can clone this github repo and you are not afraid of the command 
> line you can try: https://github.com/relevance/labrepl
>
>
> Denis
>
> El lunes, 31 de agosto de 2015, 8:49:46 (UTC-7), r/ Wobben escribió:
>>
>> Hello, 
>>
>> I found this MOOC to learn me clojure : 
>> http://iloveponies.github.io/120-hour-epic-sax-marathon/basic-tools.html
>>
>> Is this a good one or is there a better free alternative. 
>>
>> Roelof
>>
>>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>  
>

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


How do I print each test name in clojure.test?

2015-08-31 Thread Mayank Jain
Hi,

I would like clojure.test to print name of each test as it runs. Currently 
it only prints on failure.
I would like it to print even when it passes.
Is there a way to do this? Maybe through writing some each fixture?

Currently I have written this function

(defn print-test
  []
  (println (last (map #(:name (meta %)) *testing-vars*

And I add this print-test to each test at the top.

(deftest valid-test
  (print-test)
  (let []
   ))


Is there a better way?

Thanks.

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[ANN] Nginx-Clojure v0.4.2

2015-08-31 Thread Xfeep
0.4.2 (2015-08-31)
   
   1. New Feature: Support Sente (issue #87 
   , see this PR 
   )
   2. New Feature: Per-message Compression Extensions (PMCEs) for WebSocket 
   (issue #88 )
   3. New Feature: Add add-aggregated-listener! to makes handling small but 
   fragmented websocket messages easier by clojure.
   4. Enhancement: Support to build on a Linux ARM machine
   5. Bug Fix: WebSocket and Server Channel do not Work with Some Ring 
   Middlewares (issue#89 
   )
   6. Bug Fix: Autodetect jvm_path doesn't work sometimes

Web Site   http://nginx-clojure.github.io/
Source Hosted on Github https://github.com/nginx-clojure/nginx-clojure
Google Group (mailing list) 
https://groups.google.com/forum/#!forum/nginx-clojure

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.