Mount JFFS2 Image
Saturday, October 25, 2008
Example of how to mount a JFFS2 image using mtdblock.
Clay Shirky: Institutions vs. collaboration
Monday, July 14, 2008
This is a rather interesting talk that takes some very foundational ideas from open source software development, P2P networks, and social networking and implies that these paradigms can apply to a lot more.
Measuring programming progress by lines of code is like measuring aircraft building progress by weight.
- Bill Gates
Convert to STL String
Sunday, January 9, 2005 by digitalpeer
#include <string>
#include <sstream>
template <typename T>
std::string tostr(const T& x)
{
std::ostringstream o;
o << x;
return o.str();
}
To check for an error condition on the conversion, simply do an if test on o << x;