Re: [ANN] Clojure integrates 5 frameworks to create 3D virtual sailing environment

2021-05-17 Thread ru
Yet another version! 
New features: 

1. Direct java start (no need of Leiningen and CLJ) 
2. Acquaintance with neighborhood using Wikipedia while virtually sailing

Fixed bug of one-time NMEA data recieve.

Enjoy,
  Ru

среда, 12 мая 2021 г. в 09:47:34 UTC+3, ru: 

> New version published.
> Start simplified: no need to start intermediate NMEA server and other 
> minor goodies.
> Enjoy,
>   Ru
>
> вторник, 4 мая 2021 г. в 20:00:35 UTC+3, ru: 
>
>> Dear Clojure users!
>>
>> Clojure integrates 5 frameworks to create 3D virtual sailing environment, 
>> namely:
>>
>> 1. Protege ontology editor https://protege.stanford.edu/
>> 2. Openmap GIS library http://openmap-java.org/
>> 3. Virtual Regatta popular game with VR Dashboard plugin 
>> https://www.virtualregatta.com/en/ , 
>> https://martinez58400.wixsite.com/navigationvirtuelle/vr-dashboard?lang=en
>> 4. Cesiumjs  3D geospatial visualization platform 
>> https://cesium.com/platform/cesiumjs/
>> 5. Expert system shell rete4frames for informatio processing 
>> https://github.com/rururu/rete4frames
>>
>> It includes full multiwindowed Clojure IDE for further development.
>>
>> Screencast: https://www.youtube.com/watch?v=LYRTzwEeJqw
>> Project page: https://github.com/rururu/sail-pro
>>
>> Sincerely,
>>   Ru
>>
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/clojure/2bf55473-aa01-49f3-8b8d-2bb8f1308b5an%40googlegroups.com.


Re: Library like "infix"...

2021-05-17 Thread Justin Smith
unless this is an exercise in learning clojure, why not use an existing
calculator parser? eg.
https://inst.eecs.berkeley.edu/~cs164/sp05/ta/calculator/Parser.java for a
random example found with a quick google

On Sat, May 15, 2021 at 3:23 PM Blake Watson 
wrote:

> Hello,
>
> I've got a situation where I want to allow users some modest calculation
> ability, and I've gone through various evolutions of possibilities, like
> letting them put in raw Clojure code (that I will restrict at some point),
> to (heh) using POI to let them use Excel to specify possibilities (which is
> WAY overkill), to using infix.
>
> https://github.com/rm-hull/infix
>
> This is basically what I want, only expandable. I have some reservations,
> however:
>
> 1. It's no longer maintained.
> 2. It uses the author's own homegrown parser.
> 3. The comparator operators don't seem to work.
> 4. There's no function for "I can't calculate this because I don't know
> the value of X."
>
> All of this is surmountable, of course. The question is, should I surmount
> it? Or should I just start with Instaparse and a calculator grammar. Or is
> there a third way?
>
> ===Blake===
>
> --
> 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.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/clojure/CAJAnwPmhNNKYY1yHvND5Z8pKwMnNBXqtox7DZrP%2BVwc5LJndmg%40mail.gmail.com
> 
> .
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/clojure/CAGokn9J6v_CLjZu3vc9S87rbKmUUSSZ%3DSVzweS7t7gONEQmaZw%40mail.gmail.com.


Re: Library like "infix"...

2021-05-17 Thread Blake Watson
On Mon, May 17, 2021 at 10:18 AM Justin Smith  wrote:

> unless this is an exercise in learning clojure, why not use an existing
> calculator parser? eg.
> https://inst.eecs.berkeley.edu/~cs164/sp05/ta/calculator/Parser.java for
> a random example found with a quick google
>
>
That is the question, yes. There are at least a dozen in Clojure and dozens
more in Java, which I hadn't actually thought of using. But most of them
are at about the level of what you linked, which doesn't, e.g., include
functions. I think I'd prefer to avoid using a Java based one, because I
may well have to extend it and I'd rather not have Java code in my Clojure
projects. (I don't even want Java in my Java projects!)

However, Mr. Hull has been quite responsive. I think when he marked it as
"not maintained" he really just meant "I'm not actively developing new
features." So I think it's the most promising route for now.

===Blake===

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/clojure/CAJAnwPmdrck%2BdgUsc4j8myrb86Q0Ks%3Dg7Qup05kndfqVbd6%2B2Q%40mail.gmail.com.