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 love the flexibility of d3.js, but in some cases its low level api is hard to use. What are some higher level charting libraries based on d3.js? I know on rickshaw so far.
Like you I have been very impressed by D3, but found it tricky.
The best D3 charting library I've seen is NVD3.js. I've been testing it out, but not yet used it in anger.
Currently I'm working on the theory that to get the best out of D3 you need a strong understanding of JavaScript, so I'm brushing up on my JavaScript Patterns, which I'm finding very helpful.
Related
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.
Are there any code samples or papers on the subject? I have not been able to find any resources directly related to the question after a bit of research.
It appears it has. I found two papers here and here, and there are probably other. The second one was published at NAACL (a high-quality conference) and contains a bunch of relevant references.
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 11 years ago.
Can you suggest any quick and concise resources for learning SEO techniques?
Beyond John's comment - which is TRUE, here is a list I have compiled (see the rest at http://www.qnq.com.au/resources/online-seo-link-repository/)
In no particular order and with no favour:
http://www.google.com/webmasters/docs/search-engine-optimization-starter-guide.pdf
https://docs.google.com/Present?docid=dc3qhbxg_1217d9mwjwg3
http://www.bruceclay.com/web_rank.htm
http://www.websitepublisher.net/seo-guide/
http://www.highrankings.com/tentips
http://www.hobo-web.co.uk/seo/
http://sethgodin.typepad.com/seths_blog/2007/10/how-to-create-1.html
http://www.webconfs.com/15-minute-seo.php
http://www.seomoz.org/blog/the-web-developers-seo-cheat-sheet
http://www.conversationmarketing.com/2010/07/on-page-seo-cheatsheet.htm
http://www.seo-theory.com/wordpress/2008/09/22/nine-lessons-in-search-engine-optimization/
http://searchengineland.com/25-super-common-seo-mistakes-51888
http://www.seobook.com/archives/001792.shtml
http://www.seobook.com/seo-strategy
http://www.bing.com/community/blogs/webmaster/archive/2009/06/26/site-architecture-and-seo-file-page-issues-sem-101.aspx
http://www.searchenginejournal.com/bing-rankings-cheat-sheet/29847/
http://blog.vkistudios.com/index.cfm/2009/9/2/Server-Status-Codes-and-SEO
http://sixrevisions.com/content-strategy/user-friendly-seo/
http://www.youtube.com/watch?v=ecI_hCBGEIM – great 1hr long
presentation from Google
Make it through that list, and you'll be well on your way.
Remember - “Knowing is not enough; we must apply!” – Goethe
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 11 years ago.
I recently watched the "Introduction to Node.js with Ryan Dahl" video on Youtube (http://www.youtube.com/watch?v=jo_B4LTHi3I), and I really like the look of Node.js. Unfortunately, in that video, Ryan described Node.js as "very much a bleeding-edge technology" (in so many words), and that means it won't suit my purpose in looking at servers/server-side Javascript in the first place - to find a stable, well-supported, open-source technology to use for our server-side purposes.
I'm pretty sure that Node.js's "bleeding-edge" status hasn't change - at least not much - since March, but can anyone confirm this for me? How risky would it be to include Node.js in our design for a large (1000s of nodes), enterprise-wide system?
Thanks!
Aaron
In general I would say "yes", but that has not stopped some cutting edge companies from using it production. I don't know of any that are scaling (clustering) to the level you're talking about.
I would say if you're asking here, then it probably isn't for you right now.
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 11 years ago.
The Go language is a new programming language from Google. It is still in an experimental phase and I am having trouble figuring out how stable it is. What sort of projects would you risk using Go for?
As you said, it is still an experimental programming language so I would only use it for experimental projects, for now. The implementation is still young but more importantly the ecosystem around it is also not very mature. In other words you'll probably have a hard time finding frameworks and libraries to help speed up your development and may end up needing to code a lot more than if you had chosen a more mature language.
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 wondering if users that are using Kohana primarily to explain how they go from planing to deployment in Kohana. Why do you use Kohana instead of the other frameworks that you tried.
I have a base setup that I continually refine that includes all the basic stuff that I need for my projects. The cascading file system that Kohana uses makes this very simple. You can see something similar at http://github.com/synapsestudios/kohana-projecttemplate.
I converted from CI and stayed because everything felt simpler using PHP5 OOP concepts the way they should be. Plus the ORM helped me get models set up very quickly.