Re: ClojureScript vs. Elm for Multiplayer Web Game

2015-09-20 Thread bryan
You might want to checkout the exact process of creating a 2d card game, as documented in the fabulous http://www.parens-of-the-dead.com/ series. Next, I've found core.async to be a great paradigm to interact with websockets from cljs with. I don't have a ton of experience with elm, but I know

Re: New Lisp book involving Clojure

2009-07-22 Thread Bryan Green
B On 7/22/09, rob wrote: > > FYI, The latest post on Planet Lisp discussing Nick Levine's upcoming > book "Lisp outside the Box" (to be published by O'Reilly from what I > understand) mentions it will involves some words on interaction > between CL and Clojure. http://enlivend.livejournal.com/12

Cursive Plugin java integration

2014-08-05 Thread Bryan Hoyle
Hey, y'all, I'm working on a project that's 99% java at the moment, and I'm trying to convert bits of it to clojure, one step at a time, but, a problem I seem to be running into is that the IDE doesn't seem to recognize (:gen-class) directives from the java side. Maven compiles it fine, so the

Re: Cursive Plugin java integration

2014-08-06 Thread Bryan Hoyle
Darn, that's a shame. Thanks for the info and thanks for all the work on the project so far. On Wednesday, August 6, 2014 4:29:34 AM UTC-4, Colin Fleming wrote: > > Hi Bryan, > > Unfortunately this is a known issue right now, not all classes generated > from Clojure form

Re: Reagent template routing

2016-06-16 Thread Bryan Maass
I'm not sure of this exact answer here, but I'd reccomend asking on the Clojurians Slack, in the #reagent channel. It's a great way to access the community. On Thursday, June 16, 2016 at 6:36:24 AM UTC+10, Joakim Mohn wrote: > > The reagent template uses compojure server sider routing and > sec

Re: Instarepl in REPL

2016-08-15 Thread Bryan Maass
If you use CIDER, cider-enlighten-mode will show you something similar to that. Without cider-enlighten-mode: https://fetchh--captured.s3.amazonaws.com/2016-08-16_162853.png with it: https://fetchh--captured.s3.amazonaws.com/2016-08-16_162832.png and a gif comparing the 2: https://fetchh--cap

[ANN] Tracks 0.1.7 has been released.

2016-11-14 Thread Bryan Maass
Hello, Tracks is an attempt to simplify the excellent destructuring syntax in our beloved Clojure(script). https://github.com/escherize/tracks It focuses on using (and documenting) the shape of data to destructure. Please check out the readme! :) Cheers, Bryan -- You received this message

Re: [ANN] Hiccup 2.0.0-alpha1

2017-01-15 Thread Bryan Maass
Fantastic news! This may call for an update to http://hiccup.space On Sunday, January 15, 2017 at 1:17:24 PM UTC+11, James Reeves wrote: > > I'd like to tentatively announce the first alpha version of Hiccup 2.0.0. > > This release introduces automatically escaping of strings, which has been > a

Re: Function behaving differently in web app route

2015-07-31 Thread Bryan Maass
If it were me, I'd put something like: (def add-link* [my_id fname surname day2 month2 year2 hour2 min2 zone2]) inside the function that handles the route, hit the endpoint as you would, and check that add-link* is receiving the arguments you expect. On Saturday, August 1, 2015 at 3:46:47 AM UT

Re: [ANN] Skyscraper 0.1.0, a library for scraping entire websites

2015-08-24 Thread Bryan Maass
Thanks DJ, I think this is a good approach for scraping hierarchical (or not) sets of webpages and boiling them down to maps. On Tuesday, August 25, 2015 at 7:55:36 AM UTC+10, Daniel Janus wrote: > > [Reusing the relatively new thread to publish information about new > release:] > > Skyscraper

Re: ThreatGRID/Cisco Looking for Clojure Developers

2015-10-23 Thread Bryan Maass
I can't speak to this position, but I have actually worked with Alex before. Noone asked for my opinion, but he is an amazing and impressive engineer. Working with him was one of the best parts of my previous gigs. Even though I wasn't employed on Alex's team, he would often stop by and have

Re: [ANN] modern-cljs second edition

2015-12-15 Thread Bryan Maass
Kudos on your second edition. I used the first edition back when it came out to dip my toes into the cljs universe. I've since led development on a medium-large cljs spa. I gave a skim to the first few articles and I'll be able to give more feedback since I plan to learn about boot through th

Re: [ANN] boot-new 0.4.0 -- Templates AND Generators for Boot!

2016-02-29 Thread Bryan Maass
I have some feedback. Great work! I just blogged about a pure-boot way to get started with clojurescript: ( http://escherize.com/2016/02/29/boot-with-cljs ) so of course boot-new made an appearance. On Monday, February 29, 2016 at 12:20:50 PM UTC+11, Sean Corfield wrote: > > Frank Liu wrote on

Re: ClojureScript at its best

2016-02-29 Thread Bryan Maass
This is a tiny project, but it was extremely easy to write, using cljs, reagent, and boot's live-reloading work flow: http://escherize.com/catan/ This page is generated from this file: https://gist.github.com/90416937a946d7474261 On Tuesday, March 1, 2016 at 1:54:04 PM UTC+11, Richard Eng wr

Re: ClojureScript at its best

2016-03-01 Thread Bryan Maass
Also, the Asciinema player is written in cljs. https://asciinema.org/ -- 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

Re: Clojure beginner: IF statement error!

2016-03-06 Thread Bryan Maass
Welcome to Clojure Renata! Since you're familiar with lisp but not the Clojure idioms, you may want to take a scan through the clojure style guide . -- You received this message because you are subscribed to the

Re: java interop help for beginner calling java class

2014-03-28 Thread bryan webb
Thanks the help is much appreciated  created file ocfLZWBW,java added package my.nice.lzw;   to the top of the file changed  /*     */ public class OcfLZW  to  /*     */ public class OcfLZWBW compiled ocfLZWBW.java to a class file of ocfLZWBW.class  (no errors) in eclipse added the ocfLZWBW.c

Re: Simple Network Messaging

2013-02-09 Thread Daniel Bryan
There's any number of answers to this, but when I have to do IPC between different languages I send JSON messages over ZeroMQ sockets. http://www.zeromq.org/ Pretty simple to use, implementations exist in almost all currently popular languages. On Friday, February 8, 2013 8:44:06 AM UTC+11, Jv

Re: Accessing JSON Array data in Clojure

2013-05-09 Thread Bryan Henderson
What map would be defined for the first argument with the given code? It seems like how it is set up, it is grabbing information straight from the JSON data without a map defined. The 'format-forecast' definition takes forecast as an arg so I tried it like this with no luck: *:hour-summary (core

Re: Clojurians in the midlands (UK)

2012-07-23 Thread Christian Bryan
Just started Clojure and I'm from Walsall/Black Country. I agree, its going be difficult finding fellow Clojurians around here. Christian On Monday, 23 July 2012 09:21:49 UTC+1, Colin Yates wrote: > I was musing about starting a regular meet-up, but it doesn't sound like > there are enough peo