User scraimer - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T03:55:07Zhttp://stackoverflow.com/feeds/user/54491http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1846944/nice-effect-widget/1846969#18469691Answer by scraimer for nice effect / widgetscraimer2009-12-04T13:33:13Z2009-12-04T13:33:13Z<p>It looks like they did it using <a href="http://mootools.net/" rel="nofollow">mootools</a>, but I think it's called a "<a href="http://demos.mootools.net/Fx.Slide" rel="nofollow">slide</a>" effect, and almost every javascript framework (prototype using <a href="http://wiki.github.com/madrobby/scriptaculous/combination-effects-demo" rel="nofollow">scriptacouls</a>, <a href="http://docs.jquery.com/UI/Effects/Slide" rel="nofollow">jQuery</a>, etc.) has support to do that effect, and similar ones.</p>
http://stackoverflow.com/questions/1791515/onclick-does-not-work-properly-on-p-tag/1791534#17915345Answer by scraimer for onClick does not work properly on p tagscraimer2009-11-24T17:12:58Z2009-11-24T17:12:58Z<p>Try replacing</p>
<pre><code>pTags[i].onClick = myFunction(pTags[i]);
</code></pre>
<p>with</p>
<pre><code>pTags[i].onClick = function() { myFunction(pTags[i]); }
</code></pre>
<p>You see, when you assign to the <code>onClick</code> of an object, you're copying the result of the expression to it. What your supposed to copy is a function to call when the <code>p</code> is clicked.</p>
<p>Instead, you're <strong>running</strong> the command <code>myFunction(pTags[i])</code>, which executes the <code>alert()</code>s, and takes the result of the function. Now, since the function doesn't return anything, the value of the expression <code>myFunction(pTags[i])</code> is undefined.</p>
<p>And you take that value, and assign it to <code>onClick</code>. So basically what you've done is:</p>
<p>For each "special" paragraph:</p>
<ol>
<li>Execute <code>alert</code></li>
<li>Assign <code>undefined</code> to the paragraph's <code>onClick</code>.</li>
</ol>
http://stackoverflow.com/questions/1782015/what-did-perls-variable-used-to-do4What did Perl's $* variable used to do?scraimer2009-11-23T09:27:28Z2009-11-23T17:14:35Z
<p>I have some code from <a href="http://www.hyllander.org/node/23" rel="nofollow">http://www.hyllander.org/node/23</a> that uses <code>$*</code> ("dollar asterisk" or "dollar star"), but my version of perl reports:</p>
<pre><code>$* is no longer supported at migrate.pl line 284.
</code></pre>
<p>Do you know what were the side-effects of doing</p>
<pre><code>$*=1
</code></pre>
<p>Did that somehow affect functions like <code>split</code> or tokenizers or regular expressions?</p>
http://stackoverflow.com/questions/1756015/whats-the-difference-between-i-and-i-in-php/1756094#17560941Answer by scraimer for What's the difference between ++$i and $i++ in PHP?scraimer2009-11-18T13:46:46Z2009-11-18T13:46:46Z<p><code>++$i</code> increments <code>$i</code>, but evaluates to the value of <code>$i+1</code>
<code>$i++</code> increments <code>$i</code>, but evaluates to the old value of <code>$i</code>.</p>
<p>Here's an example:</p>
<pre><code>$i = 10;
$a = $i++;
// Now $a is 10, and $i is 11
$i = 10;
$a = ++$i;
// Now $a is 11, and $i is 11
</code></pre>
<p>There is sometimes a slight preformance cost for using <code>$i++</code>. See, when you do something like</p>
<pre><code>$a = $i++;
</code></pre>
<p>You're really doing this:</p>
<pre><code>$temporary_variable = $i;
$i=$i+1;
$a=$temporary_variable;
</code></pre>
http://stackoverflow.com/questions/647412/i-need-some-guidance-on-payment-gateways/647428#6474284Answer by scraimer for I need some guidance on payment gateways scraimer2009-03-15T07:14:43Z2009-11-12T07:10:00Z<p>Well, decide on a payment gateway you want to work with. If you're just looking to learn about this online, I'd recommend going with PayPal's payment gateway. They really don't give good rates (they take a big bite out of the money you charge users), but they have a nice "sandbox" system which you can switch on and off, and it's free to develop with. This lets you run your system as if everything was "live": </p>
<ul>
<li>Money will get credited to your sandbox account from the fake credit cards that you create</li>
<li>Transactions will act just like the live system: you'll get confirmations and notifications just like it was real.</li>
</ul>
<p>So a good place to start for that would be <a href="https://developer.paypal.com/" rel="nofollow">PayPal's developer site</a>.</p>
<p>Oh, don't be afraid to use some other gateway - all the ones I've used have a way to test their system before it goes live. But many of them do not allow switching back to a "fake"
simulation mode after it's gone live. So adding and testing new features after you got a production system is trickier.</p>
http://stackoverflow.com/questions/1587810/am-i-overflowing-my-avrs-flash-memory-with-a-program-thats-too-big1Am I overflowing my AVR's flash memory with a program that's too big?scraimer2009-10-19T09:49:17Z2009-10-27T13:05:57Z
<p>I have a project where an ATtiny2313V is controlling a 7x5 LED matrix to display scrolling text. To display the text, I built a font which is stored in the flash with the rest of the program.</p>
<p>The whole program, including the entire font, takes up 1106 bytes. But when I load it into the chip, it doesn't seem to run; instead it just lights up a couple of the LED and that's it.</p>
<p>However, when I remove most of the font, and compile with only the letters A to J, the program is 878 bytes in size, and runs just fine.</p>
<p>Is this because of some kind of overflow of the AVR flash memory?</p>
<p>The datasheet for the ATtiny2313V says it has 2KByte of flash! How can 1106 bytes be too much?</p>
<p><strong>UPDATE</strong>: Just to be clear, the tool chain I'm using is AVR Studio (to compile the code) and then AVRDude to upload it to the micro-controller. As far as I know, AVR Studio uses a version of avr-gcc to compile the code.</p>
http://stackoverflow.com/questions/1587810/am-i-overflowing-my-avrs-flash-memory-with-a-program-thats-too-big/1591026#15910261Answer by scraimer for Am I overflowing my AVR's flash memory with a program that's too big?scraimer2009-10-19T20:41:58Z2009-10-19T20:41:58Z<p>I swear there's something magical about SO; I've been wracking my brains for weeks, trying to figure this out, and after asking the question here - I finally can see what's been staring me in the face!</p>
<p>Below is the memory usage for compiling with only the A-J letters in the font:</p>
<pre><code>AVR Memory Usage
----------------
Device: attiny2313
Program: 872 bytes (42.6% Full)
(.text + .data + .bootloader)
Data: 82 bytes (64.1% Full)
(.data + .bss + .noinit)
</code></pre>
<p>And here it is again, with the letters A-Z:</p>
<pre><code>AVR Memory Usage
----------------
Device: attiny2313
Program: 952 bytes (46.5% Full)
(.text + .data + .bootloader)
Data: 162 bytes (126.6% Full)
(.data + .bss + .noinit)
</code></pre>
<p>See the <code>126.6%</code> in the Data? Oops! I really did overflow!</p>
http://stackoverflow.com/questions/438347/2nd-call-to-device-reset-in-directx-throws-an-invalidcallexception12nd call to Device.Reset in DirectX throws an InvalidCallExceptionscraimer2009-01-13T08:43:11Z2009-10-15T06:13:24Z
<p>I've been working on a DirectX application in C#, and I noticed that when I lock the workstation, the DirectX "Device" becomes lost. After looking up the information about what to do upon when a device is lost (and when a <code>DeviceLostException</code> is thrown by <code>Device.Present</code>), I re-wrote the code to reset the <code>Device</code>. This simply meant that I made a call to <code>Device.Reset</code>.</p>
<p>Calling <code>Device.Reset</code> recovered the <code>Device</code>. No problem. But when I lost the device a second time (for example, when the computer was locked, went to sleep, or activated a screen-saver), an exception was thrown by <code>Device.Reset</code>. </p>
<p>The exception was <code>InvalidCallException</code>, which (according to the documentation) means something went wrong with the call. So I assumed it was a problem with the arguments to the function. So instead of passing the same copy of <code>PresentParams</code> that I used to create the Device, I created a new instance of PresentParams (at first using the copy constructor, and later by re-creating without it) and passed that to <code>Device.Reset</code>.</p>
<p>Doesn't work. <code>Device.Reset</code> still dies with the <code>InvalidCallException</code>. Oh, and the message of the exception? "Error in application." Not helpful.</p>
<p>Can you point me in the direction of either a solution, or some documentation about how to get more debug information out of DirectX?</p>
http://stackoverflow.com/questions/995272/how-can-i-modify-the-daylight-saving-time-of-my-timezone-on-windows-mobile0How can I modify the Daylight Saving Time of my timezone on Windows Mobile?scraimer2009-06-15T09:53:47Z2009-10-13T00:09:11Z
<p>My phone, running Windows Mobile 6, has suddenly decided to drop an hour every time I hook it up to my PC. I tried playing with the timezone settings in the Control Panel, to no avail.</p>
<p>I've come to the conclusion the heart of the problem is in the Daylight Saving configuration of my timezone.</p>
<p>I could not find any utilities to let me edit this on Windows Mobile (ala <code>tzedit</code> in Windows). I've decided to write something of my own, but I cannot find the right keywords to search for! All the variations I can think of for "Windows mobile" and "daylight savings" keep coming back to the changes made in 2007 to the U.S.A DST, and not to an API!</p>
<p>Does anyone have any suggestions which functions I should be looking for? I'd like to write this in C#, but P/Invoke should let me access the regular API stuff, I hope.</p>
<p>UPDATE: I ended up writing the application myself, using the <code>TimeZoneInformation</code> function as suggested below. Thanks!</p>
<p>Another UPDATE [about a 2 weeks later]: If you need something like this, I put the program and source code online at <a href="http://shalom.craimer.org/projects/" rel="nofollow">http://shalom.craimer.org/projects/</a>. I hope this save somebody 5 minutes or something.</p>
http://stackoverflow.com/questions/1470716/how-do-i-abort-a-matlab-m-file-function-from-c-c2How do I abort a MATLAB m-file function from C/C++?scraimer2009-09-24T09:48:39Z2009-09-25T00:27:02Z
<p>I deployed a MATLAB project into a DLL, to be called from C++, and it works just fine. Happy days.</p>
<p>But what happens when the user asks to cancel an operation?</p>
<p>I tried creating a <code>global</code> variable named <code>UserAborted</code>. I initialize it to 0 before running the long function in MATLAB. I also wrote the following two functions:</p>
<pre><code>function AbortIfUserRequested
global UserAborted
if (UserAborted == 1)
error('User Abort');
end
end
function UserAbortLongFunction
global UserAborted
UserAborted = 1;
end
</code></pre>
<p>I call upon <code>AbortIfUserRequested</code> in every iteration of the loop in my long function. I also exported <code>UserAbortLongFunction</code>.</p>
<p>I expected that pretty soon after called <code>UserAbortLongFunction</code>, the long function would reach a call to <code>AbortIfUserRequested</code>, and throw an error.</p>
<p>Instead, the long function keeps running until the end, and only <em>then</em> does the value of <code>UserAborted</code> get changed.</p>
<p>All I want to do is abort that long function when the user asks me to! Is there any way to do that?</p>
http://stackoverflow.com/questions/1459838/flash-white-board/1459911#14599110Answer by scraimer for Flash White Boardscraimer2009-09-22T12:53:38Z2009-09-22T12:53:38Z<p>You probably want to start looking <a href="http://lmgtfy.com/?q=whiteboard+flash" rel="nofollow">here</a>. Good luck!</p>
http://stackoverflow.com/questions/527499/how-much-time-and-effort-should-a-project-spend-on-backward-compatibility5How much time and effort should a project spend on backward compatibility?scraimer2009-02-09T09:15:28Z2009-08-25T02:28:10Z
<p>Given that every software project only has so many programmer-hours dedicated to it, how much would you spend on making sure the product is backward compatible with the previous versions? Actually there are several points to consider:</p>
<ul>
<li>Does the age of the software affect your decision? Will you invest less time in backward compatibility when the program is newer? </li>
<li>Is the decision based solely on the number of clients with installed copies?</li>
<li>Do you make an active effort to produce code and file formats that supports future changes?</li>
<li>When you're developing v1.0, do you try to built to make it easier for v2.0 to be backward compatible with v1.0? (Leaving "reserved" fields is an example.)</li>
<li>How do you decide that "No, we aren't going to support that anymore" on features?</li>
</ul>
http://stackoverflow.com/questions/1258761/do-i-conserve-memory-in-matlab-by-declaring-variables-global-instead-of-passing-t5Do I conserve memory in MATLAB by declaring variables global instead of passing them as arguments?scraimer2009-08-11T06:49:17Z2009-08-11T16:16:10Z
<p>I am new to MATLAB, it wasn't in the job description and I've been forced to take over for the person who wrote and maintained the code my company uses. Life's tough.</p>
<p>The guy from which I'm taking over told me that he declared all the big data vectors as <code>global</code>, to save memory. More specifically, so that when one function calls another function, he doesn't create a copy of the data when he passes it over.</p>
<p>Is this true? I read <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/index.html?/access/helpdesk/help/techdoc/matlab%5Fprog/brh72ex-25.html" rel="nofollow">Strategies for Efficient Use of Memory</a>, and it says that</p>
<blockquote>
<p>When working with large data sets, be aware that MATLAB makes a temporary copy of an input variable if the called function modifies its value. This temporarily doubles the memory required to store the array, which causes MATLAB to generate an error if sufficient memory is not available.</p>
</blockquote>
<p>It says something very similiar in <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/matlab%5Fprog/brh72ex-2.html#brh72ex-13" rel="nofollow">Memory Allocation For Array #Function Arguments</a>:</p>
<blockquote>
<p>When you pass a variable to a function, you are actually passing a reference to the data that the variable represents. As long as the input data is not modified by the function being called, the variable in the calling function and the variable in the called function point to the same location in memory. If the called function modifies the value of the input data, then MATLAB makes a copy of the original array in a new location in memory, updates that copy with the modified value, and points the input variable in the called function to this new array.</p>
</blockquote>
<p>So is it true that using <code>global</code> can be better? It seems a little sloppy to blithely declare all the large data as <code>global</code>, instead of making sure that none of the code modifies its input argument. Am I wrong? Does this really improve RAM usage?</p>
http://stackoverflow.com/questions/888224/what-is-your-longest-held-programming-assumption-that-turned-out-to-be-incorrect/1199082#11990822Answer by scraimer for What is your longest-held programming assumption that turned out to be incorrect?scraimer2009-07-29T09:39:40Z2009-07-29T09:39:40Z<p>I think I was 10 years old when someone convinced me that there will be a computer capable of running an infinite loop in under 3 seconds.</p>
http://stackoverflow.com/questions/1198771/send-commands-to-other-command-line-programs/1198793#11987930Answer by scraimer for Send commands to other command-line programsscraimer2009-07-29T08:35:56Z2009-07-29T08:42:12Z<p>I'm not 100% sure I understand what you're looking for. Here's two options:</p>
<ol>
<li><p>You have two windows, each running a batch program. Let's say they are called <code>myscript1.bat</code> and <code>myscript2.bat</code>. You want to send a set of commands from <code>myscript1.bat</code> to be executed by <code>myscript2.bat</code></p></li>
<li><p>You have a single batch script named <code>myscript.bat</code>, which executes a single program named <code>program.exe</code>. You want <code>program.exe</code> to execute some commands, or do some something.</p></li>
</ol>
<p>Are either of these what you're looking for? Here's some idea:</p>
<ol>
<li><p>Make <code>myscript1.bat</code> create a third file, <code>mycommands.bat</code>. Once <code>myscript2.bat</code> sees the file <code>mycommands.bat</code> exists, it will execute it and delete it. (Wow. Lame.)</p></li>
<li><p>Use Windows Scripting Host command (it's built in to Windows since Win2K) or Powershell (usually on most computers nowadays, if they have been updated). Either of these can send keystrokes to another program. Using those keystrokes, you can control the other program.</p></li>
</ol>
http://stackoverflow.com/questions/1198125/weird-htaccess-url-rewrite-discrepancy/1198142#11981420Answer by scraimer for Weird .htaccess url rewrite discrepancy.scraimer2009-07-29T05:07:10Z2009-07-29T05:14:18Z<p>Off the top of my head - maybe the URL <code>http://myopicvoid.org/</code> has the trailing slash removed when you make the request from certain browers? This would prevent the "/" from matching the first <code>RewriteRule</code>.</p>
http://stackoverflow.com/questions/1198094/how-to-identify-remote-machine-uniquely-in-php/1198102#11981020Answer by scraimer for how to identify remote machine uniquely in php?scraimer2009-07-29T04:51:13Z2009-07-29T04:51:13Z<p>If you are aware of the proxy server, I think that implies this is some kind of company LAN. Are you in control of the LAN? Perhaps building and installing some ActiveX plugin which sends a machine-unique ID to the server might be the solution.</p>
<p>In general, HTTP proxy servers are <strong>not</strong> required to send the IP of their client. So every request sent by a proxy looks like it came from the proxy's IP. (Although the wikipedia has some mention of custom headers some proxies send to forward the <a href="http://en.wikipedia.org/wiki/Proxy%5Fserver#Anonymizing%5Fproxy%5Fserver" rel="nofollow">client's ip</a>.)</p>
<p>It gets even worse when an HTTP proxy is itself using another HTTP proxy - the server getting the request will only get the IP of the last proxy in the chain, and there's no guarantee that the 2nd proxy is even aware that the 1st proxy wasn't a regular client!</p>
http://stackoverflow.com/questions/601465/the-webpage-you-are-viewing-is-trying-to-close-this-window-warning-in-internet-ex/601467#6014676Answer by scraimer for The webpage you are viewing is trying to close this window warning in Internet Explorerscraimer2009-03-02T06:52:12Z2009-07-23T04:27:30Z<p>It's a security feature. After all, how would you like it if some website you went to decided to close <em>your</em> browser window?</p>
<p>The most correct way to avoid this is to have opened the browser window from javascript. When you do that, the parent window is allowed to close the window without asking the user.</p>
http://stackoverflow.com/questions/796607/how-do-i-override-tostring-in-c-enums12How do I override ToString in C# enums?scraimer2009-04-28T07:21:23Z2009-07-13T20:46:24Z
<p>In the post <a href="http://stackoverflow.com/questions/479410/enum-tostring">Enum ToString</a>, a method is described to use the custom attribute <code>DescriptionAttribute</code> like this:</p>
<pre><code>Enum HowNice {
[Description("Really Nice")]
ReallyNice,
[Description("Kinda Nice")]
SortOfNice,
[Description("Not Nice At All")]
NotNice
}
</code></pre>
<p>And then, you call a function <code>GetDescription</code>, using syntax like:</p>
<pre><code>GetDescription<HowNice>(NotNice); // Returns "Not Nice At All"
</code></pre>
<p>But that doesn't really help me when I want to simply populate a ComboBox with the values of an enum, since I cannot force the ComboBox to call <code>GetDescription</code>.</p>
<p>What I want has the following requirements:</p>
<ul>
<li>Reading <code>(HowNice)myComboBox.selectedItem</code> will return the selected value as the enum value.</li>
<li>The user should see the user-friendly display strings, and not just the name of the enumeration values. So instead of seeing "<code>NotNice</code>", the user would see "<code>Not Nice At All</code>".</li>
<li>Hopefully, the solution will require minimal code changes to existing enumerations.</li>
</ul>
<p>Obviously, I could implement a new class for each <code>enum</code> that I create, and override its ToString(), but that's a lot of work for each <code>enum</code>, and I'd rather avoid that.</p>
<p>Any ideas?</p>
<p>Heck, I'll even throw in a <a href="http://stackoverflow.com/questions/795979/retrieve-a-list-of-the-most-popular-get-param-variations-for-a-given-url">hug</a> as a bounty :-)</p>
http://stackoverflow.com/questions/1103299/help-me-understand-this-brian-kernighan-quote/1103366#11033662Answer by scraimer for Help me understand this Brian Kernighan quotescraimer2009-07-09T11:50:37Z2009-07-09T11:50:37Z<p>It's simple math, yes? Let's say you're writing a application named "Thingy".</p>
<p><code>X</code> = how smart you are.<br/>
<code>S(WriteThingy)</code> = how smart you need to be to <strong>write</strong> the code for Thingy.<br/>
<code>S(DebugThingy)</code> = how smart you need to be to <strong>debug</strong> the code for Thingy.</p>
<blockquote>
<p>Debugging is twice as hard as writing
the code in the first place.</p>
</blockquote>
<p>So we get:</p>
<p><code>S(WriteThingy) = 2 * S(DebugThingy)</code></p>
<p>Given that:</p>
<blockquote>
<p>if you write the code as cleverly as possible</p>
</blockquote>
<p>We have:</p>
<p><code>X = S(WriteThingy)</code></p>
<p>Which basically means that you are no smarter than being able to write Thingy.</p>
<p>And since:</p>
<p><code>S(WriteThingy) < 2 * S(WriteThingy)</code></p>
<p>We get:</p>
<p><code>X = S(WriteThingy) < 2 * S(WriteThingy) = S(DebugThingy)</code></p>
<p>Or:</p>
<p><code>X < S(DebugThingy)</code></p>
<p>Which is basically what he said:</p>
<blockquote>
<p>you are, by definition, not smart enough to debug it.</p>
</blockquote>
http://stackoverflow.com/questions/1011439/mod-rewrite-problems-apache-with-slashes/1011695#10116950Answer by scraimer for Mod-Rewrite Problems (Apache) with / slashesscraimer2009-06-18T09:22:42Z2009-06-18T09:22:42Z<p>OK, first off, I think that the GoDaddy apache server simply has some of the options turned off. I think that if they don't have an <a href="http://httpd.apache.org/docs/2.2/mod/core.html#AllowOverride" rel="nofollow"><code>AllowOverride FileInfo</code></a> in their configuration, <code>RewriteRule</code> won't work so well, or at all.</p>
<p>Which means its surprising that the URL <code>http://www.thedomain.com/testblog</code> works at all, and gets re-written. So I guess I'm a little confused.</p>
<p>Here's an idea: Try creating a directory named <code>test</code>, and put the <code>.htaccess</code> file in there! It would look like this:</p>
<pre><code>Options FollowSymLinks
RewriteEngine on
RewriteRule ^([^/]+)$ /index.php?page=$1 [L]
</code></pre>
<p>OK, another idea: Use <code>RewriteCond</code>. Maybe you can check the request URI directly, like this:</p>
<pre><code>Options FollowSymLinks
RewriteEngine on
RewriteCond %{REQUEST_URI} ^/test/([^/]+)
RewriteRule . /index.php?page=%1 [L]
</code></pre>
<p>Last idea: maybe your browser sees the URL <code>http://www.thedomain.com/test/blog</code> and thinks it's a directory, and adds a slash? So the URL is sends is <code>http://www.thedomain.com/test/blog/</code>. In that case, the REGEX won't match unless you allow for a trailing slash:</p>
<pre><code>RewriteRule ^test/([^/.]+)/?$ /index.php?page=$1 [L]
</code></pre>
<p>Whoops. Sorry for gushing - there's just some many things that can go wrong in an HTTP request that goes through rewriting, and as many ways to try and overcome the problems :-)</p>
http://stackoverflow.com/questions/1000535/how-can-i-create-a-triangular-matrix-based-on-a-vector-in-matlab2How can I create a triangular matrix based on a vector, in MATLAB?scraimer2009-06-16T09:55:13Z2009-06-18T08:32:48Z
<p>Let's say I've got a vector like this one:</p>
<pre><code>A = [101:105]
</code></pre>
<p>Which is really:</p>
<pre><code>[ 101, 102, 103, 104, 105 ]
</code></pre>
<p>And I'd like to use only vector/matrix functions and operators to produces the matrix:</p>
<pre><code>101 102 103 104 105
102 103 104 105 0
103 104 105 0 0
104 105 0 0 0
105 0 0 0 0
</code></pre>
<p>or the following matrix:</p>
<pre><code>101 102 103 104 105
0 101 102 103 104
0 0 101 102 103
0 0 0 101 102
0 0 0 0 101
</code></pre>
<p>Any ideas anyone? </p>
<p>(I'm very much a novice in MATLAB, but I've been saddled this stuff...)</p>
http://stackoverflow.com/questions/975071/json-save-in-database-and-load-with-jquery/975225#9752251Answer by scraimer for JSON save in Database and load with JQueryscraimer2009-06-10T12:15:53Z2009-06-10T12:15:53Z<p>I'd suggest looking at what your javascript is seeing. Instead of asking jQuery to interpret the json for you, have a look at the raw data:</p>
<pre><code>function start() {
$(".start").click(function () {
$.post("load_script.php", { }, function(data){
alert(data);
}, "text");
return false;
});
}
</code></pre>
<p>For example, if part of the string gets oddly encoded because of the UTF-8, this might cause it to appear.</p>
<p>Once you've done that, if you still can't spot the problem, try this code:</p>
<pre><code>var data1, data2;
function start() {
$(".start").click(function () {
$.post("load_script.php", {src: "db" }, function(data){
data1 = data;
}, "text");
$.post("load_script.php", {src: "echo" }, function(data){
data2 = data;
}, "text");
if (data1 == data2) {
alert("data1 == data2");
}
else {
var len = data1.length < data2.length ? data1.length : data2.length;
for(i=0; i<len; ++i) {
if (data1.charAt(i) != data2.charAt(i)) {
alert("data1 first differs from data2 at character index " + i);
break;
}
}
}
return false;
});
}
</code></pre>
<p>And then change the PHP code to either return the data from the database or simply echo it, depending on the post parameters:</p>
<pre><code><?php
if ($_POST['src'] == 'db')) {
require_once('connect.php');
$ergebnis = mysql_query("SELECT text FROM cache_table ORDER BY RAND() LIMIT 1");
while($row = mysql_fetch_object($ergebnis)) {
$output = $row->text;
}
}
else {
$output = '{"247":{"0":"This is a question","1":"","2":"247","3":"0","answers":[["Answer1","960","1"],["Answer 2","962","0"],["Answer 3","961","0"],["Answer 4","963","0"]]},{"248":{"0":"This is a question","1":"","2":"247","3":"0","answers":[["Answer1","960","1"],["Answer 2","962","0"],["Answer 3","961","0"],["Answer 4","963","0"]]}}';
}
echo $output;
?>
</code></pre>
<p>Hope that helps!</p>
http://stackoverflow.com/questions/605180/what-is-the-best-trait-your-manager-can-have/605222#60522212Answer by scraimer for What is the best trait your manager can have?scraimer2009-03-03T05:39:33Z2009-06-08T09:38:37Z<p>The best managers I've had, inspired their people to believe in their own abilities (I suppose this is a type of <strong>pro-active trust</strong>.) While at the same time, they also <strong>shielded</strong> their people <strong>from office politics</strong> so they could do their job.</p>
http://stackoverflow.com/questions/821719/ho-do-i-go-about-getting-and-setting-the-input-language-of-another-application1Ho do I go about getting and setting the input language of another application?scraimer2009-05-04T19:57:09Z2009-06-04T16:39:31Z
<p>Here's the problem: I have a user with disabilities and using a specialized virtual keyboard. He doesn't have any trouble switching languages in his virtual keyboard, but it doesn't always change the input language (input keyboard?) of the currently-active application - which is exactly what he needs.</p>
<p>So is there any API calls I can do to query a window's current input keyboard? More importantly, is there a way I can externally set another window's input language?</p>
http://stackoverflow.com/questions/792474/matching-text-in-quotes-newbie/792494#7924944Answer by scraimer for matching text in quotes (newbie)scraimer2009-04-27T07:18:12Z2009-06-01T16:22:21Z<p>I think what you're looking for is <code>sed</code>... it's a <strong>s</strong>tream <strong>ed</strong>itor which will let you do replacements on a line-by-line basis.</p>
<p>As you're explaining it, the command `cat named.local | grep zone' gives you an output a little like this:</p>
<pre><code>zone "domain1.tld" {
zone "domain2.tld" {
zone "domain3.tld" {
zone "domain4.tld" {
</code></pre>
<p>I'm guessing you want the output to be something like this, since you said you need the text in double quotes:</p>
<pre><code>"domain1.tld"
"domain2.tld"
"domain3.tld"
"domain4.tld"
</code></pre>
<p>So, in reality, from each line we just want the text between the double-quotes (including the double-quotes themselves.)</p>
<p>I'm not sure you're familiar with <a href="http://www.regular-expressions.info/" rel="nofollow">Regular Expressions</a>, but they are an invaluable tool for any person writing shell scripts. For example, the regular expression <code>/.o.e/</code> would match any line where there's a word with the 2nd letter was a lower-case <code>o</code>, and the 4th was <code>e</code>. This would match string containing words like "<code>zone</code>", "<code>tone</code>", or even "<code>I am tone-deaf.</code>"</p>
<p>The trick there was to use the <code>.</code> (dot) character to mean "any letter". There's a couple of other special characters, such as <code>*</code> which means "repeat the previous character 0 or more times". Thus a regular expression like <code>a*</code> would match "<code>a</code>", "<code>aaaaaaa</code>", or an empty string: ""</p>
<p>So you can match the string inside the quotes using: <code>/".*"/</code></p>
<p>There's another thing you would know about <code>sed</code> (and by the comments, you already do!) - it allows <em>backtracking</em>. Once you've told it how to recognize a word, you can have it use that word as part of the replacement. For example, let's say that you wanted to turn this list:</p>
<pre><code>Billy "The Kid" Smith
Jimmy "The Fish" Stuart
Chuck "The Man" Norris
</code></pre>
<p>Into this list:</p>
<pre><code>The Kid
The Fish
The Man
</code></pre>
<p>First, you'd look for the string inside the quotes. We already saw that, it was <code>/".*"/</code>.</p>
<p>Next, we want to use what's inside the quotes. We can <em>group</em> it using parens: <code>/"(.*)"/</code></p>
<p>If we wanted to replace the text with the quotes with an underscore, we'd do a replace: <code>s/"(.*)"/_/</code>, and that would leave us with:</p>
<pre><code>Billy _ Smith
Jimmy _ Stuart
Chuck _ Norris
</code></pre>
<p>But we have backtracking! That'll let us recall what was inside the parens, using the symbol <code>\1</code>. So if we do now: <code>s/"(.*)"/\1/</code> we'll get:</p>
<pre><code>Billy The Kid Smith
Jimmy The Fish Stuart
Chuck The Man Norris
</code></pre>
<p>Because the quotes weren't in the parens, they weren't part of the contents of <code>\1</code>!</p>
<p>To only leave the stuff inside the double-quotes, we need to match the entire line. To do that we have <code>^</code> (which means "beginning of line"), and <code>$</code> (which means "end of line".)</p>
<p>So now if we use <code>s/^.*"(.*)".*$/\1/</code>, we'll get:</p>
<pre><code>The Kid
The Fish
The Man
</code></pre>
<p>Why? Let's read the regular expression <code>s/^.*"(.*)".*$/\1/</code> from left-to-right:</p>
<ul>
<li><code>s/</code> - Start a <strong>substitution</strong> regular expression</li>
<li><code>^</code> - Look for the beginning of the line. Start from there.</li>
<li><code>.*</code> - Keep going, reading every character, until...</li>
<li><code>"</code> - ... until you reach a double-quote.</li>
<li><code>(</code> - start a group a characters we might want to recall later when backtracking.</li>
<li><code>.*</code> - Keep going, reading every character, until...</li>
<li>')' - (pssst! close the group!)</li>
<li><code>"</code> - ... until you reach a double-quote.</li>
<li><code>.*</code> - Keep going, reading every character, until...</li>
<li><p><code>$</code> - The end of the line!</p></li>
<li><p><code>/</code> - use what's after this to replace what you matched</p></li>
<li>'\1' - paste the contents of the first group (what was in the parens) matched.</li>
<li><code>/</code> - end of regular expression</li>
</ul>
<p>In plain English: "Read the entire line, copying aside the text between the double-quotes. Then replace the entire line with the content between the double qoutes."</p>
<p>You can even add double-quote around the replacing text <code>s/^.*"(.*)".*$/"\1"/</code>, so we'll get:</p>
<pre><code>"The Kid"
"The Fish"
"The Man"
</code></pre>
<p>And that can be used by <code>sed</code> to replace the line with the content from within the quotes:</p>
<pre><code>sed -e "s/^.*\"\(.*\)\".*$/\"\1\"/"
</code></pre>
<p>(This is just shell-escaped to deal with the double-quotes and slashes and stuff.)</p>
<p>So the whole command would be something like:</p>
<pre><code>cat named.local | grep zone | sed -e "s/^.*\"\(.*\)\".*$/\"\1\"/"
</code></pre>
http://stackoverflow.com/questions/886209/how-to-exclusive-lock-mysql-database/886491#8864910Answer by scraimer for How to exclusive lock mysql database?scraimer2009-05-20T06:54:19Z2009-05-20T06:54:19Z<p>You have a couple of options, as I see it:</p>
<ul>
<li><p>Shutdown <code>mysqld</code>, the daemon that connections to be established to databases. This has the downside of preventing access to <em>all</em> the mysql databases on that computer.</p></li>
<li><p>Move the file or change the access permissions to it, so that only your user may work with it. (I have no idea if this will work.) The database files are located somewhere like <code>/var/lib/mysql</code>. Just don't forget when you're done to change them back to something that <code>mysqld</code> will be able to work with!</p></li>
</ul>
<p>Good luck!</p>
http://stackoverflow.com/questions/886144/any-tools-libraries-to-convert-ppt-and-pdf-files-to-flash-swf-on-server-side/886468#8864680Answer by scraimer for Any tools/libraries to convert ppt and pdf files to flash swf on server side?scraimer2009-05-20T06:45:16Z2009-05-20T06:45:16Z<p>Why not just use the <a href="http://www.scribd.com/developers/api?method%5Fname=docs.upload" rel="nofollow">scribd API</a> to upload your file, and embed the scribd file in your site?</p>
http://stackoverflow.com/questions/886352/max-length-on-a-textarea-in-ruby-on-rails/886457#8864572Answer by scraimer for max length on a textarea in ruby on railsscraimer2009-05-20T06:38:54Z2009-05-20T06:38:54Z<p>Just like <a href="http://stackoverflow.com/questions/886352/max-length-on-a-textarea-in-ruby-on-rails/886363#886363">Rahul</a> said, there's no <code>maxlength</code> attribute for <code>textarea</code> in HTML. Only <code>text</code> <code>input</code>'s have that. </p>
<p>The thing you need to remember, is that RoR's <code>text_area</code> function (and all of RoR's HTML-generator functions) accept any argument you'll give them. If they don't recognized the parameter, then the'll just convert it to HTML.</p>
<pre><code><%=f.text_area :data, :hellothere => "hello to you too"%>
</code></pre>
<p>Will output this HTML:</p>
<pre><code><textarea name="data" hellothere="hello to you too"></textarea>
</code></pre>
<p>I know it's hard to remember, but Ruby on Rails isn't magic, it just does a lot of things for you. The trick is to know how it does them, so you can understand why they work, and how to fix them when they don't!</p>
http://stackoverflow.com/questions/884986/best-way-to-represent-format-for-presentation-of-cells-in-a-grid/886439#8864391Answer by scraimer for Best way to represent format for presentation of cells in a grid?scraimer2009-05-20T06:31:15Z2009-05-20T06:31:15Z<p>It all depends on what you're looking for. You have to ask yourself what types of formatting you wish to apply. Here's some cases you might want to consider:</p>
<ul>
<li><p><strong>In-line formatting</strong></p>
<p>Do you want to have a cell that contains mixed formatting (e.g. "<strong>1234</strong>.<em>567</em>" shows bold, regular and italic in a single cell)?</p></li>
<li><p><strong>Multi-column</strong> based output</p>
<p>Do you want to output a value in a cell that's based on multiple cells?</p>
<pre><code>Cell1="1234"
Cell2="56"
Cell3={Cell1}.{Cell2}
---> which would output "1234.56"
</code></pre></li>
</ul>
<p>If don't need either of those things, then all you want to do is provide a single format for the entire cell. Let's divide it into the two formatting elements: <strong>transformations</strong> and <strong>visual effects</strong>:</p>
<ul>
<li><p>Formatting "1234.5678" into "1234.56" is a transformation. It has to be done by code that knows how to interpret the value as a number, and how to turn that number into the textual string of digit-characters.</p></li>
<li><p>Making a cell blue, or the text red, or bold - these are all visual transformations that are merely a set of attributes regarding the display of data in a cell. We don't care here about the type of data in the cell, since we just have to put pixels on a screen.</p></li>
</ul>
<p>So, to bottom-line this: it's all about what you want to happen. If you're producing HTML reports, then HTML & CSS are very convenient methods for describing the visual-effects formatting of the cell, since you won't have to convert it twice.</p>
<p>As far as I know, there's only a couple of standards for encoding visual-effects display, and they are similar to SGML - TeX, HTML, PostScript, etc; they all have "tags" (sometimes with "attributes") to modify the display of the content within the tag.</p>
<p>Which leaves us the transformational formatting. There were two common approaches to this. The first is procedural. You list a set of transformations you wish to do on the data to turn it into text. Nowadays, we often use substitution masks, like in your example, <code>$#,##0.00</code>, or like in <code>sprintf</code>'s <code>%.2f</code>, etc.</p>
<p>Again, just choose a formatting specifier that is the simplest to use in your environment. If you're coding in a language that accepts a certain format, then use it!</p>
http://stackoverflow.com/questions/1587810/am-i-overflowing-my-avrs-flash-memory-with-a-program-thats-too-big/1591026#1591026Comment by scraimer on Am I overflowing my AVR's flash memory with a program that's too big?scraimer2009-12-02T18:38:16Z2009-12-02T18:38:16ZYup, that's what I did; moved it to Flash. Thanks :-)http://stackoverflow.com/questions/1782015/what-did-perls-variable-used-to-doComment by scraimer on What did Perl's $* variable used to do?scraimer2009-11-28T23:32:10Z2009-11-28T23:32:10ZI feel the point of SO is to bring those two groups together. The main reason I asked the question was so that the next person who searches in Google for "perl dollar star", or "perl dollar asterisk", will get to this page, and see the answer! Isn't that wonderful?http://stackoverflow.com/questions/934769/what-are-the-basic-questions-to-ask-a-person-who-wants-his-medium-sized-website-d/937121#937121Comment by scraimer on What are the basic questions to ask a person who wants his Medium sized website done?scraimer2009-11-25T06:22:16Z2009-11-25T06:22:16Z+1 Excellent idea!http://stackoverflow.com/questions/1791515/onclick-does-not-work-properly-on-p-tag/1791534#1791534Comment by scraimer on onClick does not work properly on p tagscraimer2009-11-24T17:22:27Z2009-11-24T17:22:27ZHmm... good pointhttp://stackoverflow.com/questions/1791515/onclick-does-not-work-properly-on-p-tag/1791535#1791535Comment by scraimer on onClick does not work properly on p tagscraimer2009-11-24T17:19:14Z2009-11-24T17:19:14ZOoh! Much better than my suggestion!http://stackoverflow.com/questions/1782015/what-did-perls-variable-used-to-doComment by scraimer on What did Perl's $* variable used to do?scraimer2009-11-24T08:24:13Z2009-11-24T08:24:13Z@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 :-)http://stackoverflow.com/questions/1782015/what-did-perls-variable-used-to-do/1782045#1782045Comment by scraimer on What did Perl's $* variable used to do?scraimer2009-11-24T08:22:15Z2009-11-24T08:22:15ZExcept that the documentation installed on my computer is for perl 5.10, and since <code>$*</code> has been discontinued by that version, the documentation no longer has it.http://stackoverflow.com/questions/1782015/what-did-perls-variable-used-to-do/1782045#1782045Comment by scraimer on What did Perl's $* variable used to do?scraimer2009-11-23T09:41:53Z2009-11-23T09:41:53ZThanks! (I was having trouble finding the <code>$*</code> using google, since that search engine ignores such keywords.)http://stackoverflow.com/questions/1755953/most-efficient-way-to-create-and-write-multiple-10-kb-text-filesComment by scraimer on Most efficient way to create and write multiple 10 KB text files?scraimer2009-11-18T13:39:01Z2009-11-18T13:39:01Z@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 :-)http://stackoverflow.com/questions/1755953/most-efficient-way-to-create-and-write-multiple-10-kb-text-filesComment by scraimer on Most efficient way to create and write multiple 10 KB text files?scraimer2009-11-18T13:37:49Z2009-11-18T13:37:49ZHow 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...http://stackoverflow.com/questions/1755876/how-to-check-if-a-position-in-a-string-is-empty-in-cComment by scraimer on How to check if a position in a string is empty in c#scraimer2009-11-18T13:19:45Z2009-11-18T13:19:45ZYou 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 (,) ?http://stackoverflow.com/questions/1587810/am-i-overflowing-my-avrs-flash-memory-with-a-program-thats-too-bigComment by scraimer on Am I overflowing my AVR's flash memory with a program that's too big?scraimer2009-10-19T11:06:00Z2009-10-19T11:06:00ZI'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.http://stackoverflow.com/questions/995272/how-can-i-modify-the-daylight-saving-time-of-my-timezone-on-windows-mobile/1557609#1557609Comment by scraimer on How can I modify the Daylight Saving Time of my timezone on Windows Mobile?scraimer2009-10-13T05:22:15Z2009-10-13T05:22:15ZThanks! 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.http://stackoverflow.com/questions/1470716/how-do-i-abort-a-matlab-m-file-function-from-c-cComment by scraimer on How do I abort a MATLAB m-file function from C/C++?scraimer2009-09-26T17:30:25Z2009-09-26T17:30:25ZThe call to <code>UserAbortLongFunction</code> doesn't block, and returns immidiatly. I'm not sure it's an M-code issue; I tried executing <code>UserAbortLongFunction</code> from the command-line within MATLAB while the long function was running. I also had the long function print the value of the <code>UserAborted</code> 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 <code>UserAbortLongFunction</code>. http://stackoverflow.com/questions/1470716/how-do-i-abort-a-matlab-m-file-function-from-c-c/1470740#1470740Comment by scraimer on How do I abort a MATLAB m-file function from C/C++?scraimer2009-09-24T10:01:19Z2009-09-24T10:01:19ZHmm... Good point. But you know, MATLAB does have a couple of callback functions - for reporting standard output and standard error. I just did <code>disp('PROGRESS=33%)</code> 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.