[ANN] Simple Clojure/ClojureScript IDE based on Protege and Figwheel-main

2023-12-07 Thread ru
Dear clojure users and team! I like to present a simple IDE that use an ontology editor Protege as GUI and data modeller and ClojureScript library Figwheel-main. Project page: https://github.com/rururu/pro-figwheel It has 3 short video lessons. Enjoy, Ru -- You received this message because

Re: Can't start figweel.main on other Linux-machine

2023-12-07 Thread ru
Thank you, Gary! Sorry, my inadvertency. среда, 29 ноября 2023 г. в 02:37:23 UTC+3, Gary Johnson: > ru writes: > > > I moved a working project from one Linux-machine to other. > > And that's what I got: > > > > ru@ru-sitrol:~$ cd clojure/pro-figweel/ > >

Can't start figweel.main on other Linux-machine

2023-11-28 Thread ru
I moved a working project from one Linux-machine to other. And that's what I got: ru@ru-sitrol:~$ cd clojure/pro-figweel/ ru@ru-sitrol:~/clojure/pro-figweel$ clojure -m figweel.main -b dev -r Downloading: com/bhauman/figwheel-main/0.2.6/figwheel-main-0.2.6.pom from clojars Downloading: com

Re: core.logic question

2021-09-30 Thread ru
Thanks to Tom: Mistake in "(== q 'IN-ZONE)". Must be "(l/== q 'IN-ZONE)" By the way. Can anybody recommend comprehensive documentation on core.logic and its API, with examples and so on? All I have found is sketchy and fragmentary.. суббота, 11 сентября 2021 г. в 20:15:50

core.logic question

2021-09-11 Thread ru
is in unnamed module of loader clojure.lang.DynamicClassLoader @233ae292; java.lang.Number is in module java.base of loader 'bootstrap'), compiling:(/home/ru/clojure/core.logic/../programs/corelogic/search2.clj:8:1) No any mention about numbers! Thanks in advance for the help. Sincerely,

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

2021-07-29 Thread ru
Added more new videos, including: - Strait of Magellan https://www.youtube.com/watch?v=0VbBxUmGszg - Rounding Cape Horn https://www.youtube.com/watch?v=eRwe14Fn5Ac - more https://github.com/rururu/sail-pro/blob/main/doc/vr_videos.md Enjoy, Ru пятница, 21 мая 2021 г. в 11:28:16 UTC+3, ru

Re: How to get a value of a var in Java

2021-06-18 Thread ru
Thank you, Gary, for the comprehensive answer. I have a control over Clojure side, so I decide to add special functions to get values of needed vars. Thanks to all for the help. Best regards, Ru пятница, 18 июня 2021 г. в 20:23:31 UTC+3, gary.ve...@gmail.com: > The official Clojure

Re: How to get a value of a var in Java

2021-06-18 Thread ru
var is to call .deref > on it: > > user> (def a) > #'user/a > user> (defn ab [] 1) > #'user/ab > user> (.deref (clojure.lang.RT/var "user" "a")) > 2 > user> (.deref (clojure.lang.RT/var "user" "ab")) > #function[us

Re: How to get a value of a var in Java

2021-06-18 Thread ru
Thanx Alex! Alas, with defn it works, with def - not! :( пятница, 18 июня 2021 г. в 15:31:03 UTC+3, Alex Ott: > does this answer your q: > https://stackoverflow.com/questions/2181774/calling-clojure-from-java/2182608#2182608 > > ? > > On Fri, Jun 18, 2021 at 12:53 PM ru

How to get a value of a var in Java

2021-06-18 Thread ru
it with System.out.println in Java. I tried everything, nothing works! :( Any help would be greatly appreciated. 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@googleg

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

2021-05-21 Thread ru
One more version! New feature: Nearby yachts visibility: https://www.youtube.com/watch?v=57WU1qmrENQ Enjoy, Ru понедельник, 17 мая 2021 г. в 11:45:55 UTC+3, ru: > Yet another version! > New features: > > 1. Direct java start (no need of Leiningen and CLJ) >

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 publis

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

2021-05-12 Thread 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: &g

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

2021-05-04 Thread ru
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,

[ANN] Protege(MAS + Clojure + GIS) = NatureSimulation

2019-12-24 Thread ru
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 g

Re: Can't use my macro in fuction definition

2019-10-20 Thread ru
Thank you, Marc! I will try to use your example to develop more general "instance" function. Sincerely, Ru воскресенье, 20 октября 2019 г., 15:35:48 UTC+3 пользователь mlimotte написал: > > Hey Ru, > > I'd also add that `new` is a special form, not a function. It is

Re: Can't use my macro in fuction definition

2019-10-19 Thread ru
суббота, 19 октября 2019 г., 17:15:23 UTC+3 пользователь Chris Nuernberger написал: > > Hey Ru, > > Renaming x to anything will result in roughly the same error in your > function. The problem is that your instance macro needs to know the > classname at compile time.

Re: Can't use my macro in fuction definition

2019-10-19 Thread ru
Ok, Matching Socks. On what name should I replace the variable name "x" in the function definition so that the macro like it? суббота, 19 октября 2019 г., 14:09:01 UTC+3 пользователь Matching Socks написал: > > The macro is a code generator, with which the compiler computes the actual >

Can't use my macro in fuction definition

2019-10-19 Thread ru
Dear Clojure users and team! I have defined a macros to get an instance of arbitrary Java class and tried to test it: ru@ru-iMacMint:~$ lein repl nREPL server started on port 46225 on host 127.0.0.1 - nrepl://127.0.0.1:46225 WARNING: cat already refers to: #'clojure.core/cat in namespace

Re: Strange with "clj" tool

2019-07-31 Thread ru
One time use of "clj -Sforce" solved the problem. Thanks, Alex (and others). -- cheers, Ru среда, 31 июля 2019 г., 22:12:23 UTC+3 пользователь Alex Miller написал: > > The error indicates a classpath that does not include the clojure > dependency. That shouldn't ever

Re: Strange with "clj" tool

2019-07-31 Thread ru
Thanks Alex! All paths in PATH are absolute. I did not know about Ctrl+D before :( Tnx for this. среда, 31 июля 2019 г., 14:41:36 UTC+3 пользователь Oleksandr Shulgin написал: > > On Wed, Jul 31, 2019 at 1:16 PM ru > wrote: > >> >> The tool "clj" starts nor

Re: Strange with "clj" tool

2019-07-31 Thread ru
>From the error message, we can conclude that "cojure.main" is present in all folders except this one. среда, 31 июля 2019 г., 14:16:31 UTC+3 пользователь ru написал: > > Hi, > > The tool "clj" starts normally in any folder, except in one, that I cloned &

Strange with "clj" tool

2019-07-31 Thread ru
Hi, The tool "clj" starts normally in any folder, except in one, that I cloned from github: [image: error.png] Please, explain me this behavior. Sincerely, Ru -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to th

Re: Calling Java from Clojure

2019-06-17 Thread ru
t; Yes, the whole point of this approach is to define the interface in Java > and the implementation in Clojure. > > On Jun 17, 2019, at 5:07 PM, ru > wrote: > > core.clj defines only names "getTimestamp" and "getName", but meaning of > these names defined i

Re: Calling Java from Clojure

2019-06-17 Thread ru
core.clj defines only names "getTimestamp" and "getName", but meaning of these names defined in Support.java. For example, that "getTimestamp" means result of a new java.util.Date. понедельник, 17 июня 2019 г., 23:35:30 UTC+3 пользователь Alex Miller написал: > > No, there is a bit of Java

Re: Calling Java from Clojure

2019-06-17 Thread ru
Excuse me, please, may be this is a naive question. As I understand, we want to call Clojure from Java when we want to use advantages of implementation of some functionality in Clojure. But, in this example I see implementation of the functionallity in Java. Am I right? понедельник, 10 июня

[ANN] 3D models in Simpro-scene project

2019-03-18 Thread ru
, 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,

Re: (float 0.819869321599107) = 0.81986934 ?

2018-12-15 Thread ru
Thank you all for an exhaustive explanation. Sincerely, Ru воскресенье, 16 декабря 2018 г., 3:11:56 UTC+3 пользователь Gary Fredericks написал: > > 0.81986932 is not a valid float -- the next smallest one is 0.81986930, so > the one you were given is the closest that can b

Re: (float 0.819869321599107) = 0.81986934 ?

2018-12-15 Thread ru
I have to use float in one application. I just thought that a reasonable implementation of the float function could use the rounding we were used to, that is, (float 0.819869321599107) = 0.81986932 суббота, 15 декабря 2018 г., 21:10:54 UTC+3 пользователь ru написал: > > Dear Clojure

(float 0.819869321599107) = 0.81986934 ?

2018-12-15 Thread ru
Dear Clojure users and team! Please explain me this result: Ruslans-iMac:clojure ru$ lein repl nREPL server started on port 54147 on host 127.0.0.1 - nrepl://127.0.0.1:54147 REPL-y 0.3.7, nREPL 0.2.12 Clojure 1.8.0 Java HotSpot(TM) 64-Bit Server VM 11.0.1+13-LTS Docs: (doc function

Re: Clojure integrates Cesium, Openstreetmap and OpenMap inside Protege

2018-10-30 Thread ru
site https://cesiumjs.org/demos/simpro-scene/ 3. Project page on Github https://github.com/rururu/simpro-scene Enjoy Yachting! Sincerely, Ru среда, 7 февраля 2018 г., 2:50:12 UTC+3 пользователь Alan Moore написал: > > Ru, > > You’ve done some impressive work on this and previous

[ANN] Sailing Expert System (with Clojure use)

2018-10-29 Thread ru
on Cesium site https://cesiumjs.org/demos/simpro-scene/ 3. Project page on Github https://github.com/rururu/simpro-scene Enjoy Yachting! Sincerely, Ru -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email

[ANN] Sailing Expert System (with Clojure/ClojureScript use)

2018-10-28 Thread ru
page on Cesium site https://cesiumjs.org/demos/simpro-scene/ 3. Project page on Github https://github.com/rururu/simpro-scene Enjoy Yachting! Sincerely, Ru -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email

Re: java command with deps.edn

2018-06-18 Thread ru
Thanks for the advice. I'll try to search them in Maven repos and move my own one there. Sincerely, Ru понедельник, 18 июня 2018 г., 17:48:32 UTC+3 пользователь Alex Miller написал: > > You seem to be pulling in a bunch of jars by including them directly in > the project (https://g

Re: java command with deps.edn

2018-06-18 Thread ru
My project page is https://github.com/rururu/simpro-scene. When I start as "lein run" all is well. But, when I start throught "java -jar target/simpro-scene-0.1.0-SNAPSHOT-standalone.jar" I get this error message: Ruslans-iMac:simpro-scene ru$ java -jar target/simpro-

Re: java command with deps.edn

2018-06-18 Thread ru
. What can you advice? Thanks in advance, Ru понедельник, 18 июня 2018 г., 1:38:26 UTC+3 пользователь Alex Miller написал: > > If you want to start a Clojure program with deps, you need a tool with the > ability to determine transitive deps. So you’ll need something - clj is &

java command with deps.edn

2018-06-17 Thread ru
Dear Clojure users and team! How to start clojure program with dependencies (deps.edn) without installing command line tools <https://clojure.org/guides/deps_and_cli>, leiningen, boot and so on, with only java command on command line? Thanks in advance. Sincerely, Ru -- You re

Re: Is the vector a sequence?

2018-04-20 Thread ru
Thank you, Alex and tbc++ пятница, 20 апреля 2018 г., 18:55:59 UTC+3 пользователь tbc++ написал: > > seqable? was added in Clojure 1.9 > > On Fri, Apr 20, 2018 at 9:54 AM, ru <sor...@oogis.ru > wrote: > >> user=> (seqable? [1 2]) >> >> >> Comp

Re: Is the vector a sequence?

2018-04-20 Thread ru
UTC+3 пользователь tbc++ написал: > > It's not a seq, but it's seqable. > > (seq? [1 2]) => false > (seqable? [1 2]) => true > (seq? (seq [1 2])) => true > > > > On Fri, Apr 20, 2018 at 9:33 AM, ru <sor...@oogis.ru > wrote: > >> Hi, >> >>

Is the vector a sequence?

2018-04-20 Thread ru
Hi, user=> (seq? [1 2 3 4 5]) false user=> 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 - p

Clojure integrates Cesium, Openstreetmap and OpenMap inside Protege

2018-02-06 Thread ru
cast 1: https://www.youtube.com/watch?v=cT5h79w3wR4=youtu.be <https://www.youtube.com/watch?v=cT5h79w3wR4=youtu.be>* *Screencast 2: https://www.youtube.com/watch?v=WEx2-rMCJag=youtu.be <https://www.youtube.com/watch?v=WEx2-rMCJag=youtu.be>* *Sincerely,* * Ru* -- You received this m

Re: [ANN] Integrated development environment for visual creation and simulation of spatial processes

2018-01-06 Thread ru
3. Pyongyang StPetersburg <https://youtu.be/xDyhu5_kVXE> воскресенье, 17 декабря 2017 г., 21:56:13 UTC+3 пользователь ru написал: > > Hi, > > Integrated development environment for visual creation and simulation of > spatial processes (simpro-scene) > > Homepage: https

[ANN] Integrated development environment for visual creation and simulation of spatial processes

2017-12-17 Thread ru
language Clojure for executive parts of rules and auxilliary scripts. Includes general IDE for Clojure. 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 t

[ANN] ClojureTab-1.5 plugin for Protege

2017-10-18 Thread ru
of ClojureTab project: https://github.com/rururu/r4f-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

Re: [ANN] r4f-pro: IDE for visual ontology-based, rule-based and algorithm-based software development

2017-07-13 Thread ru
Christopher! OWL is extention of RDF. --Ru четверг, 13 июля 2017 г., 21:21:59 UTC+3 пользователь Christopher Small написал: > > Are these ontologies as in RDF ontologies? > > On Monday, July 10, 2017 at 6:41:32 AM UTC-7, ru wrote: >> >> Hi, >> >> Update to

Re: [ANN] r4f-pro: IDE for visual ontology-based, rule-based and algorithm-based software development

2017-07-13 Thread ru
my opinion). So, I develop this variant of Protege. Sincerely, Ru среда, 12 июля 2017 г., 21:58:11 UTC+3 пользователь art...@signafire.com написал: > > Hey, this is pretty neat thanks for sharing. I've had to research > Ontologies for work the last few weeks, it'll hel

Re: [ANN] r4f-pro: IDE for visual ontology-based, rule-based and algorithm-based software development

2017-07-11 Thread ru
representation of all this things. It is useful for presentation, reasoning, etc. In general, people think better when visually represent subject (arguably). One use case is here: https://github.com/rururu/flights-pro Sincerely, Ru вторник, 11 июля 2017 г., 9:38:16 UTC+3 пользователь Didier написал

[ANN] r4f-pro: IDE for visual ontology-based, rule-based and algorithm-based software development

2017-07-10 Thread ru
processes*. 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 th

Re: [ANN] flights-pro, "Real" air traffic control system + flight simulator

2017-05-29 Thread ru
Hi, 1. Added GUI to control airplane dynamics of your own flights (manual and scheduled). 2. Increased visual distance of other airplanes. 3. Fixed some bugs. Regards, Ru воскресенье, 7 мая 2017 г., 16:47:01 UTC+3 пользователь ru написал: > > Hi, > > *flights-pro*, substanti

[ANN] flights-pro, "Real" air traffic control system + flight simulator

2017-05-07 Thread ru
of airports and Wikipedia articles based on Protege-3.5 knowledge representation system. 6. GUI for adjustment of scheduled flight's plan. 7. Educational screencasts. and more... Enjoy flying! Sincerely, Ru -- You received this message because you are subscribed to the Google Groups "Cl

Re: [ANN] Nightlight, an embedded editor for Clojure

2016-10-29 Thread ru
it possible to add something like that to Nightlight? Sincerely, Ru воскресенье, 9 октября 2016 г., 5:03:58 UTC+3 пользователь Zach Oakes написал: > > Just when you thought I was done with my weird obsession with making > projects that start with “night”, I went and made another. Thi

[ANN] rete4frames, v. 5.3.0 - CLIPS-like expert system shell

2016-10-20 Thread ru
;problem-solved", that can be used to empty the conflict set when it is clear that activations in it is no needed anymore. 5. IDE moved to separate repository https://github.com/rururu/r4f-pro. Enjoy! Sincerely, Ru -- You received this message because you are subscribed to the Google Gr

Re: [ANN] rete4frames, v. 5.2.5 - CLIPS-like expert system shell

2016-09-22 Thread ru
Fixed bug not loading local repository. Sorry for mistake :( Ru суббота, 17 сентября 2016 г., 20:57:48 UTC+3 пользователь ru написал: > > Hi, > > New version 5.2.5 of rete4frames CLIPS-like expert system shell is > published on https://github.com/rururu/rete4frames. > >

[ANN] rete4frames, v. 5.2.5 - CLIPS-like expert system shell

2016-09-17 Thread ru
Hi, New version 5.2.5 of rete4frames CLIPS-like expert system shell is published on https://github.com/rururu/rete4frames. News: Integrated Development Environment based on Protege-3.5 ontology editor (http://protege.stanford.edu) is added. Enjoy! Sincerely, Ru -- You received

Re: [ANN] "Real" air traffic control system + flight simulator

2016-09-07 Thread ru
News: 1. No need for Leiningen to run application. 2. Fixed crashes on landing in Cesium v.1.25 суббота, 3 сентября 2016 г., 8:39:49 UTC+3 пользователь ru написал: > > Hi, > > "Real" air traffic control system and flight simulator - client-server > ClojureScript-

[ANN] "Real" air traffic control system + flight simulator

2016-09-02 Thread ru
west versions. 3. Parameters adjusted 4. Fixed several bugs Enjoy! 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 b

Re: How I can access protected field of superclass from my generated by "gen-class" subclass?

2016-07-15 Thread ru
2016 г., 15:39:00 UTC+3 пользователь ru написал: > > How I can access protected field of superclass from my generated by > "gen-class" subclass. Explanation in API documentaion quite obscure: > > "... > :exposes {protected-field-name {:get name :set name}, .

How I can access protected field of superclass from my generated by "gen-class" subclass?

2016-07-09 Thread ru
ror messages :( Can somebody point me out working examples, please. Thanks in advance. 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

[ANN] es-boat - expert system for coastal navigation. New functionality

2016-07-04 Thread ru
Names <http://www.geonames.org/> geographical database and Wikipedia. New functionality: Expert system now connected to Wikipedia through GeoNames. Work in progress. Stay tuned. Enjoy, --ru -- You received this message because you are subscribed to the Google Groups "Clojure&

[ANN] es-boat - expert system for coastal navigation. New functionality

2016-05-17 Thread ru
es, cemetries, schools and so on, and shows them on a HUD. Work in progress. Stay tuned. Enjoy, --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 m

Re: [ANN] es-boat - an expert system for coastal navigation

2016-04-22 Thread ru
Thank you, Ivh, for finding my project! пятница, 22 апреля 2016 г., 16:57:31 UTC+3 пользователь lvh ‌ написал: > > I couldn’t find a link to your project, but I think this is it: > https://github.com/rururu/es-boat > > Looks awesome!! Thanks for showing :D > > On Apr 22,

[ANN] es-boat - an expert system for coastal navigation

2016-04-22 Thread ru
visualization, - different auxiliary Clojure and ClojureScript libraries. Work in progress. Enjoy, --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 m

cljs-ajax question

2016-04-20 Thread ru
Hi, cljs-ajax transforms vector parameter into map during transfer like this: [40.328 -68.348] -> { 0 40.328, 1 -68.348}. What does it mean and how avoid this? Thanks. Sincerely, Ru -- You received this message because you are subscribed to the Google Groups "Clojure" g

[ANN] "Real" air traffic control system + flight simulator

2016-03-22 Thread ru
ights from the cockpit. 2. You can control your aircrafts. Enjoy! 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

[ANN] "Real" air traffic control system: 3D view from the cockpit of any aircraft during flights.

2016-03-13 Thread ru
aft during flights. Enjoy! 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

Re: [ANN] "Real" air traffic control system - complex Clojure-ClojureScript example

2016-03-11 Thread ru
So far I have had no problems with it. Very good library! Simple and fast. пятница, 11 марта 2016 г., 15:44:50 UTC+3 пользователь Jason Gilman написал: > > That's really cool. Thanks for sharing. I want to do something similar > with leaflet and build integration into my REPL. Did you have any

[ANN] "Real" air traffic control system - complex Clojure-ClojureScript example

2016-03-10 Thread ru
raty (http://leafletjs.com/), 3.. *httpkit, compojure, core.async* and others Clojure libraries. This example is in the repository https://github.com/rururu/rete4flights. New functionality: You can plan your own flights and add them to the real air traffic. Enjoy! Sincerely, Ru -- You received th

[ANN] cljs-rete4f - CLIPS-like expert system shell on ClojureScript

2016-02-15 Thread ru
Hello All, ClojureScript RETE for frames engine published on (https://github.com/rururu/cljs-rete4f). It uses recently added to ClojureScript "eval" function. This is only difference with core of rete4farmes (https://github.com/rururu/rete4frames). Sincerely, Ru -- Yo

Re: No eval in ClojureScript!?

2016-02-14 Thread ru
I took a look at the Clara's code. This is excerpt from the comment of "defsession" defmacro: "..Each source is eval'ed at compile time, in Clojure (not ClojureScript.)..". So, this is a solution, but not clear ClojureScript solution :( -Ru суббота, 13 февраля 201

Re: No eval in ClojureScript!?

2016-02-14 Thread ru
Thank you Alan for very helpful information. I know about Clara but don't watch its progress attentively fore some time :( Regards, Ru суббота, 13 февраля 2016 г., 18:25:46 UTC+3 пользователь ru написал: > > Dear ClojureScript users and team! > > Without "eval" functi

No eval in ClojureScript!?

2016-02-13 Thread ru
hat sence plain old JavaScript is more LISP than ClojureScript. Am I right? May be I have mised something important in that problem? Sincerely, Ru -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to cloju

Re: No eval in ClojureScript!?

2016-02-13 Thread ru
? -Ru суббота, 13 февраля 2016 г., 18:25:46 UTC+3 пользователь ru написал: > > Dear ClojureScript users and team! > > Without "eval" function ClojureScript can't be recognized as a > full-fledged LISP. "Code as data" paradigm can't be implemented without > &q

Re: No eval in ClojureScript!?

2016-02-13 Thread ru
All we know that JIT is a Just In Time compiler and that JIT is an important part of Java compiler nowerdays. Maybe JIT ideas can be applied to ClojureScript "eval problem" solution? -Ru суббота, 13 февраля 2016 г., 18:25:46 UTC+3 пользователь ru написал: > > Dear ClojureScrip

Re: No eval in ClojureScript!?

2016-02-13 Thread ru
, is'nt it? I don't think that all those symbolic comutations can be simply programmed without eval. -Ru суббота, 13 февраля 2016 г., 18:25:46 UTC+3 пользователь ru написал: > > Dear ClojureScript users and team! > > Without "eval" function ClojureScript can't be recognized as

Re: No eval in ClojureScript!?

2016-02-13 Thread ru
That I understand. Only one more question. Can I unload ClojureScript Compiler after I done with "eval"? This scenario is suitable very well to my task. -Ru суббота, 13 февраля 2016 г., 18:25:46 UTC+3 пользователь ru написал: > > Dear ClojureScript users and team! > > W

Re: No eval in ClojureScript!?

2016-02-13 Thread ru
" on Run phase. So, I need solution how it can be done in ClojureScript. -Ru суббота, 13 февраля 2016 г., 18:25:46 UTC+3 пользователь ru написал: > > Dear ClojureScript users and team! > > Without "eval" function ClojureScript can't be recognized as a > ful

Re: No eval in ClojureScript!?

2016-02-13 Thread ru
Many thanks for the explanations. I will be experimenting to deside where to go further. -Ru суббота, 13 февраля 2016 г., 18:25:46 UTC+3 пользователь ru написал: > > Dear ClojureScript users and team! > > Without "eval" function ClojureScript can't be recognized as a >

Re: [ANN] rete4frames, v. 5.2.4 - CLIPS-like expert system shell

2016-02-07 Thread ru
Atameret, It is interesting sugession. Thank you. Initially readme was oriented on folks having experience with CLIPS, Jess and similar frameworks. I will consider to rework it. Sincerely, Ru четверг, 4 февраля 2016 г., 17:19:46 UTC+3 пользователь ru написал: > > Hi, > > New v

[ANN] rete4frames, v. 5.2.4 - CLIPS-like expert system shell

2016-02-04 Thread ru
n a separate repository https://github.com/rururu/rete4flights. Enjoy! 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 -

Re: cond->: Using of threading expression in tests?

2015-10-05 Thread ru
Thank you very much, Sean and Oliver! condas-> really awesome! пятница, 2 октября 2015 г., 17:49:28 UTC+3 пользователь ru написал: > > Hi, > > Can I use in tests threading expression of cond->, and how? > > Thanx in advance, > Ru > -- You received this mess

Re: cond->: Using of threading expression in tests?

2015-10-03 Thread ru
So am I! Sean, can you share code for condp->> too, please. пятница, 2 октября 2015 г., 17:49:28 UTC+3 пользователь ru написал: > > Hi, > > Can I use in tests threading expression of cond->, and how? > > Thanx in advance, > Ru > -- You received this m

Re: cond->: Using of threading expression in tests?

2015-10-02 Thread ru
Thank you, Colin. This works: user=> (as-> {:x 5} x1 (if (> (get x1 :x) 3) (assoc x1 :y 6) x1) (if (<= (get x1 :x) 3) (assoc x1 :y 12) x1)) {:y 6, :x 5} But without cond-> at all :( :) пятница, 2 октября 2015 г., 17:49:28 UTC+3 пользователь ru написал: > > Hi, > > C

Re: cond->: Using of threading expression in tests?

2015-10-02 Thread ru
Hi, Colin For example, (cond-> {:x 5} (> (get ??? :x) 3) (assoc :y 6)) пятница, 2 октября 2015 г., 17:49:28 UTC+3 пользователь ru написал: > > Hi, > > Can I use in tests threading expression of cond->, and how? > > Thanx in advance, > Ru > -- You

Re: cond->: Using of threading expression in tests?

2015-10-02 Thread ru
This is remarkable improvement and it shows that test is a function of the threading expression. user=> (cond-> {:x 1} #(= (:x %) 1) (assoc :y 2)) {:y 2, :x 1} also works. Thanks a lot пятница, 2 октября 2015 г., 17:49:28 UTC+3 пользователь ru написал: > > Hi, > > Can I use

cond->: Using of threading expression in tests?

2015-10-02 Thread ru
Hi, Can I use in tests threading expression of cond->, and how? Thanx in advance, 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

Re: Does function core.async/poll! work?

2015-03-23 Thread ru
[org.clojure/core.async 0.1.346.0-17112a-alpha] понедельник, 23 марта 2015 г., 17:41:32 UTC+3 пользователь ru написал: Hello all, I can not use the poll! function in core.async namespace! Getting an error message: (ns navobs.core (:require ... [clojure.core.async :as async

Re: Does function core.async/poll! work?

2015-03-23 Thread ru
Thank you, Timothy! Ok. Would you be so kind to point me what I must put in my project.clj file (:dependencies tag) to get SNAPSHOT version? понедельник, 23 марта 2015 г., 17:41:32 UTC+3 пользователь ru написал: Hello all, I can not use the poll! function in core.async namespace! Getting

Does function core.async/poll! work?

2015-03-23 Thread ru
:1) at clojure.lang.Compiler$InvokeExpr.eval(Compiler.java:3558) at clojure.lang.Compiler.compile1(Compiler.java:7226) at clojure.lang.Compiler.compile1(Compiler.java:7216) at clojure.lang.Compiler.compile(Compiler.java:7292) ... Thanx in advance. Sincerely, Ru -- You received this message

Re: Does function core.async/poll! work?

2015-03-23 Thread ru
But there is no stable core.async API Reference. I decided to include definition of pull! from github source code into my code for now, till this contradiction will be resolved. Is this OK? понедельник, 23 марта 2015 г., 17:41:32 UTC+3 пользователь ru написал: Hello all, I can not use

[ANN] rete4frames, v. 5.2.2 - CLIPS-like expert system shell

2015-02-19 Thread ru
files. 4. Added Sudoku game example (from CLIPS heritage) 5. Added Hypertension doctor's expert system example (The idea of this example was inspired by screencast of Ryan Brush on StrangeLoop 2014: (https://www.youtube.com/watch?v=Z6oVuYmRgkk)) Enjoy! Sincerely, Ru -- You received

[ANN] rete4frames, v. 5.2.0 - CLIPS-like expert system shell

2014-11-22 Thread ru
an example of an expert system for diagnoses some simple problems with a car, more conformity with the original CLIPS example. Enjoy! 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

[ANN] rete4frames, v. 5.2.1 - CLIPS-like expert system shell

2014-11-22 Thread ru
an example of an expert system for diagnoses some simple problems with a car, more conformity with the original CLIPS example. Enjoy! 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

Re: [ANN] rete4frames, v. 5.2.0 - CLIPS-like expert system shell

2014-10-13 Thread ru
Hi Shantanu, 1. I am waiting for bug reports from you, guys :) 2. Does this create some problems? -- ru суббота, 11 октября 2014 г., 20:59:43 UTC+4 пользователь ru написал: Hello all, New version 5.2.0 of rete4frames CLIPS-like expert system shell published on https://github.com/rururu

Re: [ANN] rete4frames, v. 5.2.0 - CLIPS-like expert system shell

2014-10-13 Thread ru
Hello kovasb, I recommend you to have a quick look on this 3 pages: 1. http://en.wikipedia.org/wiki/CLIPS 2. http://en.wikipedia.org/wiki/Expert_system 3. http://clipsrules.sourceforge.net/ Rete4frames allows to embed this functionallity into Clojure programs. Hope this helps. Sincerely, Ru

[ANN] rete4frames, v. 5.2.0 - CLIPS-like expert system shell

2014-10-11 Thread ru
optimizations Enjoy! 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

[ANN] rete4frames, v. 5.1.0 - CLIPS-like expert system shell

2014-08-19 Thread ru
resolution strategy (default) added optional breadth strategy. 3. Added example of classic expert system. This expert system diagnoses some simple problems with a car. Enjoy! Sincerely, Ru -- You received this message because you are subscribed to the Google Groups Clojure group. To post

Re: Best tools for profiling Clojure programs?

2014-07-03 Thread ru
, ru wrote: Hi all, What performance profiling instrument somebody can recommend for Clojure programs and corresponding documents, articles or tutorials. Thanks in advance. Sincerely, Ru -- You received this message because you are subscribed to the Google Groups Clojure group

Best tools for profiling Clojure programs?

2014-06-20 Thread ru
Hi all, What performance profiling instrument somebody can recommend for Clojure programs and corresponding documents, articles or tutorials. Thanks in advance. Sincerely, Ru -- You received this message because you are subscribed to the Google Groups Clojure group. To post to this group

[ANN] Version 4.3.1 of Rete for Frames Rule Engine (CLIPS-like Expert System Shell)

2014-06-13 Thread ru
/rete4frames 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

Re: [ANN] Clojure RETE implementation - CLIPS-like expert system shell. New version 4.3

2014-05-14 Thread ru
. It will be very appreciated if someone point out other good examples as candidates on benchmark tests. Sincerely, Ru понедельник, 12 мая 2014 г., 17:47:44 UTC+4 пользователь ru написал: New feature: added Java interface. Eclipse project example. Home: https://github.com/rururu/rete4frames Have

  1   2   >