Groovy vs Groovy++ [closed] - groovy

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I just read some few articles about Groovy++ and seems to be a huge improvement of Groovy itself.
Does anyone know how to make use of Groovy++ in Grails and with IntelliJ? I can see the latest version of IntelliJ supports Groovy and Groovy++

Development of Groovy++ stopped a few years ago, and many of the interesting features it had were reimplemented in Groovy, including #TypeChecked and #CompileStatic.
Groovy is now a huge improvement over older versions. Each release gets faster and adds more features, and with static compilation we get near-Java performance with a far less ceremonious Java alternative.
Traits aren't really new at this point, they were added to v2.3 two years ago, but they're really getting popular and have added another big feature to the language. They're almost as powerful as AST transforms, but far easier to work with.
Groovy in Action, 2nd edition was published recently and it's huge, filling in a lot of documentation gaps. It's by far the most recent and most comprehensive Groovy reference.

Related

Groovy Notebook equivalent to IPython Notebook [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I have a lot of java components that perform data processing functions that I'd like to expose in a scripting language to analysts along the same lines of IPython.
Is there something equivalent to IPython for Groovy (or other JVM based scripting language).
Thanks.
Note I am aware of Groovy Console but as far as I know it's not comparable to IPython Notebook.
Most recently I have identified Beaker Notebooks as a close equivalent of Groovy Notebooks to IPython Notebooks. Beaker is a 'polyglot' notebook supporting multiple scripting languages including Groovy, R, Python etc. See here http://beakernotebook.com/
I think the closer version is the online groovy console
https://groovyconsole.appspot.com/
it is not 1:1 features, it would a be fairly trivial to provide the equivalent charting
perhaps integrated with ploty for exta bonus points
The offline equivalent would be http://jwork.org/ for data/scientific visualization which can be scripted in jython as well as groovy

SnapSVG Tutorial [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I just starting Working with SnapSvg plugin, But it seems the plugin very little teaching resource,
Is there any Ebook or course about SnapSVG?
look these links maybe help you
http://www.i-programmer.info/programming/javascript/6537-getting-started-with-snapsvg.html
http://snapsvg.io/docs/
Snap is quite new, so you won't see a lot of established resources. The one Mohammad links should be a good start. I've also been compiling some of the test Snap stuff I do here. It has quite a few examples that are relatively self explanatory.
Its also worth reading things on Raphael. Raphael was written by the same author, and is good for compatibility with older browsers. A lot of the examples and things like transform strings are basically the same, so in many cases you can do similar things. So if you read an ebook on Raphael, it will be quite helpful.

Open source projects in groovy? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I am a java programmer who recently took interest in groovy. I want to dabble further into the language as I enjoy programming in groovy. So, I am looking for projects to start with. I find many projects in C, C++ and java but not many in groovy.
I do not know where to start. Can you please suggest me some good open source projects in groovy, if any?
This question is probably going to get closed as overly vague or off topic, but what sort of things are you looking for?
There's Grails of course as one example of Open source projects
Or of course, you could just look at all the repositories on GitHub with Groovy as their base language...

How are command-line GUIs made? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I've always wanted to know how CL GUIs like top or nano or vi are constructed? I have a need to actually make one and am looking for a guide or tutorial on the general idea behind them.
Here is a bunch of them.
Also there is a list.
CDK
Dialog
ncurses
Newt, a widget-based toolkit
PDCurses
SMG$
Turbo Vision
You could start by reading about ncurses, it’s a very well-known library to draw on the terminal
Check out TWIN (apparently, inspired by Turbo Vision) by Massimiliano Ghilardi. More screenshots are available here. Be sure to use the GitHub version, as SourceForge repository has been unmaintained since 2002.
If you don't mind your GUI running in a JVM, take a look at Lanterna (Java and Clojure bindings).
I've also seen a post about Turbo Vision "ported" to (or rather rewritten using) C# and XAML, but haven't had a chance to examine it.

where is subsonic 2.* documentation [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
I have to get up to speed with subsonic 2.* to support an existing application. The subsonicproject website has a few walk-throughs but I was hoping to find something more complete. For instance, I don't see any mention of how to create a new record using subsonic.
Thank you,
Myron
Start here:
http://subsonicproject.com/docs/ActiveRecord
Then just go down the list:
http://subsonicproject.com/docs/Setting_up_SubSonic_2.x
http://subsonicproject.com/docs/Simple_Query_Tool
http://subsonicproject.com/docs/Command_line
The whole idea was to make it really, really simple to do things. People expect to have to read reams of docs to get into it - you don't. It's supposed to be a simple thing.
Official documentation can be found here, under the heading "SubSonic 2.2 (for .NET 2.0 and up)". However, I'm sure you have seen that it is woefully inadequate.
You may be better served by checking through Rob Conery's blog. SubSonic 2.* content starts somewhere in 2007.

Resources