Trying to learn the D programming language, where can I get involved in a project or where should I start? [closed] - open-source

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
So I've been reading up on the D programming language for a while, and it really seems like a cool new language to learn. My impression is that it combines the power of C with intuitive syntax and garbage collection. What more could I want? Ok...so these accounts I've been reading are probably a bit idealized.
However, I just downloaded a D compiler and am looking to learn. I feel like a great way to learn might be to just get hands on in a project. I have no idea where to start though. Where could I find some easy, small D projects (that might actually contribute something to the world)? Or if not getting hands on in something, how would you recommend learning?

what about a quick tutorial,
please check the following link:
http://www.dprogramming.com/tutorial.php

Related

What are topics needed to develop web application in scala? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
I am good in java and recently learning scala. I want to develop web application. what are the concepts of scala I need to learn?
There is really nothing specific about Scala and web apps. I would recommend starting with reading play documentation (http://www.playframework.com/documentation/2.1.1/Home) and asking specific questions about stuff you don't understand. Or reading a book on Scala.
I would also suggest to give a try to the Spray toolkit for creating RESTful web-services. It's pretty good for a java developer

Learning Construct 2 [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I am keen in learning construct 2. Which website or tutorial is to get started in working on construct 2. I am pretty keen to learn... Would really useful to many people
The best resource for construct 2 is the scirra website itself. There you can find the beginner's guide, the manual, as well as plenty of other tutorials and an active forum with a helpful community where you can ask questions.
On the Scirra Website there is also a FAQ for many functions. This Post for example is very useful:
Useful FAQ Code Examples

Open source alternative to Tableau? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I am looking for an interactive exploratory tool to embed in a commercial application.
I am looking for a commercial-friendly licensed open source alternative to the wonderful Tableau system
Take a look at Pentaho. It's built from open source parts so you should be able to reuse parts of that. There's also R, though that is really more of a statistical programming framework than an ready-to-use exploratory tool.
If you're looking for something that's as easy to use as Tableau though, I'm afraid you won't find any open source solutions.
You can build interactive exploratory visualizations in the browser with D3.

Open source libraries for generating automated summaries [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I was looking for a open source library for generating automated summaries out of few words. For ex: if two qualities are given of a person a) good thinking skills b) bad handwriting, i need to generate a sentence like "Bob has good thinking skills however needs to improve on his handwriting". I need to know if any open source library could help me achieve it even partially.
Thanks for help!
-- Mohit
You could start with MEAD. Not sure what sort of mileage you'll get with single-sentence summarization, but you may be able to do some post-processing on the output and manage it.
It would take a bit of work, but you could also construct something out of NLTK and one or more the associated databases (eg. WordNet). Python, open source.

What good tutorials you know about MySQL Stored Procedures? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
I want to write a stored procedure to increment the value of an int column by one. Looks like a very simple task, but not for someone without ANY experience with stored procedures.
To do that I looked for tutorials and code samples, and found a few, but sure there are better ones out there. Do you know any?
The ones I found:
http://dev.mysql.com/doc/refman/5.0/en/call.html (code sample)
http://www.databasejournal.com/features/mysql/print.php/3525581
http://www.mysql.com/news-and-events/newsletter/2004-01/a0000000297.html
http://www.devshed.com/c/a/MySQL/A-DIY-Approach-to-Stored-Procedures-in-MySQL/
http://www.phpbits.info/mysql-tutorial/stored-procedures-in-mysql/
http://www.kbedell.com/2009/03/02/a-simple-example-of-a-mysql-stored-procedure-that-uses-a-cursor/
It is in german but it is a good one.
http://www.tutorials.de/forum/sql-tutorials/179510-stored-procedures-mysql-5-a.html
In english I think the stuff at this place is fine. You got many different tutorials.
http://www.mysqltutorial.org/mysql-stored-procedure-tutorial.aspx
I'd recommend picking up a copy of MySQL Second Edition by Larry Ullman. He has a good overview of stored procedures. That coupled with the tutorials you've already found should give you a good start with them.