|
|
Index: Home | What Is Izumi | Misc Links | Random Thoughts | Too Much To Read | The Rant Vault | Quotes Dev: Projects | Ideas For Dev | Nerdkill | Rig | Hint
$Id: Misc Links.izu,v 1.154 2007-04-18 04:45:40 ralf Exp $
Digital Cameras Reviews:
The new Canon SD200 is really gorgious :-) (also compared to the Z2.)
More Python links:
AIM for PocketPC:
More Python links:
Update 20041214: Pydev is quite nice. What I was missing: Help > Help Contents > PyDev. Also right-click on a .py in the package explorer and use Python > Run or Python > Debug.
For Apache and web development:
Articles:
More Python links, this time with a focus on IDEs:
and finaly:
Still trying to get the Pocket PC 2002 Emulator to connect to the Internet?
The solution to have connectivity is relatively simple:
Ever tried the exit option of WWdN's Warming page?
What do you think of these questions? (same content)
I wouldn't have all the answers right. Let's see:
4 located thru MSDN, 6 I could reply as-is and 3 irrelevant questions. There's many I wouldn't actually want to know unless it was necessary for the job at hand (using the usual pattern: "Hey, Ralf, do you know how to do that? Hmm let me check MSDN... yeah sure.")
One important question is: can you work without access to technical literature? (namely MSDN for Windows dev and Google for everything.) I couldn't.
Pseudo code to reverse a string:
char * s = pointer to start of string, assumed not null int n = strlen(s); char * e = s+n-1; // end of string
while(e > s)
{
char a = *s; *s = *e; *e = a; // swap start and end
s++; e--; // go to next/prev chars
}
You can combine all this in a one-line for statement. It would look wizardry, be harder to debug and confuse the next intern that is supposed to maintain the code. I wouldn't hire someone like that. YMMV.
Sometimes you need a good laugh. And even if you don't overs provide it to you at no charge anyway:
Blog Archives:
Most recent posts
2004/11/28 - 2004/10/25
2004/10/23 - 2004/09/13
2004/09/12 - 2004/07/18
2004/07/14 - 2004/06/19
2004/06/17 - 2004/05/12
2004/05/11 - 2004/04/22
2004/04/21 - 2004/04/08
2004/04/01 - 2004/02/23
2004/02/22 - 2004/01/21
2004/01/18 - 2003/11/29
2003/11/14 - 2003/08/29
2003/07/04 - 2003/07/16
[RSS]
|
|

This work is licensed by Raphaël Moll under a Creative Commons License.
|
|
| Color Theme: | Gray | Blue | Black | Sand | Khaki | Egg | None |
|
|
|
|