Block spam harvesters
כ"ח תשרי תשס"ז - October 19, 2006On my site, I have a few "special" pages who's only purpose is to ban bots that ignore robots.txt (or worse, use it as a hint for where "the good stuff" is!). Here's how I do that:
(more...)
On my site, I have a few "special" pages who's only purpose is to ban bots that ignore robots.txt (or worse, use it as a hint for where "the good stuff" is!). Here's how I do that:
(more...)
I almost never pass on requests for Tehillim, but this is a case that I suspect really needs some assistance. A newly arrived (mid June) woman in Ramat Bet Shemesh just gave birth to her first baby. Baruch Hashem, the baby was born healthy, but there were some complications during the birth, and the mother is now in a coma in bikkur cholim hospital. We just had her and her husband over for a meal about a month ago, and they're truly wonderful people who're just settling down in life (he's 30, she's 27). Please daven for Sarah Leah bat Frummit.
I hope to, be'ezras Hashem, be posting good news soon!
Quiz:
What does the following code print:
int i,j;
float k;
i = 5;
j = 2;
k = i/j;
printf("%f\n",k);
Sometimes, you'll have a scenario with two variables, and you need to use one of them based on a simple test. Rather than a long and awkward if / else statement, C allows the use of the ? : form. It is perfectly acceptable to write:
int i,j,k,l;
...
i = (j > 5? k : l)
which will set i to k if j is greater than 5, and l otherwise.
Another common use is [sf]?printf statements:
printf("The test %s\n",(status == OK) ? "passed" : "failed");
However, one can't use it to handle selective assignments. The following code is illegal:
int i,j,k;
...
((i>5) ? j : k) = 5;
This cannot be used to choose whether j or k is set to 5.
There is, however a way this can be done. Using pointer, we can select which one to deference:
*((i>5) ? &j : &k) = 5;
This will work.