scraimer

2,434
Reputation
454 views

Registered User

Name scraimer
Member for 10 months
Seen 17 hours ago
Website
Location Jerusalem, Israel
Age 29
Just another coder. (Programming is fun! I'd probably do it even if it wasn't so fiscally rewarding!)
2d
comment What are the basic questions to ask a person who wants his Medium sized website done?
+1 Excellent idea!
2d
comment onClick does not work properly on p tag
Hmm... good point
2d
comment onClick does not work properly on p tag
Ooh! Much better than my suggestion!
2d
answered onClick does not work properly on p tag
Nov
24
comment What did Perl’s $* variable used to do?
@ysth: Which... means you need to know in which version the variable was discontinued in... for a variable you know nothing about... (I guess this sounds like Helen Keller's tutor complaint about trying use a dictionary to find a word's spelling :-)
Nov
24
comment What did Perl’s $* variable used to do?
Except that the documentation installed on my computer is for perl 5.10, and since $* has been discontinued by that version, the documentation no longer has it.
Nov
23
comment What did Perl’s $* variable used to do?
Thanks! (I was having trouble finding the $* using google, since that search engine ignores such keywords.)
Nov
23
revised What did Perl’s $* variable used to do?
formatting
Nov
23
asked What did Perl’s $* variable used to do?
Nov
18
answered What’s the difference between ++$i and $i++ in PHP?
Nov
18
comment Most efficient way to create and write multiple 10 KB text files?
@ApoY2K: I was assuming Richard E meant he was writing many different files. If he's writing the same files, over and over, you have an excellent point :-)
Nov
18
comment Most efficient way to create and write multiple 10 KB text files?
How slow is "slow"? Keep in mind, most work with hard-disks is much, much slower than working with memory... If we're only talking about a 3-5 millisecond delay during the writes, I'm not sure there's much to do about that...
Nov
18
comment How to check if a position in a string is empty in c#
You can't make the space-character do two things at the same time; You either have it as the "(magical) token separator" or as a character in the string. Maybe you should consider separating the columns with commas (,) ?
Nov
15
accepted Mysql Query : Where clause if Exists
Nov
12
revised I need some guidance on payment gateways
grammer, punctuation
Oct
27
accepted Am I overflowing my AVR’s flash memory with a program that’s too big?
Oct
27
revised Am I overflowing my AVR’s flash memory with a program that’s too big?
tool-chain
Oct
19
answered Am I overflowing my AVR’s flash memory with a program that’s too big?
Oct
19
comment Am I overflowing my AVR’s flash memory with a program that’s too big?
I'm using AVRDude which communicates through an Arduino that has been programmed to be an ISP programmer. AVRDude indeed checks the size of the program reports how much of the memory was used. It says there's more than 1106 bytes, and that I'm using less than 60% of the flash memory. The eeprom area is only using 2 bytes. That's it.
Oct
19
asked Am I overflowing my AVR’s flash memory with a program that’s too big?
Oct
16
awarded  Notable Question
Oct
15
revised 2nd call to Device.Reset in DirectX throws an InvalidCallException
formatting
Oct
13
comment How can I modify the Daylight Saving Time of my timezone on Windows Mobile?
Thanks! I wanted to know how to modify the DST setting myself since I live in a country (Israel) which changes the DST start/end dates once every few years. What's worse, the dates chosen aren't dates in the Gregorian-calendar format, but dates on the Hebrew calendar, so they aren't the same date on the Gregorian calendar every year.
Oct
12
revised How can I modify the Daylight Saving Time of my timezone on Windows Mobile?
added link to code
Sep
26
comment How do I abort a MATLAB m-file function from C/C++?
The call to UserAbortLongFunction doesn't block, and returns immidiatly. I'm not sure it's an M-code issue; I tried executing UserAbortLongFunction from the command-line within MATLAB while the long function was running. I also had the long function print the value of the UserAborted as part of its operation, at many points in the code. It stayed 0 until the end of the long function, long after had called UserAbortLongFunction.
Sep
24
comment How do I abort a MATLAB m-file function from C/C++?
Hmm... Good point. But you know, MATLAB does have a couple of callback functions - for reporting standard output and standard error. I just did disp('PROGRESS=33%) and that called the callback function for handling standard error. Then I just parsed those strings, and displayed the progress in the C++ GUI. But you're right - there's no proper support.
Sep
24
comment How can I modify the Daylight Saving Time of my timezone on Windows Mobile?
They are, but they are encoded in some format I was too lazy to try and reverse engineer. I just ended up using the Windows Mobile's API instead...
Sep
24
asked How do I abort a MATLAB m-file function from C/C++?
Sep
24
revised How can I modify the Daylight Saving Time of my timezone on Windows Mobile?
update: conclusion
Sep
22
answered Flash White Board
Sep
22
comment How does one make a Zip bomb?
I guess some workplaces have filtering or logging of such "dubious" sites... :-)
Sep
1
accepted Quicktime error in IE7 opening mp3, Icon with Questionmark
Aug
20
comment What non-programming books should programmers read?
+1 excellent article. I read it and bought it. It's available online at cryptonomicon.com/beginning.html. My favorite part is when OSes are being compared to cars, and Linux is compared to a Tank that is being given away for free. The customer says: "I don't know how to maintain a tank!" [But you don't know how to maintain Windows either!] "But they have staff to fix it!" [We'll come to your house and fix it for you!] "Stay away from my house, you freak!"
Aug
19
revised Embedded platform development in (!C)
typo
Aug
16
comment What is your best programmer joke?
There are programmer out there that will simply ignore concepts like hexadecimal notation, and flail blindly at the keyboard until they calm down.
Aug
16
comment What is your best programmer joke?
+1 Excellent, dripping with creepy evil :-)
Aug
11
comment Do I conserve memory in MATLAB by declaring variables global instead of passing them as arguments?
+1 and answer for coolness, for using Loren's blog, too. She's a user here! - stackoverflow.com/users/113700/loren
Aug
11
comment Why do most languages not allow binary numbers?
Well, here's a sequence: 0101. Usually, you'd read this with the most-significant-bit (MSB) on the left. That means it's 8*0+4*1+2*0+1*1 = 5, five. But what if on your computer the MSB is on the right? (The bits don't care. They are just on or off.) So we'd get: 8*1+4*0+2*1+1*0 = 10, ten. It gets even worse when you think about the order of octets in an integer. On some computers, 255 in 32 bit is "00 00 00 FF", and in others it's "FF 00 00 00".
Aug
11
comment Do I conserve memory in MATLAB by declaring variables global instead of passing them as arguments?
Your absolutely correct, but I asked the question anyway, since I was worried that this was a matter of coding style and not just memory. Oh well...
Aug
11
asked Do I conserve memory in MATLAB by declaring variables global instead of passing them as arguments?
Jul
30
comment Send commands to other command-line programs
in that case, I'd recommend using Powershell, I guess...
Jul
29
comment What is your “best friend” as a programmer?
I vaguely recall seeing one in Eclipse... or was that just revision history..?
Jul
29
answered What is your longest-held programming assumption that turned out to be incorrect?
Jul
29
comment What is your longest-held programming assumption that turned out to be incorrect?
And if you have a good estimate, it's because you've advanced to the point that such projects are trivial for you :-)
Jul
29
comment What is your longest-held programming assumption that turned out to be incorrect?
Pervert! Say that to the judge!
Jul
29
comment What is your longest-held programming assumption that turned out to be incorrect?
I think we need to make the distinction between "fewer lines" and "less code".
Jul
29
comment Send commands to other command-line programs
I think the name of the function is SendKeys, but I can't remember which object you need. Googling for "sendkeys" gets you to msdn.microsoft.com/en-us/library/… - see the examples at the end of that page.
Jul
29
revised Send commands to other command-line programs
clarify
Jul
29
revised Send commands to other command-line programs
possible ideas
Jul
29
answered Send commands to other command-line programs