Well written Perl Open Source to learn from? [closed] - perl

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
is there any well written perl open source out there (not using any kinda of framework) that i could use as sample for learning and good pratice of the perl...
I've searched around and found many things for PHP, but nothing in perl that uses no framework.
Thanks in advance.

Have you tried browsing CPAN? You can find code there doing pretty much anything, and many distributions post links to their github repositories, so you can follow along in the development process.
CPAN Ratings has reviews and rankings of a large number of releases, which helps you differentiate between good releases and bad ones, but being able to make this determination for yourself would be best, which you get through learning and experience.

Related

Is there any tool to organize development notes and ideas? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I have been searching for some tool to organize my development notes, ideas and features on diferente projects.
I saw diferente tools that did part or what I need but nome combines all.
I know I can do it, but dont have the time.
Right now I use different tools to manage:
By Project
By versions
Features
Note
requests
bugs
etc
Basic features I whould like:
Organized by project
By version
What is it ( Note, idea, feature request, bug, etc
Import/Priority
Deadline
some sort of tag to catalog it
Code-snippet, to better illustrate
Image to better illustrate
I'd like more, these whould do for now.
Does any one know of some tool that those this, or most of it ?
Thanks
We are using Jira. Jira is a bugtracker, issuetracker etc... You can combine it with many add-ons (for scrum, github functionality)

What happened to OpenRT? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I have been looking around for powerful raytracing interfaces and discovered references to OpenRT but can't seem to find it anywhere. Does it even still exist?
If it is gone, what is the most used library for raytracing that is powerful enough for realtime rendering.
My answer below is all I have managed to find.
Update
I have continued my search and only seem to find OpenRL as it supports most of what I need. However I may end up writing my own wrapper or engine that suits my needs as there seems to be no mature solution. Thanks for the suggestions.
PowerVR Wizard GPUs by Imagination Technologies have been announced recently.
"Wizard is essentially an extension of Imagination’s existing PowerVR
Series6XT Rogue designs, taking the base hardware and adding the
additional blocks necessary to do ray tracing"
Possible, and seems to be the only, solution I have found is OpenRL.

Open source Machine learning Project with Scala [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am pretty new to Scala and I think that the best way to learn a language is to learn from others. Is there any good scala open source project focusing on machine learning? Thanks a lot.
You should checkout Breeze, it has quite a few built in ML algorithms, though the documentation can be sparse, I would recommend looking at the source:
http://www.scalanlp.org/
That's not an OS project, but i just have to sugest you to watch the talk given by Christopher Severs and Vitaly Gordon on ScalaDays'13 on Machine Learning With Scala

Is there a CoffeeScript equivalent to the ruby koans? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I found several JavaScript testing frameworks with a quick Google search: Jasmine, jsUnity, JSpec, YUI Test, JsUnit, QUnit
I'm sure that this is by no means an exhaustive list.
Has anyone written CoffeeScript koans in one of these frameworks, similar to the EdgeCase ruby koans?
I really enjoyed going through them and going through the python-koans. Each exercise significantly improved my language comfort level, and I'm really hoping that similar exercises exist for CoffeeScript.
Did you try Googling "CoffeeScript Koans"? :)
https://github.com/sleepyfox/coffeescript-koans
(They're powered by Jasmine.)

Any good introductions and resources for gettext? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I'm looking into frameworks for translation, and have been considering gettext. Because it's supposedly quite good, and lots of projects use it. Now I read part of the official manual, but it sucked. I kind of have an idea how it works now, but I have no idea where to get started.
In particular my project spans C++, Lua and Javascript, so I'd love to be able to unify the i18n with a single tool, but I'm also not having luck finding gettext good support for Lua or Javascript, are they supported, has anybody used gettext with these?
Thanks.
How about this tutorial? Another example is at O'Reilly.