Parsing with derivatives - Elegant matching of regular languages in clojure

2016-10-04 Thread Yehonathan Sharvit
This article
http://blog.klipse.tech/clojure/2016/10/02/parsing-with-derivatives-regular.html
 is an interactive version of the first part of this paper: Parsive with
derivatives - a Functional Pearl
 - the part that
shows how to implement a regular expression matcher in a few lines of code
using a concept from 1964 named Brzozowski's derivative.

As David Nolen explains it in his talk about this paper at Papers We Love
, clojure.specimplementation is based on this
paper.

In this article, we are going to implement a regular expression matcher in
clojure using Brzozowski's derivative.

The theoretical part is a bit abstract but it worths making the effort as
the implementation is really elegant.

-- 
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] A CDN for Clojars (testers needed)

2016-10-04 Thread Sean Corfield
Updated my local ~/.boot/profile.boot and it seemed to work fine so I updated 
our (WS’) Archiva instance to mirror/proxy off that new URL and if I hit any 
problems running builds at work over the next few days, I’ll let you know.

Great to hear it’s on a CDN now!!

Sean Corfield -- (970) FOR-SEAN -- (904) 302-SEAN
An Architect's View -- http://corfield.org/

"If you're not annoying somebody, you're not really alive."
-- Margaret Atwood

On 10/4/16, 6:36 PM, "Toby Crawley"  wrote:

We're now serving a copy of the Clojars repository from Fastly's
CDN[1], backed by Rackspace Cloud Files[2] at
https://repo.clojars.org, and are looking for users to test out this
new setup. This CDN repo currently runs in parallel to the existing
repo, and any new deployments to clojars.org are automatically written
to Cloud Files for the CDN to serve.

If all goes according to plan, the CDN repo would always be available,
even if clojars.org was DDoSed or suffered a catastrophic failure.

Note: the CDN repo won't support Java 6 clients, and we know there are
still some people on Java 6, so we have a plan for that (see below).


# How can I help test it?

To use the CDN repo, you'll need to modify your tooling configuration:

* For Leiningen, update `~/.lein/profiles.clj` with the following:

  {:user {:repositories [["clojars" {:url "https://repo.clojars.org"}]]
  :plugin-repositories [["clojars" {:url 
"https://repo.clojars.org"}]]
  ;; other :user profile settings...
  }}

* For Boot, update your project's `build.boot` with:

  (set-env! :repositories
 [["central" {:url "http://repo1.maven.org/maven2"; :snapshots 
false}]
  ["clojars" {:url "https://repo.clojars.org"}]])

If you experience any problems with this repo, please file an issue at
https://github.com/clojars/clojars-web/issues


# What's the plan for this new repo?

We plan to run both repositories in parallel. Once we are satisfied
that the CDN repo is stable and the method for keeping it up to date
with new deployments is robust, we will:

* Submit PR's to Boot and Leiningen to update the default clojars url
  to point directly to the CDN (until the updated tools are released,
  you'll have to manually point to the CDN repo as shown above)
* Set up a server just for Java 6 clients (likely java6.clojars.org)
  that proxies the CDN (If you explicitly use Java 6, you'll need to
  explicitly use the java6 repo using instructions similar to those
  above once you update to a tool release that uses the CDN repo by
  default)
* Work with Colin Fleming to get Cursive updated to use the Java 6
  server behind the scenes (we suspect that Cursive users on macOS
  make up the bulk of our Java 6 clients)
* Turn off Java 6 support for clojars.org, which will force all Java 6
  users to use the java6 repo (this will happen several months from
  now, schedule still TBD). This will allow us to update the TLS
  settings on clojars.org to be more secure.


# Thanks to our sponsors

Rackspace is graciously donating the servers and Cloud Files service,
and Fastly has been kind enough to donate our CDN, so thank them if
you get the chance.


[1]: https://www.fastly.com
[2]: https://www.rackspace.com/cloud/files





-- 
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] A CDN for Clojars (testers needed)

2016-10-04 Thread Alan Thompson
Done!  Seems to be working.
Alan

On Tue, Oct 4, 2016 at 6:36 PM, Toby Crawley  wrote:

> We're now serving a copy of the Clojars repository from Fastly's
> CDN[1], backed by Rackspace Cloud Files[2] at
> https://repo.clojars.org, and are looking for users to test out this
> new setup. This CDN repo currently runs in parallel to the existing
> repo, and any new deployments to clojars.org are automatically written
> to Cloud Files for the CDN to serve.
>
> If all goes according to plan, the CDN repo would always be available,
> even if clojars.org was DDoSed or suffered a catastrophic failure.
>
> Note: the CDN repo won't support Java 6 clients, and we know there are
> still some people on Java 6, so we have a plan for that (see below).
>
>
> # How can I help test it?
>
> To use the CDN repo, you'll need to modify your tooling configuration:
>
> * For Leiningen, update `~/.lein/profiles.clj` with the following:
>
>   {:user {:repositories [["clojars" {:url "https://repo.clojars.org"}]]
>   :plugin-repositories [["clojars" {:url "https://repo.clojars.org
> "}]]
>   ;; other :user profile settings...
>   }}
>
> * For Boot, update your project's `build.boot` with:
>
>   (set-env! :repositories
>  [["central" {:url "http://repo1.maven.org/maven2"; :snapshots
> false}]
>   ["clojars" {:url "https://repo.clojars.org"}]])
>
> If you experience any problems with this repo, please file an issue at
> https://github.com/clojars/clojars-web/issues
>
>
> # What's the plan for this new repo?
>
> We plan to run both repositories in parallel. Once we are satisfied
> that the CDN repo is stable and the method for keeping it up to date
> with new deployments is robust, we will:
>
> * Submit PR's to Boot and Leiningen to update the default clojars url
>   to point directly to the CDN (until the updated tools are released,
>   you'll have to manually point to the CDN repo as shown above)
> * Set up a server just for Java 6 clients (likely java6.clojars.org)
>   that proxies the CDN (If you explicitly use Java 6, you'll need to
>   explicitly use the java6 repo using instructions similar to those
>   above once you update to a tool release that uses the CDN repo by
>   default)
> * Work with Colin Fleming to get Cursive updated to use the Java 6
>   server behind the scenes (we suspect that Cursive users on macOS
>   make up the bulk of our Java 6 clients)
> * Turn off Java 6 support for clojars.org, which will force all Java 6
>   users to use the java6 repo (this will happen several months from
>   now, schedule still TBD). This will allow us to update the TLS
>   settings on clojars.org to be more secure.
>
>
> # Thanks to our sponsors
>
> Rackspace is graciously donating the servers and Cloud Files service,
> and Fastly has been kind enough to donate our CDN, so thank them if
> you get the chance.
>
>
> [1]: https://www.fastly.com
> [2]: https://www.rackspace.com/cloud/files
>
> --
> 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.
>

-- 
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] A CDN for Clojars (testers needed)

2016-10-04 Thread Toby Crawley
We're now serving a copy of the Clojars repository from Fastly's
CDN[1], backed by Rackspace Cloud Files[2] at
https://repo.clojars.org, and are looking for users to test out this
new setup. This CDN repo currently runs in parallel to the existing
repo, and any new deployments to clojars.org are automatically written
to Cloud Files for the CDN to serve.

If all goes according to plan, the CDN repo would always be available,
even if clojars.org was DDoSed or suffered a catastrophic failure.

Note: the CDN repo won't support Java 6 clients, and we know there are
still some people on Java 6, so we have a plan for that (see below).


# How can I help test it?

To use the CDN repo, you'll need to modify your tooling configuration:

* For Leiningen, update `~/.lein/profiles.clj` with the following:

  {:user {:repositories [["clojars" {:url "https://repo.clojars.org"}]]
  :plugin-repositories [["clojars" {:url "https://repo.clojars.org"}]]
  ;; other :user profile settings...
  }}

* For Boot, update your project's `build.boot` with:

  (set-env! :repositories
 [["central" {:url "http://repo1.maven.org/maven2"; :snapshots false}]
  ["clojars" {:url "https://repo.clojars.org"}]])

If you experience any problems with this repo, please file an issue at
https://github.com/clojars/clojars-web/issues


# What's the plan for this new repo?

We plan to run both repositories in parallel. Once we are satisfied
that the CDN repo is stable and the method for keeping it up to date
with new deployments is robust, we will:

* Submit PR's to Boot and Leiningen to update the default clojars url
  to point directly to the CDN (until the updated tools are released,
  you'll have to manually point to the CDN repo as shown above)
* Set up a server just for Java 6 clients (likely java6.clojars.org)
  that proxies the CDN (If you explicitly use Java 6, you'll need to
  explicitly use the java6 repo using instructions similar to those
  above once you update to a tool release that uses the CDN repo by
  default)
* Work with Colin Fleming to get Cursive updated to use the Java 6
  server behind the scenes (we suspect that Cursive users on macOS
  make up the bulk of our Java 6 clients)
* Turn off Java 6 support for clojars.org, which will force all Java 6
  users to use the java6 repo (this will happen several months from
  now, schedule still TBD). This will allow us to update the TLS
  settings on clojars.org to be more secure.


# Thanks to our sponsors

Rackspace is graciously donating the servers and Cloud Files service,
and Fastly has been kind enough to donate our CDN, so thank them if
you get the chance.


[1]: https://www.fastly.com
[2]: https://www.rackspace.com/cloud/files

-- 
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] - New version of milestones - the automagic project management lib !

2016-10-04 Thread Rafik NACCACHE
Hey all,

I am happy to finally have made it to release version 0.2.0 of milestones,
a lib that helps you schedule your project tasks !


Major additions is a simpler purely functional core and clojurescript
support !

Please have a look on it here:

https://github.com/turbopape/milestones

Cheers !

-- 
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] pulley.thread-local 0.1.0

2016-10-04 Thread Nathan Davis
Hello everyone,

I'm please to announce the release of a new project, pulley.thread-local 
.
  
This is a simple project that brings Java's ThreadLocal and Clojure's IAtom 
interface together.  The result is an atom-like interface for thread-local 
bindings.

Due to the simplicity of the project, I decided to experiment with Literate 
Programming.  All the code is contained within Readme.org.  Feedback / 
advice on this structure (and other areas of the project too) are 
definitely welcome.

Nathan Davis

-- 
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: Hacktoberfest labeled issues

2016-10-04 Thread Toby Crawley
Thanks for pointing this out Karim. I have tagged some Clojars issues:
https://github.com/clojars/clojars-web/issues?q=is%3Aissue+is%3Aopen+label%3Ahacktoberfest

- Toby

On Tue, Oct 4, 2016 at 7:26 AM, Bozhidar Batsov  wrote:
> CIDER is participating in this -
> https://github.com/clojure-emacs/cider/issues?q=is%3Aissue+is%3Aopen+label%3AHacktoberfest
>
> On 4 October 2016 at 11:28, Karim SENHAJI  wrote:
>>
>> Hi all,
>>
>> Hacktoberfest is currently running in Github (contribute to OSS and win a
>> t-shirt).
>> Maybe open-source maintainers could tag there ready/low-hanging fruit
>> issues to be part of this event:
>>
>> https://github.com/search?l=Clojure&q=state%3Aopen+label%3Ahacktoberfest&ref=advsearch&type=Issues&utf8=%E2%9C%93
>>
>> I am thinking of projects such as clojars who already have several issues
>> ready.
>> I am new to the Clojure ecosystem and would love to discover some projects
>> via this medium.
>>
>> Best regards,
>> Karim
>>
>> --
>> 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.
>
>
> --
> 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.

-- 
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.


Neanderthal (fast CPU & GPU matrix library for Clojure) will also support Windows out of the box

2016-10-04 Thread Dragan Djuric
Hi all,

I've just spent some time building ATLAS for windows, and created a windows 
binary of the current snapshot version. 

There seems to be no performance tax on windows, or at least it is not 
large. I wasn't unable to compare it on the same machine, but on my i7 
laptop (2.4 GHz) with Windows, some brief tests that I run are at about 60% 
of the speed I get on i7 4770K at 4.4 GHz on Linux (single-thread mode). 

I guess this works as expected, and you can expect speedups as in 
http://neanderthal.uncomplicate.org/articles/benchmarks.html

So, from the version 0.8.0 and on, Neanderthal will support Linux, OSX, AND 
Windows out of the box! OSX will always run optimized (since it comes with 
its own native BLAS), and on Linux and Windows you'll be able to use a 
generic ATLAS binary or to compile your own optimized version. Either of 
those would be much faster than any pure Java alternative. There's 
something for everyone now (except for the ClojureScript folks - that may 
come in future versions of neanderthal) :)

-- 
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: clojure.core/bean throws when passed an empty list

2016-10-04 Thread Gary Trakhman
This is an existing bug:
http://dev.clojure.org/jira/browse/CLJ-978?page=com.atlassian.jira.plugin.system.issuetabpanels:changehistory-tabpanel

It's relatively easy to write a workaround if needed.

On Tue, Oct 4, 2016 at 7:59 AM Divyansh Prakash 
wrote:

> Is this desired behaviour?
>
> user=> (bean [])
> {:class clojure.lang.PersistentVector, :empty true}
>
> user=> (bean {})
> {:class clojure.lang.PersistentArrayMap, :empty true}
>
> user=> (bean ())
> IllegalAccessException Class clojure.core$bean$fn__5975$fn__5976 can not
> access a member of class clojure.lang.PersistentList$EmptyList with
> modifiers "public"  sun.reflect.Reflection.ensureMemberAccess
> (Reflection.java:110)
>
> user=> (bean '(1 2 3))
> {:class clojure.lang.PersistentList, :empty false}
>
> --
> 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.
>

-- 
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.


clojure.core/bean throws when passed an empty list

2016-10-04 Thread Divyansh Prakash
Is this desired behaviour?

user=> (bean [])
{:class clojure.lang.PersistentVector, :empty true}

user=> (bean {})
{:class clojure.lang.PersistentArrayMap, :empty true}

user=> (bean ())
IllegalAccessException Class clojure.core$bean$fn__5975$fn__5976 can not 
access a member of class clojure.lang.PersistentList$EmptyList with 
modifiers "public"  sun.reflect.Reflection.ensureMemberAccess 
(Reflection.java:110)

user=> (bean '(1 2 3))
{:class clojure.lang.PersistentList, :empty false}

-- 
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: Hacktoberfest labeled issues

2016-10-04 Thread Bozhidar Batsov
CIDER is participating in this -
https://github.com/clojure-emacs/cider/issues?q=is%3Aissue+is%3Aopen+label%3AHacktoberfest

On 4 October 2016 at 11:28, Karim SENHAJI  wrote:

> Hi all,
>
> Hacktoberfest  is currently
> running in Github (contribute to OSS and win a t-shirt).
> Maybe open-source maintainers could tag there ready/low-hanging fruit
> issues to be part of this event:
> https://github.com/search?l=Clojure&q=state%3Aopen+label%
> 3Ahacktoberfest&ref=advsearch&type=Issues&utf8=%E2%9C%93
>
> I am thinking of projects such as clojars who already have several issues
> ready.
> I am new to the Clojure ecosystem and would love to discover some projects
> via this medium.
>
> Best regards,
> Karim
>
> --
> 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.
>

-- 
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.


Hacktoberfest labeled issues

2016-10-04 Thread Karim SENHAJI
Hi all,

Hacktoberfest  is currently 
running in Github (contribute to OSS and win a t-shirt).
Maybe open-source maintainers could tag there ready/low-hanging fruit 
issues to be part of this event:
https://github.com/search?l=Clojure&q=state%3Aopen+label%3Ahacktoberfest&ref=advsearch&type=Issues&utf8=%E2%9C%93

I am thinking of projects such as clojars who already have several issues 
ready.
I am new to the Clojure ecosystem and would love to discover some projects 
via this medium.

Best regards,
Karim

-- 
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.