Re: clojure.edn/read isn't spec compliant

2020-10-22 Thread Gregg Reynolds
On Thu, Oct 22, 2020 at 12:00 PM EuAndreh wrote: > Gregg Reynolds writes: > > > I could put that to good use, even if it isn't 100% "compliant". Is it > > available? > > You can find the current WIP code here: > https://git.euandreh.xyz/libedn/tree/src/co

Re: clojure.edn/read isn't spec compliant

2020-10-22 Thread Gregg Reynolds
On Fri, Oct 16, 2020 at 8:07 PM 'EuAndreh' via Clojure < clojure@googlegroups.com> wrote: > > Hello there. > > I was working on implementing a specification compliant edn reader on > Rust I could put that to good use, even if it isn't 100% "compliant". Is it available? Thanks Gregg -- You

Re: mysterious clj -m behavior

2020-10-09 Thread Gregg Reynolds
On Fri, Oct 9, 2020 at 3:15 PM alpeware llc wrote: > You should be able to specify the deps.edn file using a env variable - > > The Clojure tools will use the following deps.edn map sources, in this > order: > >- > >Root - found in the installation of clj (or as a resource in >

Re: mysterious clj -m behavior

2020-10-09 Thread Gregg Reynolds
On Fri, Oct 9, 2020 at 1:34 PM Gregg Reynolds wrote: > I'm writing a command line tool, and using `$ clj -m obazl args` to run > it. My deps.edn file contains the path to the sources. Works great, > except when it doesn't. > > I copied the deps.edn to the root directory of a pro

mysterious clj -m behavior

2020-10-09 Thread Gregg Reynolds
I'm writing a command line tool, and using `$ clj -m obazl args` to run it. My deps.edn file contains the path to the sources. Works great, except when it doesn't. I copied the deps.edn to the root directory of a project and when I run it it produces no output. It just returns silently. I

Data point

2019-05-06 Thread Gregg Reynolds
Just fyi I just got a headhunter email from a largish company listing clojure/script first. Yay! -- 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

Re: OK idea to replace conj and cons with "prepend" and "append" macros that have consistent behavior and return same types as args?

2018-07-22 Thread Gregg Reynolds
Brilliant exposition, thanks! On Fri, Jul 20, 2018, 10:51 AM Gary Johnson wrote: > Hi Christian, > > You are looking for "into", which is already part of the Clojure standard > library. > > Appending: > > (into '(1 2) '(3)) ;=> (1 2 3) > (into [1 2] [3]) ;=> [1 2 3] > (into

Re: OK idea to replace conj and cons with "prepend" and "append" macros that have consistent behavior and return same types as args?

2018-07-22 Thread Gregg Reynolds
On Sun, Jul 22, 2018, 4:22 PM Christian Seberino wrote: > - conj adds an element in the place best for the collection type. > > > Is this a valid hypothetical to worry about?... > > Imagine you're the teacher and make the comment above. > > Student responds.. > > "But why, Mr. Teacher, is the

Re: OK idea to replace conj and cons with "prepend" and "append" macros that have consistent behavior and return same types as args?

2018-07-18 Thread Gregg Reynolds
On Wed, Jul 18, 2018, 2:40 PM Gregg Reynolds wrote: > > > On Wed, Jul 18, 2018, 2:25 PM Robert Levy wrote: > >> > Of course you have to "evaluate" to know that, but you also have to >> evaluate "2" in the same way to know what it means. >>

Re: OK idea to replace conj and cons with "prepend" and "append" macros that have consistent behavior and return same types as args?

2018-07-18 Thread Gregg Reynolds
ame meaning? > Literals can be persisted to strings and read back in with no problem, > whereas non-literals can't. > That's a different definition of "literal", no? James talked about evaluation, not printed form. Value != Print representation? > > On Wed, Jul 18, 2018 at

Re: OK idea to replace conj and cons with "prepend" and "append" macros that have consistent behavior and return same types as args?

2018-07-18 Thread Gregg Reynolds
On Wed, Jul 18, 2018, 1:55 PM James Reeves wrote: > On Wed, 18 Jul 2018 at 19:38, Gregg Reynolds wrote: > >> >> On Tue, Jul 17, 2018, 4:11 PM James Reeves wrote: >> >>> >>> A data literal evaluates to itself. So for example, `2` is a literal, >&

Re: OK idea to replace conj and cons with "prepend" and "append" macros that have consistent behavior and return same types as args?

2018-07-18 Thread Gregg Reynolds
On Tue, Jul 17, 2018, 4:11 PM James Reeves wrote: > On Tue, 17 Jul 2018 at 21:06, Christian Seberino > wrote: > >> >> Clojure, on the other hand, takes great care to ensure that its data can >>> always be represented as literals. For data that isn't a standard >>> collection type, there are

Re: OK idea to replace conj and cons with "prepend" and "append" macros that have consistent behavior and return same types as args?

2018-07-18 Thread Gregg Reynolds
On Tue, Jul 17, 2018 at 3:48 PM, Tomasz Sulej wrote: > > > W dniu wtorek, 17 lipca 2018 22:44:27 UTC+2 użytkownik Christian Seberino > napisał: >> >> >> data are functions and vice-versa >>> >> >> What do you mean? e.g. How is the [1 2 3] a "function"? >> >> Also take a look in

Re: OK idea to replace conj and cons with "prepend" and "append" macros that have consistent behavior and return same types as args?

2018-07-17 Thread Gregg Reynolds
On Tue, Jul 17, 2018, 2:49 PM James Reeves wrote: > On Tue, 17 Jul 2018 at 19:52, Christian Seberino > wrote: > >> By the time a Clojure beginner is doing the kind of hardcore concurrent >> applications that Clojure is great at, he/she will know how to use a >> profiler. At the point, they'll

Re: OK idea to replace conj and cons with "prepend" and "append" macros that have consistent behavior and return same types as args?

2018-07-17 Thread Gregg Reynolds
On Tue, Jul 17, 2018, 1:51 PM Christian Seberino wrote: > Actually, even "real" programmers can live for a long time with those > training wheels I was talking about. > As the Python guys have been proclaiming for 20+ years, performance isn't > as important as we think for many (most?)

Re: Clojure/flutter

2018-06-25 Thread Gregg Reynolds
On Thu, Apr 26, 2018, 10:08 AM Gregg Reynolds wrote: > > > On Wed, Apr 25, 2018 at 5:01 PM, Robert Levy wrote: > >> What would you say is the advantage of using Flutter instead of React >> Native? Assuming you're not interested in Dart, what is the selling point? >

Re: Bazel as Clojure build tool

2018-06-17 Thread Gregg Reynolds
On Mon, Jan 29, 2018, 10:16 AM Kiril Videlov wrote: > Hello, > I have been looking at the Bazel build tool for a > multi-language mono-repo and I was wondering if anybody has tried it in the > context of Clojure projects. I have only found the lein-monolith >

Re: Bazel as Clojure build tool

2018-06-11 Thread Gregg Reynolds
On Mon, Jun 11, 2018, 3:03 PM Erik Assum wrote: > Totally off topic, but I once worked on a Java project where some of the > tests were written in groovy and they were a huge PITA: > > 1) The refactoring tools never found, nor refactored the groovy code > 2) The compilation errors introduced by

Re: Bazel as Clojure build tool

2018-06-11 Thread Gregg Reynolds
> scripting. > > > On Mon, Jun 11, 2018 at 3:48 PM Gregg Reynolds wrote: > >> >> >> On Mon, Jun 11, 2018, 2:44 PM Rick Mangi wrote: >> >>> Believe it or not, I actually like groovy a lot. I used to use it to >>> write unit tests for java

Re: Bazel as Clojure build tool

2018-06-11 Thread Gregg Reynolds
On Mon, Jan 29, 2018, 10:16 AM Kiril Videlov wrote: > Hello, > I have been looking at the Bazel build tool for a > multi-language mono-repo and I was wondering if anybody has tried it in the > context of Clojure projects. > Let's go back to basics: what do you mean by

Re: Bazel as Clojure build tool

2018-06-11 Thread Gregg Reynolds
e to hate it. Maybe I just have a bad attitude - I blame Clojure! > > On Mon, Jun 11, 2018 at 3:40 PM Gregg Reynolds wrote: > >> >> >> On Mon, Jun 11, 2018, 2:30 PM wrote: >> >>> ... >> >>> We're starting to lean towards gradle >&g

Re: Bazel as Clojure build tool

2018-06-11 Thread Gregg Reynolds
On Mon, Jun 11, 2018, 2:30 PM wrote: > ... > We're starting to lean towards gradle > You do understand that that means you have to deal with groovy? ;) Fwiw I've been working with Bazel a lot lately and I would never go back. -- You received this message because you are subscribed to the

Re: [ANN] CIDER 0.17 (Andalucía) is out!

2018-05-07 Thread Gregg Reynolds
Looks awesome! Any idea when 1.0 will be out? On Mon, May 7, 2018, 2:55 PM Bozhidar Batsov wrote: > Hey everyone! > > I'm happy to share with you that CIDER finally made it all the way > to Andalucía! This was a massive release that added a lot of new > functionality and

Re: [ANN] editscript: a diffing library for Clojure data

2018-05-03 Thread Gregg Reynolds
On Tue, May 1, 2018, 1:52 AM wrote: > Hello, > > I am happy to make available a diffing/patching library for Clojure data > structures. > > https://github.com/juji-io/editscript > That looks very good! Am I right that this could be used along with e.g. data.xml

Re: Clojure/flutter

2018-04-29 Thread Gregg Reynolds
On Sun, Apr 29, 2018, 5:24 PM Didier wrote: > Honestly, I doubt any project will have more backing then Graal's native > image. > Looking at Graal. Indistinguishable from magic AFAIK. > > So I think its the best shot at Clojure native we've ever had, and > probably the

Re: Clojure/flutter

2018-04-28 Thread Gregg Reynolds
On Sat, Apr 28, 2018 at 6:50 PM, Estevo U. C. Castro wrote: > Just in case you hadn't heard of this: > > https://github.com/takeoutweight/clojure-scheme > > Thanks. Alas, most recent update seems to be 5 years ago. :( I know there have been some efforts along these lines

Re: Clojure/flutter

2018-04-27 Thread Gregg Reynolds
On Fri, Apr 27, 2018, 1:40 PM Robert Levy wrote: > dartjure? > darjure? > darture? > datura? > https://www.darts501.com/Terms.html > Well it's not just a question of how much effort it will take, but whether > the interest in Dart as a target (pun intended?) would be high

Re: Clojure/flutter

2018-04-26 Thread Gregg Reynolds
On Thu, Apr 26, 2018, 10:08 AM Gregg Reynolds <d...@mobileink.com> wrote: > > > On Wed, Apr 25, 2018 at 5:01 PM, Robert Levy <r.p.l...@gmail.com> wrote: > >> What would you say is the advantage of using Flutter instead of React >> Native? Assuming

Re: Clojure/flutter

2018-04-26 Thread Gregg Reynolds
On Thu, Apr 26, 2018, 1:06 PM Kees-Jochem Wehrmeijer wrote: > Flutter definitely looks interesting, but I guess to make it work with > Clojure would require writing a 'ClojureDart', i.e. a Clojure that compiles > to Dart code. Given Dart sits somewhere between Java and

Re: Clojure/flutter

2018-04-26 Thread Gregg Reynolds
On Wed, Apr 25, 2018 at 5:01 PM, Robert Levy wrote: > What would you say is the advantage of using Flutter instead of React > Native? Assuming you're not interested in Dart, what is the selling point? > I haven't used it yet but the interesting bits to me are efficiency (no

Clojure/flutter

2018-04-25 Thread Gregg Reynolds
Flutter is looking pretty good to me. Sure would be nice to have a clojure->flutter compiler. Anthing there, there? -- 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

Re: [ANN] clj-new -- creating new Clojure projects using the clj CLI

2018-04-20 Thread Gregg Reynolds
On Fri, Apr 20, 2018, 2:29 PM Sean Corfield wrote: > Alright, added command-line usage back into the README! Talk about “peer > pressure”  > ... > > "If you're not annoying somebody, you're not really alive." > -- Margaret Atwood > Apparently you are alive and well! Very

Re: Clojure Group

2018-04-16 Thread Gregg Reynolds
On Mon, Apr 16, 2018, 11:37 AM Bijay Paudel wrote: > I post lots of questions but I did not get any response > FWIW not all messages get a response but in my experience that usually means nobody has anything useful to say, not that the message is unwelcome. Wait a while,

Re: Bazel as Clojure build tool

2018-04-15 Thread Gregg Reynolds
On Tue, Jan 30, 2018, 6:07 PM Colin Fleming wrote: > Another tool that works well for polyglot JVM projects is Gradle. I use it > to build Cursive, which has Java, Kotlin and AOT'ed Clojure. I released a > mostly-unsupported plugin for it, and Andrew Oberstar and

Re: Bazel as Clojure build tool

2018-04-15 Thread Gregg Reynolds
On Mon, Jan 29, 2018, 2:07 PM Nathan Fisher wrote: > ... > In order to get the speed that the build tool promises you need the > ability to efficiently parse the ABI of each file and only build its > dependents when the ABI has changed. > Can you please elaborate on

Re: Using Clojure for public facing system in a bank - code security scanning - any luck?

2018-04-15 Thread Gregg Reynolds
On Sun, Apr 15, 2018, 4:59 AM Dragan Djuric wrote: > Hi all. Very interesting thread! I guess that not many Clojure developers > are in this situation, but I hope many more will be; that would mean that > Clojure got the foot in the door of the enterprise. > > Gregg, I need a

Re: Using Clojure for public facing system in a bank - code security scanning - any luck?

2018-04-13 Thread Gregg Reynolds
On Fri, Apr 13, 2018, 4:09 PM Aaron Bedra wrote: > Penetration testing is something performed on an application, but a source > code review of the language is certainly an interesting idea. My company > does these all the time. I ran this by my folks and there was

Re: 2018 State of Clojure Community Survey is now open!

2018-01-27 Thread Gregg Reynolds
Q 3 is missing option "other". On Jan 25, 2018 9:43 AM, "Alex Miller" wrote: > It's time for the annual State of Clojure Community survey! > > If you are a user of Clojure or ClojureScript, we are greatly interested > in your responses to the following survey: > >

Re: State & GUIs

2017-12-06 Thread Gregg Reynolds
On Dec 2, 2017 6:53 AM, "Owen" wrote: Hey all. I'm looking for hints on how to put GUIs together in Clojure. Any thoughts appreciated. The two themes that stick out for me in Clojure are considered attention to the default data structures and the radical approach to

Re: Clojure for beginners

2017-12-06 Thread Gregg Reynolds
On Dec 6, 2017 5:24 PM, "Clojure beginner" wrote: Hi all I heard about Clojure a week ago and have a new assignment at work to learn, develope and deploy to production. I haven't developed in 2 years. Programming background is: mainframe and informatica. I have bought 5

Re: hello world question !!!

2017-10-20 Thread Gregg Reynolds
There once was a man named Gustava Whose Clojure code smelled just like Guava He tried to use gen-class Which made it smell stink-ass So he went back to working in Java Hardy-har-har. Containers long for bytecode on disc. You can minimize it, but you have to have it to bootstrap the Clojure

Re: Clojure(script) Contractors in Vancouver?

2017-08-27 Thread Gregg Reynolds
try #jobs on clojurians slack. On Aug 25, 2017 3:55 PM, "Scott Klarenbach" wrote: > Hello all, > > I'm wondering how many members of this group are interested in doing > Clojure(script) based contract work? > We're in Vancouver, BC, and would love to meet with anyone

Re: Clojure rookie vs parsing

2017-08-16 Thread Gregg Reynolds
On Aug 15, 2017 7:11 AM, wrote: Hi Months ago I read a review that praised Clojure's clean approach and use of JVM that is almost always available in my deployments. My background: started with 370 assembly hoorah! HCF! (check out boot - JCL, done right!) What I

Re: beginning to learn Clojure after imperative programming my whole life

2017-08-09 Thread Gregg Reynolds
On Aug 9, 2017 7:46 PM, "Luc" wrote: The other unpleasant option to climb the learning curve asap is to end up with a deadline to spit out a product  I did it, 5 months of pure Hell  yes, but now you are a badass, no? it's the only way. After that the pain went

Re: beginning to learn Clojure after imperative programming my whole life

2017-08-09 Thread Gregg Reynolds
On Aug 9, 2017 1:43 PM, "Andy" wrote: This feels like a different world. There's a reason for that. The conceptual space of languages like clojure is indeed radically different than the conceptual space of "imperative" languages. Think Turing (or maybe VonNeuman) machine

Re: :gen-class method signature help

2017-08-07 Thread Gregg Reynolds
Never mind, I see you tried that in your original code. ;) On Mon, Aug 7, 2017 at 1:03 PM, Gregg Reynolds <d...@mobileink.com> wrote: > > > On Mon, Aug 7, 2017 at 10:56 AM, Sir Robert Burbridge <sirrob...@gmail.com > > wrote: > >> Didier, thanks for the reply! &

Re: :gen-class method signature help

2017-08-07 Thread Gregg Reynolds
On Mon, Aug 7, 2017 at 10:56 AM, Sir Robert Burbridge wrote: > Didier, thanks for the reply! > > >1. I created a wrapper function like this: (defn -score [data >context] (score data context)) >2. I tried your suggestion but got an error. Here's the current

Re: [ANN] tools.deps.alpha

2017-07-25 Thread Gregg Reynolds
On Tue, Jul 25, 2017 at 8:53 PM, Alex Miller wrote: > Dumb question of the day: given that Clojurescript evidently (as I >>> understand) will soon work seamlessly with npm, can (chunks of) this be >>> extended to cljs? E.g. (s/def ::providers (s/keys :opt-un [::npm])) or

Re: [ANN] tools.deps.alpha

2017-07-25 Thread Gregg Reynolds
On Tue, Jul 25, 2017 at 9:19 AM, Alex Miller wrote: > tools.deps.alpha is a new contrib library API for transitive dependency > graph expansion and the creation of classpaths. > > For more information, I would invite you to check out: > > * the README >

Re: survey says: web dev

2017-07-15 Thread Gregg Reynolds
ps. just tried to access the surveymonkey page for the 2016 state-of-clojure survey. completely unusable on a mobile! pls consider switching to a better provider for 2017! On Jul 15, 2017 3:37 PM, "Gregg Reynolds" <d...@mobileink.com> wrote: > couple days ago somebody p

survey says: web dev

2017-07-15 Thread Gregg Reynolds
couple days ago somebody posted the following on the lua list. questions about web stacks/frameworks/etc. are pretty common for clojure, esp. for newbies. so ditto for clojure (or: if there is an up-to-date summary of the state of clojure web dev pls advise). maybe these qs or sth similar could

Re: Evolve data / entities over time?

2017-07-10 Thread Gregg Reynolds
On Mon, Jul 10, 2017 at 1:35 PM, Luke Horton wrote: > This is probably not clojure specific, but it’s a problem for which i’ve > never really found a satisfying in other languages. Maybe clojure has a > better opinion on the matter? > > How does one evolve/change data

Re: [ANN] Miraj: functional, idiomatic Clojure web programming, including web components

2017-06-19 Thread Gregg Reynolds
On Mon, Jun 19, 2017 at 1:37 AM, Jiacai Liu wrote: > Cool. > One question: Is miraj compatible with https://github.com/ > weavejester/hiccup ? > If you mean mixing Hiccup and Miraj source code, I doubt it, the approach is completely different. I believe Hiccup translates

[ANN] Miraj: functional, idiomatic Clojure web programming, including web components

2017-06-18 Thread Gregg Reynolds
Hi folks, The goal of the Miraj project is to support web programming, including definition and use of web components (specifically Polymer 1.9.x in this version), in seamless and idiomatic Clojure. It seems to be somewhere in

Re: New guide: Reading Clojure Characters

2017-06-17 Thread Gregg Reynolds
On Jun 17, 2017 3:45 PM, "Alex Miller" wrote: I cleaned up this section a bit. I favored "unused" over any of the other choices as I think that's the most accurate. +1 -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post

Re: New guide: Reading Clojure Characters

2017-06-17 Thread Gregg Reynolds
he compiler than the parameter name 'arg1' or 'f'. Andy On Sat, Jun 17, 2017 at 2:01 PM, Gregg Reynolds <d...@mobileink.com> wrote: > > > On Jun 17, 2017 3:36 PM, "Andy Fingerhut" <andy.finger...@gmail.com> > wrote: > > Consider this Clojure 1.8.0 REPL s

Re: New guide: Reading Clojure Characters

2017-06-17 Thread Gregg Reynolds
where. Andy On Sat, Jun 17, 2017 at 12:16 PM, Gregg Reynolds <d...@mobileink.com> wrote: > > > On Jun 17, 2017 1:55 PM, "Timothy Baldridge" <tbaldri...@gmail.com> wrote: > > Anonymous implies there might be some sort of auto gen going on (as there > is wi

Re: New guide: Reading Clojure Characters

2017-06-17 Thread Gregg Reynolds
On Jun 17, 2017 1:55 PM, "Timothy Baldridge" wrote: Anonymous implies there might be some sort of auto gen going on (as there is with anonymous functions), Irrelevant has my vote therefore. The other characteristics are a side-effect of it being a naming convention (with no

Re: New guide: Reading Clojure Characters

2017-06-17 Thread Gregg Reynolds
On Jun 17, 2017 1:27 PM, "Alex Miller" wrote: A new guide is available on the Clojure site: https://clojure.org/guides/weird_characters suggestion: for '_' , Anonymous might be better than Irrelevant. Also, maybe explicitly note that multiple _ are allowed. ie it has 2

Re: New guide: Reading Clojure Characters

2017-06-17 Thread Gregg Reynolds
On Jun 17, 2017 1:27 PM, "Alex Miller" wrote: A new guide is available on the Clojure site: https://clojure.org/guides/weird_characters + 111... one question: the explanation of `%` uses macroexpand but shows eg arg1, arg2, etc. wouldn't those be gen-symed? thanks,

Re: Spec without global registry?

2017-06-12 Thread Gregg Reynolds
On Jun 12, 2017 4:55 PM, "Alex Miller" wrote: I think it's your responsibility to make specs "sufficiently unique". Prefixing with a standard namespace you control seems like it would work. pls excuse me for butting in, but i wonder what happens when i require 14

Re: Spec without global registry?

2017-06-12 Thread Gregg Reynolds
On Jun 10, 2017 11:57 AM, "Mark" wrote: I'm embarking on a new project and I think spec can be a central component not just to the developer-users of the system but to my end-users as well. I'm thinking of providing something like a graphical mechanism to describe specs

Re: slackpocalypse? next steps?

2017-05-25 Thread Gregg Reynolds
On May 25, 2017 2:43 PM, "Luke Burton" wrote: I put together this "survey" a few days ago in the hope of starting to collect some structured feedback on the pros and cons of each service. Very much along the lines of what you're saying – I expect the end result would be

Re: slackpocalypse?

2017-05-22 Thread Gregg Reynolds
On Mon, May 22, 2017 at 8:02 AM, Herwig Hochleitner <hhochleit...@gmail.com> wrote: > 2017-05-22 0:28 GMT+02:00 Gregg Reynolds <d...@mobileink.com>: > >> >> Took a quick look. I must say the UI is not particularly impressive. So >> far, I find discord mu

Re: slackpocalypse?

2017-05-21 Thread Gregg Reynolds
On Fri, May 19, 2017 at 7:46 AM, Herwig Hochleitner wrote: > As I said in the other thread, let's migrate to matrix.org: > https://riot.im/app/#/room/#clojure:matrix.org > There, if the official servers ever get overloaded/dropped/monetized, we > can just start hosting

Re: slackpocalypse?

2017-05-20 Thread Gregg Reynolds
just for fun i posted a mini-survey on #clojure (on slack clojurians) asking more or less, "should we dump slack?" after almost 24 hours, the results are in: yea: 7 nay: 3 chicken: 5 a whopping response rate of 15 out of about 10K! Conclusion: not perceived as a big issue. On May 20, 2017

Re: slackpocalypse?

2017-05-19 Thread Gregg Reynolds
On May 19, 2017 2:57 PM, "Alex Miller" <a...@puredanger.com> wrote: On Friday, May 19, 2017 at 2:27:35 PM UTC-5, Gregg Reynolds wrote: > > > I'm inclined to think moving away from slack would be wise, but only with > the blessing of the core Clojure team. Afte

Re: slackpocalypse?

2017-05-19 Thread Gregg Reynolds
On May 19, 2017 2:11 PM, "'Lee Spector' via Clojure" < clojure@googlegroups.com> wrote: FWIW my research group used Slack for a while, but we switched to Discourse close to two years ago and have been quite happy with it ( https://push-language.hampshire.edu, although only a tiny subset is

Re: slackpocalypse?

2017-05-18 Thread Gregg Reynolds
On May 18, 2017 5:06 PM, "Timothy Baldridge" wrote: You know, there's this awesome bit of tech called IRC...someone should check that out. there's also this "email" thing people are talking about, but i don't really understand it. a series of tubes of some kind, i

Re: slackpocalypse?

2017-05-18 Thread Gregg Reynolds
On May 18, 2017 5:06 PM, "Timothy Baldridge" <tbaldri...@gmail.com> wrote: You know, there's this awesome bit of tech called IRC...someone should check that out. that is so 90s! On Thu, May 18, 2017 at 3:31 PM, Gregg Reynolds <d...@mobileink.com> wrote: > look

Re: slackpocalypse?

2017-05-18 Thread Gregg Reynolds
looks like access is restored, for me at least. still, slack is making me a little nervous. and that's in addition to the 10K msg limit, which is a pain. anybody know antything about ryver? https://ryver.com/ryver-vs-slack/ On May 18, 2017 3:15 PM, "Gregg Reynolds" <d...@mobilei

Re: slackpocalypse?

2017-05-18 Thread Gregg Reynolds
On May 18, 2017 3:40 PM, "Dragan Djuric" <draga...@gmail.com> wrote: It works for me as always. hmm, maybe it's a hiccup. where are you located, if you don't mind my asking. On Thursday, May 18, 2017 at 10:34:33 PM UTC+2, Gregg Reynolds wrote: > > > > On May 18,

Re: slackpocalypse?

2017-05-18 Thread Gregg Reynolds
lliams <kennyjwi...@gmail.com> wrote: > I am not able to connect via the web UI or Slack app either. > > > On Thursday, May 18, 2017 at 1:15:17 PM UTC-7, Gregg Reynolds wrote: >> >> is it just me? i've been unable to connect to clojurians (by cellphone) >> fo

Re: slackpocalypse?

2017-05-18 Thread Gregg Reynolds
On May 18, 2017 3:17 PM, "Kenny Williams" <kennyjwi...@gmail.com> wrote: I am not able to connect via the web UI or Slack app either. slack = bitkeeper? i wonder if linus torvalds is busy. On Thursday, May 18, 2017 at 1:15:17 PM UTC-7, Gregg Reynolds wrote: > > is

slackpocalypse?

2017-05-18 Thread Gregg Reynolds
is it just me? i've been unable to connect to clojurians (by cellphone) for about 30 minutes, but i can connect to other slack groups. have we hit https://github.com/clojurians/clojurians-chat/wiki/Slackpocalypse? we're almost to 10K subscribers. g -- You received this message because you are

Re: clojure/script iot

2017-04-26 Thread Gregg Reynolds
On Apr 26, 2017 2:05 PM, "Gregg Reynolds" <d...@mobileink.com> wrote: just came across this, which may be of interest to clojurians interested in iot: https://www.zephyrproject.org/community/blog/introducing- javascript-runtime-zephyr-os builds on http://jerryscript.net w

clojure/script iot

2017-04-26 Thread Gregg Reynolds
just came across this, which may be of interest to clojurians interested in iot: https://www.zephyrproject.org/community/blog/introducing-javascript-runtime-zephyr-os builds on http://jerryscript.net where there is js there is cljs. how nice! haven't found time yet to try either; anybody

Re: Clojure resume tips?

2017-04-18 Thread Gregg Reynolds
On Apr 18, 2017 2:16 PM, "Jason Basanese" wrote: Thanks, I have been told this before. After hearing it a couple more times I am taking it much closer to heart. also check-out #jobs-discuss on the clojurians slack thing. this kind of question would be welcome there,

Re: was Re: ANN: Orchestra, complete instrumentation for clojure.spec

2017-04-08 Thread Gregg Reynolds
On Apr 8, 2017 3:47 PM, "Gregg Reynolds" <d...@mobileink.com> wrote: On Apr 7, 2017 9:57 PM, "Didier" <didi...@gmail.com> wrote: | I think you missed my point, which is only "Spec is great as we have the power of Clojure" - sure, just don't for

Re: was Re: ANN: Orchestra, complete instrumentation for clojure.spec

2017-04-08 Thread Gregg Reynolds
On Apr 7, 2017 9:57 PM, "Didier" wrote: | I think you missed my point, which is only "Spec is great as we have the power of Clojure" - sure, just don't forget you have the power of ANOther language in that language as well. Hum, I've probably missed your point sorry, I'm

Re: was Re: ANN: Orchestra, complete instrumentation for clojure.spec

2017-04-07 Thread Gregg Reynolds
On Apr 6, 2017 3:47 PM, "Raoul Duke" wrote: I am writing to ignorantly sincerely ask how spec + Orchestra compares to other statically typed out of the box JVM languages. What are the succint wins over not Scala shudder but eg Kotlin Ceylon, heck Frege, et. al.? i could be

Re: was Re: ANN: Orchestra, complete instrumentation for clojure.spec

2017-04-07 Thread Gregg Reynolds
On Apr 7, 2017 12:07 AM, "Didier" wrote: Types are not very precise though, like it will catch 10/"123", but not 10/0, because the type isn't more precise then int. no, this will, or at least should, be caught. 10/0 is not an int, and typed "/' would reject 0 as an

Re: [ANN] New Clojure story pages on clojure.org

2017-04-06 Thread Gregg Reynolds
On Apr 6, 2017 2:17 PM, "Luke Burton" <luke_bur...@me.com> wrote: On Apr 6, 2017, at 12:12 PM, Gregg Reynolds <d...@mobileink.com> wrote: On Apr 6, 2017 2:10 PM, "Gregg Reynolds" <d...@mobileink.com> wrote: On Apr 6, 2017 2:08 PM, "Gregg Reynol

Re: [ANN] New Clojure story pages on clojure.org

2017-04-06 Thread Gregg Reynolds
On Apr 6, 2017 2:10 PM, "Gregg Reynolds" <d...@mobileink.com> wrote: On Apr 6, 2017 2:08 PM, "Gregg Reynolds" <d...@mobileink.com> wrote: On Apr 6, 2017 1:55 PM, "Luke Burton" <luke_bur...@me.com> wrote: Where's Azerbaijan? Seriously, this

Re: [ANN] New Clojure story pages on clojure.org

2017-04-06 Thread Gregg Reynolds
On Apr 6, 2017 2:08 PM, "Gregg Reynolds" <d...@mobileink.com> wrote: On Apr 6, 2017 1:55 PM, "Luke Burton" <luke_bur...@me.com> wrote: Where's Azerbaijan? Seriously, this was a fantastic story: https://www.youtube.com/watch?v=-zM5fDN_AHY looks great.

Re: [ANN] New Clojure story pages on clojure.org

2017-04-06 Thread Gregg Reynolds
that link i get nuttin. maybe it's my android, but when i tap the story i get a completely different video. where is this wondrous azaerbaijani thing? On Apr 6, 2017, at 11:46 AM, Gregg Reynolds <d...@mobileink.com> wrote: On Apr 6, 2017 7:12 AM, "Jon Pither" <j...@juxt.p

Re: [ANN] New Clojure story pages on clojure.org

2017-04-06 Thread Gregg Reynolds
On Apr 6, 2017 7:12 AM, "Jon Pither" wrote: We have also maintained a set of complimentary success stories here: https://juxt.pro/clojure-in.html. The more Clojure success stories the merrier! love the i18n-ism! -- You received this message because you are subscribed to the

Re: spec docs

2017-04-03 Thread Gregg Reynolds
On Mon, Apr 3, 2017 at 6:20 PM, Gregg Reynolds <d...@mobileink.com> wrote: > > > On Mon, Apr 3, 2017 at 5:38 PM, Sean Corfield <s...@corfield.org> wrote: > >> For clojure.org, the source is on GitHub, and you can submit a Pull >> Request (as lon

Re: spec docs

2017-04-03 Thread Gregg Reynolds
On Mon, Apr 3, 2017 at 5:38 PM, Sean Corfield wrote: > For clojure.org, the source is on GitHub, and you can submit a Pull > Request (as long as you have a CA on file I believe?). The clojure.spec > Guide page is: > > > >

Re: ANN: Cognitect acquired by Microsoft

2017-04-03 Thread Gregg Reynolds
April 1, 2017 at 2:00:16 PM UTC-6, Gregg Reynolds wrote: >> >> made ya look! >> > -- > 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 p

spec docs

2017-04-03 Thread Gregg Reynolds
i think the spec docs could be improved; my question is whether suggestions should go into jira. one can always write a blog post, and one does not want to pollute jira. case in point: validating maps, in particular taking some action if a map contains an unrecognized key. it might be fine to do

Re: ANN: Cognitect acquired by Microsoft

2017-04-01 Thread Gregg Reynolds
On Apr 1, 2017 3:31 PM, wrote: I was completely horrified when I saw the title. Truly a moment when the Empire wins and the Rebels are defeated. fwiw i was completely taken in by this: https://lists.w3.org/Archives/Public/semantic-web/2017Apr/.html i saw the

Re: ANN: Cognitect acquired by Microsoft

2017-04-01 Thread Gregg Reynolds
On Apr 1, 2017 3:31 PM, wrote: I was completely horrified when I saw the title. Truly a moment when the Empire wins and the Rebels are defeated. heh heh -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this

Re: ANN: Cognitect acquired by Microsoft

2017-04-01 Thread Gregg Reynolds
On Apr 1, 2017 3:08 PM, "Joe R. Smith" <j...@uwcreations.com> wrote: Beware the 1st of April. somebody had to do it. :) --- Joseph Smith j...@uwcreations.com @solussd On Apr 1, 2017, at 3:00 PM, Gregg Reynolds <d...@mobileink.com> wrote: made ya look! -- You receive

ANN: Cognitect acquired by Microsoft

2017-04-01 Thread Gregg Reynolds
made ya look! -- 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

Re: Compiling gen-class runs static initializers: workarounds, solutions?

2017-03-28 Thread Gregg Reynolds
been able to get anything that will > compile, let alone run. > > On Sunday, March 26, 2017 at 5:15:52 PM UTC-4, Gregg Reynolds wrote: >> >> >> >> On Jan 2, 2015 12:36 PM, "David James" <david...@gmail.com> wrote: >> >> I have a pro

Re: [ANN] meet postagga, a new lib for natural language processing

2017-03-27 Thread Gregg Reynolds
On Mar 13, 2017 8:24 AM, "Rafik NACCACHE" wrote: Hey guys, I am pleased to share my new lib, capable of training models that help parse natural language ! My french-speaking friends will find it extremely useful as I did some work to provide some french models! Besides,

Re: Clojure resume tips?

2017-03-26 Thread Gregg Reynolds
On Mar 23, 2017 12:10 PM, "Jason Basanese" wrote: Attached is a fairly bad resume that I am using. Any tips on how I might change it to appeal to more places that are looking for functional developers? nobody ever gets hired on the strength of their resume. at best

Re: Clojure resume tips?

2017-03-26 Thread Gregg Reynolds
On Mar 23, 2017 2:00 PM, "Mark Engelberg" wrote: On Thu, Mar 23, 2017 at 11:24 AM, Luke Burton wrote: > > * So … if I was in your position, knowing what I know now, if I couldn't > find companies that had very progressive hiring practices, I would

Re: Compiling gen-class runs static initializers: workarounds, solutions?

2017-03-26 Thread Gregg Reynolds
On Mar 26, 2017 4:15 PM, "Gregg Reynolds" <d...@mobileink.com> wrote: On Jan 2, 2015 12:36 PM, "David James" <davidcja...@gmail.com> wrote: I have a problem when compiling while using gen-class with static initializers. I use gen-class to extend a JavaFX 8 cla

  1   2   3   >