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.
Never mistake knowledge for wisdom. One helps you make a living; the other helps you make a life.
- Sandra Carey
Function Parameter Evaluation Order
Friday, June 24, 2005 by digitalpeer
It's worth noting that parameter expressions are evaluated like everything else from right to left. Of course, this only matters when passing at least one argument expression to a function that may change the value of another argument.
#include <stdio.h>
void func(int a, int b, int c, int d)
{
printf("%d %d %d %d\n",a,b,c,d);
}
int main()
{
int x = 0;
func(++x,++x,++x,++x);
return 0;
}
Results in the following:
4 3 2 1