Resources for how to design graph/charts well [closed] - charts

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
One of my projects needs to show users where they rank in certain calculations. I inherited the graph structure from the previous programmer and had to leave it alone while I worked on other parts of the site.
It's time to make the graphs more meaningful, so I'm looking for books/websites/etc about graphs. (Not graph theory!) Charts that convey comparisons at a glance.
Everyone suggests The Visual Display of Quantitative Information by Edward Tufte and that's spot on for what I'm looking for, so anything related to that would be great.
Naturally, personal experience about what to do or not would be helpful as well.

I found Stephen Few's book "Show Me the Numbers" very helpful.

Related

Is there Emacs version of VimGolf? [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
Does anyone know Emacs version of VimGolf? I can't find it. But there should be any site. I want to know how others use Emacs and learn more productive way. Thanks.
Is this what you're looking for?
Tim Visher has a series of videos on the subject. I guess this is most comprehensive resource you can find.
In the Irreal blog, you'll find many posts related to vimgolf in emacs, where readers post and compare their solutions.

Database Design / Examples for Tags [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 planning to create a website which will contain number of documents and each document can be tagged with one or more tags.
I am planning to use mongodb for this. So can you guys suggest me how should I design the backend in mongodb means the database design.
Also could you please suggest any example website which has such kind of functionality that I can use as reference.
Thanks in advance
A very much visible example for this would stackoverflow itself.
It has questions which have many tags.
Example:
{_id:123,link:url,subject:'test subject',desction:'test description',tags:[{name:'mongodb',desc:'mongodb'},{name:'groovy',desc:'groovy'}]}

Rule engine in perl [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 am looking out for a rule engine in perl.
Would like to know what are the features, that should be kept in mind related to the same.
Also the context is a travel domain and the business rule related to it.
Would appreciate your views on the same.
I believe your question is answered at http://www.perlmonks.org/index.pl?node_id=722668 and other places (google for Business Rule engine Perl). Some of the suggestions are:
PIE
Bricks (could not find anything beyond this one site)
VS::RuleEngine
Rule::Engine

Zend_Form as database filter [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
In mij admin i have a list of posts but this list is really really big. I want to make a send form that i can use to active an database filter (so the form gets translated to where / and / or filters). Is there some good example code that i could read or maybe a tutorial ?. Any advise ?
A nice & short previous answer on that.
The reference Matthew Weier O'Phinney's page on Zend_Form used in the Model layer
And just another one if you want
Search on goole with 'Zend_Form' and 'Model Layer' will certainly gives you some others.

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.