You mess with one of us...you mess with all of us
10/29/2005The resounding images being that of Delhi-ites pulling out people from debris and helping to carry injured on their shoulders.
We will fuck back.
Read more!
EDA, Software and Business of technology
Greek, 'loxos: slanting. To displace or remove from its proper place
da·tums A point, line, or surface used as a reference
... disruption results in new equilibria
By increasing the number of U.S. dollars in circulation, or even by credibly threatening to do so, the U.S. government can also reduce the value of a dollar in terms of goods and services..
#include <stdio.h>
#include <stdlib.h>
using namespace std;
class SSS{
public:
SSS(){
printf("Calling constructor\n");
}
};
typedef struct test{
SSS s1;
}test;
int main(){
test *t1;
t1=(test*)malloc( sizeof(test)*1);
return 0;
}
SSS s1;
#include <stdio.h>
#include <stdlib.h>
using namespace std;
class SSS{
public:
SSS(){
printf("Calling constructor\n");
}
void* operator new(size_t size, SSS* s2){ //<-- need to overload
printf("Calling operator new\n");
return (malloc(sizeof(SSS)*1));
}
private:
int n;
};
typedef struct test{
SSS s1;
}test;
int main(){
test *t1;
t1=(test*)malloc( sizeof(test)*1);
new(&t1->s1)SSS; //<---- how cool is that
return 0;
}
new(&t1->s1)SSS
There I am independant. There I am finally free!
Everything that is watched improves