User Mnebuerquo - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T00:32:12Z http://stackoverflow.com/feeds/user/5114 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1887052/how-can-i-test-a-comet-ajax-site-on-a-single-host-and-work-around-browser-simulta 0 How can I test a comet ajax site on a single host and work around browser simultaneous connection limit? Mnebuerquo 2009-12-11T10:08:33Z 2009-12-11T12:20:53Z <p>I am using the comet long-polling technique with apache, php, jquery.</p> <p>I've got a basic comet update running and it works great. I'm now attempting to build a more complex comet script, and I want a better way to debug.</p> <p>My comet scripts use $.ajax() with a long timeout, and the server side just sleeps until it either runs up to the timeout or has an event to send to the client. The comet requests go to a different subdomain than the main ajax requests.</p> <p>For normal pages I edit and test on a linux laptop. I've got apache, mysql, and php with a test database and mirror image of the site. I can edit, save, and see the changes with no upload step. For the comet stuff I've been having to upload to a server to test. This requires me to set up a few fake servers, but mostly it requires me to upload changed files for each test. I've got a mostly automatic upload script, but it's still too slow.</p> <p>The problem testing locally is the long timeout. The browser won't open another connection to the same server while the comet request is still open. I don't have a subdomain locally so I have all the requests going to the same server so they basically block each other.</p> <p>I've tried a number of things to make this work and none really do it. I tried first to change my browser setting for number of simultaneous connections. This didn't work in firefox on linux, and I didn't find anything about changing this limit on other browsers.</p> <p>I tried setting my hosts file to give me two names that map to my ip address. Then I tried configuring VirtualHost conf directives in apache, but that didn't work. I think because apache is looking for an actual dns server to tell it the hostname, not just my /etc/hosts file. Maybe I can run a local dns server to fool apache into thinking my box has two names, but that just seems like a real long way around this problem.</p> <p>So, does anyone have an idea of how to make this work on one ip address/host?</p> <p>I'm new to the comet thing, so maybe I've just got the wrong idea about something. Maybe this isn't even possible. Either way, it's time to just ask if this is already a solved problem.</p> http://stackoverflow.com/questions/1811458/php-breaking-it-down/1811483#1811483 0 Answer by Mnebuerquo for php breaking it down Mnebuerquo 2009-11-28T03:44:29Z 2009-11-28T03:44:29Z <p>At first I thought it was javascript object notation (json), but I don't think it's quite right for that either.</p> <p>(see the <code>json_encode()</code> and <code>json_decode()</code> functions in the php docs)</p> http://stackoverflow.com/questions/1694595/can-i-call-jquery-click-to-follow-an-a-link-if-i-havent-bound-an-event-handl 2 Can I call jquery click() to follow an <a> link if I haven't bound an event handler to it with bind or click already? Mnebuerquo 2009-11-07T22:02:40Z 2009-11-08T18:55:08Z <p>I have a timer in my javascript which needs to emulate clicking a link to go to another page once the time elapses. To do this I'm using jquery's click() function. I have used $().trigger() and window.location also, and I can make it work as intended with all three.</p> <p>I've observed some weird behavior with click() and I'm trying to understand what happens and why.</p> <p>I'm using Firefox for everything I describe in this question, but I am also interested in what other browsers will do with this.</p> <p>If I have not used <code>$('a').bind('click',fn)</code> or <code>$('a').click(fn)</code> to set an event handler, then calling $('a').click() seems to do nothing at all. It does not call the browser's default handler for this event, as the browser does not load the new page.</p> <p>However, if I set an event handler first, then it works as expected, even if the event handler does nothing.</p> <pre><code>$('a').click(function(){return true;}).click(); </code></pre> <p>This loads the new page as if I had clicked the a myself.</p> <p>So my question is twofold: Is this weird behavior because I'm doing something wrong somewhere? and Why does calling click() do nothing with the default behavior if I haven't created a handler of my own?</p> <p>EDIT:</p> <p>As Hoffman determined when he tried to duplicate my results, the outcome I described above doesn't actually happen. I'm not sure what caused the events I observed yesterday, but I'm certain today that it was not what I described in the question.</p> <p>So the answer is that you can't "fake" clicks in the browser and that all jquery does is call your event handler. You can still use window.location to change page, and that works fine for me.</p> http://stackoverflow.com/questions/1273189/tricky-surpress-loading-title-in-firefox-for-jsonp-polling/1617336#1617336 0 Answer by Mnebuerquo for Tricky: Surpress "Loading ..." title in Firefox for JSONP polling Mnebuerquo 2009-10-24T08:05:21Z 2009-10-24T08:05:21Z <p>If it's a long running job, maybe you can get some average run times and fake it for the user, using infrequent polling to adjust your faked percent complete.</p> <p>Say an average job takes ten minutes. You can figure what percent should be done each second on average, and fake update that amount entirely on the client side.</p> <p>Then when your thirty second timer runs out, poll the server to get the actual percent complete, and update the rate of your progress bar so the fake on the client side will finish at the new estimated finish time of the server job.</p> <p>You can do some math to find a middle ground between your average performance and the time you're currently measuring, but that depends on the variability of the time to run the job.</p> http://stackoverflow.com/questions/155291/can-html-checkboxes-be-set-to-readonly/1480542#1480542 0 Answer by Mnebuerquo for Can HTML checkboxes be set to readonly? Mnebuerquo 2009-09-26T06:05:12Z 2009-09-26T06:05:12Z <p>I've got the same problem with one of my projects. Maybe too late to help with yours, but who knows, maybe I could get a necromancer badge.</p> <p>If you need the checkbox to be submitted with the form but effectively read-only to the user, I recommend setting them to disabled and using javascript to re-enable them when the form is submitted.</p> <p>This is for two reasons. First and most important, your users benefit from seeing a visible difference between checkboxes they can change and checkboxes which are read-only. Disabled does this.</p> <p>Second reason is that the disabled state is built into the browser so you need less code to execute when the user clicks on something. This is probably more of a personal preference than anything else. You'll still need some javascript to un-disable these when submitting the form.</p> <p>It seems easier to me to use some javascript when the form is submitted to un-disable the checkboxes than to use a hidden input to carry the value.</p> http://stackoverflow.com/questions/1210486/is-there-a-reliable-way-to-determine-if-a-browser-tab-or-window-is-inactive-or-no/1210589#1210589 2 Answer by Mnebuerquo for Is there a reliable way to determine if a browser tab or window is inactive or not in focus? Mnebuerquo 2009-07-31T03:45:53Z 2009-07-31T03:45:53Z <p>There is another Stack Overflow question regarding this topic. They didn't address the tabbed browsing issue there. They do give a link which goes into some detail, although without using jquery.</p> <p><a href="http://stackoverflow.com/questions/1060008/is-there-a-way-to-detect-if-a-browser-window-is-not-currently-active">http://stackoverflow.com/questions/1060008/is-there-a-way-to-detect-if-a-browser-window-is-not-currently-active</a></p> <p>I don't think focus/blur events work with tabbed browsing in Safari at all. Some people have suggested mouse events, like mouseleave/mouseenter for this.</p> <p>I've got some UI issues like this myself, so if I discover anything I'll follow up here.</p> http://stackoverflow.com/questions/220642/language-agnostic-properly-tabbing-code-editors-for-linux/799407#799407 0 Answer by Mnebuerquo for Language-agnostic properly-tabbing code editors for Linux? Mnebuerquo 2009-04-28T19:04:26Z 2009-04-28T19:04:26Z <p>Komodo Edit by ActiveState has a linux version, and it does most of the things you describe. I've been using it 24/7 for well over a year now, and while I don't like it, I haven't found anything better on Linux. It's the reduced feature free version of their commercial product, and if it worked better I'd be tempted to buy their more-featured Komodo IDE.</p> <p>It's not real stable, at least on my system. It crashes a lot or freezes, so save often if you try it.</p> <p>I recently upgraded to version 5 from 4.2, and it was not an improvement. They broke a lot of things so I'm going to go back to 4.2. The main thing they broke which really makes me sad is the tabs for editing multiple files. In 4.2 they had the x to close in the right edge of the tab row, where its position never changed. In 5 it moved to the end of the active tab. Now you can't close multiple files without aiming the mouse for each one.</p> <p>I used Eclipse before Komodo, and Komodo 4.2 is less bad than Eclipse was a year ago.</p> <p>Really, this response isn't an endorsement of Komodo Edit. I'm really not happy with it, and I'm hoping you find a good editor with this question so I can switch too.</p> http://stackoverflow.com/questions/623808/regex-help-please/623829#623829 5 Answer by Mnebuerquo for regex help, please Mnebuerquo 2009-03-08T16:32:16Z 2009-03-08T16:46:03Z <p>The regex .* can match successfully a string of zero characters, or the nothing that occurs between adjacent characters. </p> <p>So your pattern is matching zero characters in the parens, and then matching zero characters immediately following that.</p> <p>So if your regex was <code>/f(.*)\1/</code> it would match the string "foo" between the 'f' and the first 'o'.</p> <p>You might try using <code>.+</code> instead of <code>.*</code>, as that matches one or more instead of zero or more. (Using .+ you should match the 'oo' in 'foo')</p> http://stackoverflow.com/questions/623784/how-does-one-write-the-hex-values-of-a-char-in-ascii-to-a-text-file/623843#623843 1 Answer by Mnebuerquo for How does one write the hex values of a char in ASCII to a text file? Mnebuerquo 2009-03-08T16:40:33Z 2009-03-08T16:40:33Z <p>You can also do it using something a bit more old-fashioned:</p> <pre><code>char buffer[3];//room for 2 hex digits and \0 sprintf(buffer,"%02X ",onebyte); </code></pre> http://stackoverflow.com/questions/623776/does-php-have-a-function-to-detect-the-os-its-running-on/623809#623809 0 Answer by Mnebuerquo for Does PHP have a function to detect the OS it's running on? Mnebuerquo 2009-03-08T16:25:28Z 2009-03-08T16:25:28Z <p>Probably the safest thing to do when reading is to determine the line ending character(s) from the file itself, or accept all line endings interchangeably. This protects you from harm if you copy the csv file from one machine to another with a different OS. If you read before writing, you can make your output line endings match the line endings you identified when reading.</p> <p>For CSV files, php has some library functions. Try searching php.net for fgetcsv and fputcsv. There is the auto_detect_line_endings which can be set in the php.ini, but I don't know the specifics of how it works.</p> <p>I always use the "\n" by itself on both linux and windows. I use notepad to edit them in windows and it doesn't break the endings. For my own use of csv I find that it's too much hassle to support different endings, but if it's something users have to interact with then you want to be safe rather than convenient.</p> http://stackoverflow.com/questions/573674/looking-for-actively-maintained-matrix-math-library-for-php 3 Looking for actively maintained matrix math library for php Mnebuerquo 2009-02-21T20:20:52Z 2009-02-21T20:40:59Z <p>Does anyone know where I might find a PHP matrix math library which is still actively maintained?</p> <p>I need to be able to do the basic matrix operations like reduce, transpose (including non-square matrices), invert, determinant, etc.</p> <p>This question was asked in the past, then closed with no answers. Now I need an answer to the same question. See these links to related questions:</p> <p><a href="http://stackoverflow.com/questions/428473/matrix-artihmetic-in-php">http://stackoverflow.com/questions/428473/matrix-artihmetic-in-php</a> <a href="http://stackoverflow.com/questions/435074/matrix-arithmetic-in-php-again">http://stackoverflow.com/questions/435074/matrix-arithmetic-in-php-again</a></p> <p>I was in the process of installing the pear Math_Matrix library when I saw these and realized it wouldn't help me. (Thanks Ben for putting that comment about transpose in your question.)</p> <p>I can code this stuff myself, but I would make me happier to see that there is a library for this somewhere.</p> http://stackoverflow.com/questions/269623/how-can-i-force-a-webpage-page-to-render-at-a-minimum-resolution-regardless-of-h/269875#269875 0 Answer by Mnebuerquo for How can I force a webpage page to render at a minimum resolution, regardless of how small the viewport shrinks? Mnebuerquo 2008-11-06T19:01:48Z 2008-11-06T19:01:48Z <p>It really depends on whether the floating footer needs to always be visible or if it can scroll off the bottom when the browser window is small.</p> <p>I think some javascript might be easier to manage than a css solution. Keep in mind that min-width and min-height don't work in all browsers.</p> <p>You can use jquery to make this easier. The $(window).resize( callback ) can be used to set a callback function to handle window resizing.</p> <p>I use the window dimensions as part of my resize code also. var wh = Math.max(600,$(window).height()); var ww = Math.max(800,$(window).width());</p> <p>Then I can set the size of a div in my page based on the window size. $('div#mydiv').css('width',ww); You can also set the value to auto to unset your specified value.</p> http://stackoverflow.com/questions/268682/what-is-the-best-low-tech-protocol-to-simulate-drawing-names-out-of-a-hat-and-ens/269158#269158 0 Answer by Mnebuerquo for What is the best low-tech protocol to simulate drawing names out of a hat and ensure secrecy? Mnebuerquo 2008-11-06T15:38:34Z 2008-11-06T15:38:34Z <p>You could have your computer dial each person via modem and use text-to-speech to announce their name over the line after an answer. It's sort of like the auto-dialer programs that political candidates and advertisers use to play you a message. Alternatively you could set it up so that your family calls your number and the computer answers. Then they push phone buttons to spell their name and the computer then tells them who they drew.</p> <p>That way the names can be randomly selected by a simple program, and you don't have to see/hear who gets what names.</p> <p>There is open source software that can run on linux to do this, although I have never used it. I assume there's an open source windows equivalent. </p> <p>I assume your entire family has access to telephone even if they have no email.</p> http://stackoverflow.com/questions/250189/source-control-management-of-implementation-of-an-existing-open-source-project/250240#250240 1 Answer by Mnebuerquo for Source control/management of implementation of an existing open source project. Mnebuerquo 2008-10-30T13:53:43Z 2008-10-30T13:53:43Z <p>Having two checkouts to the same directory tree won't work. If you check out your source, and try to check out the OSS project source, any directory they have in common will fail, saying it's already a working directory for a different project.</p> <p>If you can gather the css, xml, xsl etc. into a common directory, you can put those in a single directory in your own project's svn, and then check them out into a directory in the working directory of the OSS project.</p> <p><strong>~/Working => svn://samhoice/project/trunk</strong></p> <p><strong>~/Working/osscomponent => svn://osshost/project/latesttag</strong></p> <p><strong>~/working/osscomponent/config => svn://samhoice/project/trunk/config</strong></p> <p>In this structure, the osscomponent directory does not exist in samhoice's svn repository. It is added by your setup script as the working directory root of the OSS project. The config directory is not checked out from the OSS project, and doesn't exist there. The config directory is created by your setup script and the config directory is checked out there from your project repository. </p> <p>So in this directory structure you have three checkouts. There is no recursive overlap, so you have no conflicts between svn mappings on any subdirectories.</p> <p>If you need your config files to be arranged within the structure of the OSS project, add some symlinks with your makefile or config script. You can also probably do this in a post-checkout hook in your svn client.</p> <p>I use a structure like this for one of my projects, for sharing some code between two project trees. The shared stuff is in a subtree like I recommended for your config section.</p> http://stackoverflow.com/questions/230994/moving-to-office-with-a-shared-network-what-should-i-look-out-for/231048#231048 2 Answer by Mnebuerquo for Moving to office with a shared network - what should I look out for? Mnebuerquo 2008-10-23T19:13:12Z 2008-10-23T19:13:12Z <p>Consider it a hostile network if you share it with strangers.</p> <p>You can put your own section of the network behind a firewall, so the rest of the office is outside. You might have to have your own printer for that though.</p> <p>To set up such a firewall, you would have to only use one of the office network connections, and run your own network connections to your firewall machine. Typically the network ports in the wall run back to a central room where they are patched into a router or something. If you do not trust this network, you can treat it as another part of the "external" network, and run your own internal network in your office.</p> <p>Be warned though. If someone can physically get into your office, they can gain access to your computer, or use your network cable to connect a laptop and do things you would like to disallow. You might not want to store any information on your office computers, maybe use just a VNC session. Or you could use laptops and not leave them in the office. If you can physically lock your section of the office it would be a good idea.</p> <p>Never connect to servers through this network unless you are on an encrypted connection. SSH tunnels should be used for anything that isn't normally encrypted.</p> <p>There are a lot more things you can do to improve your security. Basically considering the network to be hostile, and assuming that someone is always eavesdropping would be the safest attitude.</p> http://stackoverflow.com/questions/228500/looking-for-alternatives-or-improvements-to-drop-down-lists-menus-on-websites 3 Looking for alternatives or improvements to drop down lists/menus on websites Mnebuerquo 2008-10-23T04:01:19Z 2008-10-23T05:33:17Z <p>Drop-down lists, menus and combo boxes are all very common user interface elements. Users are accustomed to seeing these elements in native applications and sometimes web apps, but there are a few problems with them. </p> <ol> <li><p>You have to aim the mouse. Some menus collapse when you mouse out, and some have submenus that you have to aim at to expand.</p></li> <li><p>You can't see the options without aiming the mouse first.</p></li> </ol> <p>These are the main things that trouble me, maybe other people notice other issues as well. I normally don't use drop-down menus at all if I can help it.</p> <p>The problem is that I sometimes want to present a long list of options in limited space. Issue 2 is a sacrifice I'm willing to make, but I'm wanting to know if anyone has any tricks to make these drop menus easier to use. Maybe someone has invented a new style of list control.</p> <p>I'm sure that if these types of controls annoy me, then they annoy users of my site more.</p> http://stackoverflow.com/questions/215942/did-any-of-the-apps-you-worked-on-had-a-famous-error-message-among-the-user-bas/217405#217405 0 Answer by Mnebuerquo for Did any of the apps you worked on had a "famous error message" among the user base? Mnebuerquo 2008-10-20T02:58:36Z 2008-10-20T02:58:36Z <p>During my undergrad Operating Systems course, we were assigned to implement some filesystem system calls for NACHOS (the OS). </p> <p>When the user program reached the limit for open file handles, the error message we wrote to the log read "Too many open files, bitch!"</p> http://stackoverflow.com/questions/173832/javascript-inputstream-and-dib/216783#216783 0 Answer by Mnebuerquo for JavaScript, inputstream and DIB? Mnebuerquo 2008-10-19T18:32:42Z 2008-10-19T18:32:42Z <p>Assuming DIB means Device Independent Bitmap...</p> <p>If the DIB is on the client side in a browser, then I don't think you can do this with just the JS in the browser. You would need some java or flash or something else, because javascript in the browser has no way to read stuff from the filesystem.</p> <p>If the DIB is on the server, you can use an ajax request to fetch it. In the callback, copy the returned data into an object where you can then manipulate the data as needed.</p> <p>Once you are done manipulating the image data, you can use a canvas or an img tag to display it.</p> <p><a href="http://developer.mozilla.org/en/Canvas_tutorial/Using_images" rel="nofollow">http://developer.mozilla.org/en/Canvas_tutorial/Using_images</a></p> <p>I hadn't tried this until I saw your question, but an img tag with a data url is pretty interesting. Using the data url in the img src doesn't work in IE, but it does in FF and Opera. IE doesn't have a canvas tag, but they do have something similar. Some smart guys at google wrote a javascript library to enable the canvas tag in IE by translating into something IE understands.</p> <p><a href="http://code.google.com/p/explorercanvas/" rel="nofollow">http://code.google.com/p/explorercanvas/</a></p> <p>I hope this helps. If not, maybe it is at least interesting.</p> http://stackoverflow.com/questions/209029/best-way-to-remove-an-event-handler-in-jquery/209079#209079 2 Answer by Mnebuerquo for best way to remove an event handler in jquery? Mnebuerquo 2008-10-16T15:35:09Z 2008-10-16T15:35:09Z <p>This can be done by using the unbind function. </p> <p>$('#myimage').unbind('click');</p> <p>You can add multiple event handlers to the same object and event in jquery. This means adding a new one doesn't replace the old ones.</p> <p>There are several strategies for changing event handlers, such as event namespaces. There are some pages about this in the online docs. </p> <p>Look at this question (that's how I learned of unbind). There is some useful description of these strategies in the answers.</p> <p><a href="http://stackoverflow.com/questions/48931/how-to-read-bound-hover-callback-functions-in-jquery">http://stackoverflow.com/questions/48931/how-to-read-bound-hover-callback-functions-in-jquery</a></p> http://stackoverflow.com/questions/208871/how-much-time-and-effort-do-you-spend-on-ie6/209025#209025 1 Answer by Mnebuerquo for How much time and effort do you spend on IE6? Mnebuerquo 2008-10-16T15:27:48Z 2008-10-16T15:27:48Z <p>I don't like it but I still support it. For small sites it isn't a problem, just make stuff work in Firefox first, then IE7, and IE6 last. I've used IE6-only css a number of times, and those only had a few rules in them.</p> <p>For a larger project with complex layouts, I have wasted a lot of time on IE6. I'd be very happy to drop it entirely if it was impossible to provide one of my major features on it. So far, it's close enough that I'm still supporting it.</p> <p>According to what I read online, about 1/4 people still use it, so it's probably not wise to drop support. <a href="http://www.w3schools.com/browsers/browsers_stats.asp" rel="nofollow">http://www.w3schools.com/browsers/browsers_stats.asp</a></p> <p>Use your own judgement, based on your application and what you think you can expect from your users. I do not believe that a typical web user will upgrade/switch their browser just for one site. I think those people who have not upgraded from IE6 by now will never be motivated to do so. The number of IE6 users is dropping, but I think we'll be waiting for them to replace their computers rather than upgrade their browsers.</p> http://stackoverflow.com/questions/203050/best-way-of-doing-an-svn-checkout-update-on-a-web-hosting-package/203782#203782 2 Answer by Mnebuerquo for Best way of doing an SVn checkout/update on a web hosting package Mnebuerquo 2008-10-15T05:11:59Z 2008-10-15T12:16:28Z <p>The good news is that svn is very easily scriptable, but the bad news is that you are likely to have a difficult time without shell access.</p> <p>If you do this without shell access, be careful of anything that can change a file in a directory under svn. This can lead to conflicts between working copy and latest version and block your updates. You might want to build in a revert command into your update script, and revert recursively before the update.</p> <p>The other choice would be to export rather than check out. You wouldn't have the .svn directories, and you wouldn't have to be concerned about files being conflicted. You might want to export into a clean directory rather than overwrite, since I think the svn export does not touch non-versioned files including files deleted through svn.</p> <p>The difficult part is that the web server's userid probably does not have write permission to the directories you want to hit with your checkout. So it needs to run the svn commands as another user for write permissions and file ownership. I used suid-perl to change effective uid/gid, and call those perl scripts from the php. The Perl then calls the svn command with the correct identity. If you do need suid, then you'll need to be able to change file permissions and set the suid bit. Maybe your FTP can set suid permissions, otherwise you'll need a shell. The only other option which comes to mind (which is a bad idea) is to grant the web server write access to your entire directory.</p> <p>If the svn repository is on a separate machine, you will probably want to use svn+ssh. This could mean storing a key file or password on the web server. Make sure the permissions are correct on the key files, since ssh rejects them if they are readable to anyone other than the owner. Just to be safe, make sure the login on the subversion server can do nothing but access the svn repository.</p> <p>In your .htaccess files or httpd.conf you should block all access to .svn directories from anyone anywhere. </p> <p>I also keep my PHP updater page in a directory protected by password over SSL. It only has one action it can perform, which is updating the web directory to the latest revision from svn. It accepts no user input. If it did allow the user to choose a tag or revision, it would only accept tag selections from a list, or integer revision numbers. Those would be highly sanitized before use, and no user input would ever be used in a shell command or option.</p> <p>The main thing is to be careful of security when you have any PHP or externally accessible script execute a command which modifies data on the server.</p> <p>I think on a machine where you do not get shell access, you will have a lot of difficulty with permissions and file ownership. Unless you are strongly tied to this hosting provider, I would recommend upgrading to a provider who offers the tools to make your job easier. You'll save yourself enough time that it will likely be worth the money.</p> http://stackoverflow.com/questions/203758/receive-socket-size-limits-good/203933#203933 1 Answer by Mnebuerquo for Receive socket size limits good? Mnebuerquo 2008-10-15T07:17:11Z 2008-10-15T07:17:11Z <p>Most likely you've seen code which protects against "extra" incoming data. This is often due to the possibility of buffer overruns, where the extra data being copied into memory overruns the pre-allocated array and overwrites executable code with attacker code. Code written in languages like C typically has a lot of length checking to prevent this type of attack. Functions such as gets, and strcpy are replaced with their safer counterparts like fgets and strncpy which have a length argument to prevent buffer overruns.</p> <p>If you use a dynamic language like Python, your arrays resize so they won't overflow and clobber other memory, but you still have to be careful about sanitizing foreign data.</p> <p>Chat programs likely limit the size of a message for reasons such as database field size. If 80% of your incoming messages are 40 characters or less, 90% are 60 characters or less, and 98% are 80 characters or less, why make your message text field allow 10k characters per message?</p> http://stackoverflow.com/questions/203612/switching-career-paths-in-programming/203888#203888 10 Answer by Mnebuerquo for Switching Career Paths in Programming Mnebuerquo 2008-10-15T06:40:31Z 2008-10-15T06:40:31Z <p>After several years of C/C++ Win32 application programming, I changed jobs and had to suddenly learn Pascal and Delphi. A few years later I switched from that to embedded C. After a few years of that I switched to database/web apps.</p> <p>In each switch, I had to learn a new language, new rules, and in some cases learn where rules from other systems didn't apply anymore. It felt like starting from scratch, going from mentor to newbie, and it's highly uncomfortable. </p> <p>The good thing is knowledge of data structures and algorithms helps everywhere. Math is priceless. If you can write good code on a web app, and make your database queries tight, then developing for an embedded CPU with limited memory, I/O, and speed won't be anything more difficult. It's just a matter of learning a new set of rules or a new language.</p> <p>The real problem is how to learn a new specialization quickly. The answer is to just write a lot of code. When you encounter something you don't know how to do, ask google, buy books, ask stack overflow, or whatever, but write the code and try it. You can learn a lot by reading, but you learn more by experimenting.</p> <p>I highly recommend making leaps. And if it takes a while to get hired as an embedded systems programmer, you still have the experience with web apps to keep you paid.</p> http://stackoverflow.com/questions/203618/how-to-name-variables/203836#203836 0 Answer by Mnebuerquo for How to name variables. Mnebuerquo 2008-10-15T06:00:47Z 2008-10-15T06:00:47Z <p>It's pretty much unimportant how you name variables. You really don't need any rules, other than those specified by the language, or at minimum, those enforced by your compiler.</p> <p>It's considered polite to pick names you think your teammates can figure out, but style rules don't really help with that as much as people think.</p> http://stackoverflow.com/questions/203787/how-can-i-check-if-one-game-object-can-see-another/203806#203806 3 Answer by Mnebuerquo for How can I check if one game object can see another? Mnebuerquo 2008-10-15T05:31:16Z 2008-10-15T05:31:16Z <p>Get the angle between the viewer's heading vector and the vector from viewer to target. If that angle is less than (FieldOfView/2), then the target is in the viewer's field of view.</p> <p>If your vectors are 2d or 3d this will work the same way. (In 3D, if you have a view frustum instead of cone, then you'll need to separate the angles into two components.) You just need to find the angle between the two vectors.</p> <p>If you want to test targets which are larger than a single point, you'll need multiple points for each target, such as the corners of a bounding box. If the vector from viewer to any of these points gives an angle inside the field of view, then that corner of the box is visible.</p> http://stackoverflow.com/questions/198049/prevent-js-alert-from-pausing-timers/198172#198172 2 Answer by Mnebuerquo for Prevent js alert() from pausing timers Mnebuerquo 2008-10-13T16:25:02Z 2008-10-13T16:25:02Z <p>I think the question asker is trying to prevent cheating. Since a user can type javascript: alert("paused"); into the address bar, or make a bookmarklet to do that, it's easy to pause the quiz and cheat.</p> <p>The only thing I can think of is to use Date() to get the current time, and check it again when the timer fires. Then if the time difference is not reasonably close to the intended timer duration, show an admonishment and disqualify the answer to that question or let them flunk the quiz. There is no way to prevent the user from pausing your quiz, but it should be possible to catch them. </p> <p>Of course with any cheat-proofing, you motivate people to become better cheaters. A person could change the system time on their PC, and fool the javascript Date() constructor which gets the time from the operating system.</p> <p>You can use an interval to do a repeated clock comparison against a one second interval length. The interval handler can also update a time-remaining field on the user's display. Then the users can feel the pressure build as time runs out on their quiz. Fun times!</p> http://stackoverflow.com/questions/183656/how-to-digitally-sign-a-document/183886#183886 0 Answer by Mnebuerquo for How to Digitally "Sign" a document Mnebuerquo 2008-10-08T17:25:13Z 2008-10-08T17:25:13Z <p>There is software for adding a digital security component to a handwritten signature. The signature is captured using some sort of touchpad device, and stored in the document. Then the software digitally signs the entire document including the signature graphic, to prove that the document was not changed since the signature was applied.</p> http://stackoverflow.com/questions/179834/what-is-the-best-way-to-detect-and-store-the-timezone-the-client-of-a-web-app-is/179866#179866 3 Answer by Mnebuerquo for What is the best way to detect and store the timezone the client of a web app is in? Mnebuerquo 2008-10-07T18:59:38Z 2008-10-07T18:59:38Z <p>I was doing something very similar, but I now think I prefer to use javascript to convert all times to local on the client side. The server will give all times in UTC in the generated page, and the javascript will convert it once the page loads.</p> <p>This eliminates confusion on the server side code, as I always know what time it is (UTC). On the client side I'm using jquery and the each() function to format all the time values at once. I write out each of the times as a unix time in a hidden field to make this easy to process with jquery.</p> <p>The only problems I see with this method is that a) I don't have a real good date/time formatting routine yet in javascript, and b) if the user has javascript turned off, then it doesn't work.</p> http://stackoverflow.com/questions/179539/in-php-for-what-reasons-can-i-not-include-a-variable-from-external-file/179578#179578 0 Answer by Mnebuerquo for In PHP, for what reasons can I not include a variable from external file? Mnebuerquo 2008-10-07T17:42:06Z 2008-10-07T17:42:06Z <p>If it were a path problem you would see a warning in your error log. You could also change to require instead of include and it would become obvious.</p> <pre><code>echo getcwd(); </code></pre> <p>You can also print your working directory to figure out what's wrong.</p> <p>Is $var created in a function? If so, make sure you have </p> <pre><code>global $var; </code></pre> <p>before the first assignment in that function.</p> http://stackoverflow.com/questions/179288/html-frameset-alignment/179403#179403 2 Answer by Mnebuerquo for HTML Frameset alignment Mnebuerquo 2008-10-07T16:53:07Z 2008-10-07T16:53:07Z <p>I think what you are looking for is a way to inject some CSS into the other frame, even though it comes from another site.</p> <p>I think this will not be possible without a server side script to request the page and modify it.</p> <p>Javascript has ways to modify other frames using window.frames[] and using DOM traversal just like for elements in the local frame. This will be problematic for you because of the "same-origin policy". This basically means that javascript in a frame loaded from example.com can not access the DOM in a frame loaded from foo.com. Even if you have similar domains, foo.example.com and bar.example.com, they are treated as separate domains in the browser so your javascript from one is not allowed to access the other.</p> <p>This affects ajax calls using XMLHttpRequest as well. There are ways of reducing the impact of this, but I think you need to be able to run javascript on both sides of the line.</p> <p>I recently tried something similar to what you are doing, where I wanted to embed one site in another, but the same-origin policy made it impractical. </p> <p>The other way to do this is server-side instead of client-side. Create a php script which requests content from the other server on behalf of the client, and then serves it as if it was on your server all along. Then your javascript, now on the same server, can do what it will with that frame. If the other site uses a lot of cookies or ajax, this could be tricky, but your php won't have a same-origin policy to deal with.</p> http://stackoverflow.com/questions/1887052/how-can-i-test-a-comet-ajax-site-on-a-single-host-and-work-around-browser-simulta/1887729#1887729 Comment by Mnebuerquo on How can I test a comet ajax site on a single host and work around browser simultaneous connection limit? Mnebuerquo 2009-12-13T08:36:29Z 2009-12-13T08:36:29Z I'm not sure I understood that, but this isn't a hosting problem. It's a limitation of the browser. http://stackoverflow.com/questions/1887052/how-can-i-test-a-comet-ajax-site-on-a-single-host-and-work-around-browser-simulta/1887119#1887119 Comment by Mnebuerquo on How can I test a comet ajax site on a single host and work around browser simultaneous connection limit? Mnebuerquo 2009-12-13T08:34:45Z 2009-12-13T08:34:45Z I'm still not sure I understand the NameVirtualHost and VirtualHost directives, but I've got it working. Thanks! http://stackoverflow.com/questions/142559/do-you-have-to-restart-apache-to-make-re-write-rules-in-the-htaccess-take-effect/142619#142619 Comment by Mnebuerquo on Do you have to restart apache to make re-write rules in the .htaccess take effect? Mnebuerquo 2009-12-04T07:10:59Z 2009-12-04T07:10:59Z I add this line &quot;&lt;directory / &gt;&lt;/directory&gt;&quot; to my .htaccess to generate an error in the log. It will say &quot;&lt;Directory not allowed here&quot; and I know it's reading my file. http://stackoverflow.com/questions/1811338/facebook-users-email-address-is/1811348#1811348 Comment by Mnebuerquo on Facebook user's email address is...? Mnebuerquo 2009-11-28T03:54:21Z 2009-11-28T03:54:21Z They do this for security, so evil people can not spam or harass their members outside of facebook. Inside of facebook you can only send messages based on a user's privacy settings or something. http://stackoverflow.com/questions/1730435/how-to-work-unestimatable-tasks-into-a-scrum-sprint/1730483#1730483 Comment by Mnebuerquo on How to work unestimatable tasks into a scrum sprint? Mnebuerquo 2009-11-13T21:42:26Z 2009-11-13T21:42:26Z That's all fine for complex tasks that are hard to estimate. But for truly unknown tasks, you may simply not know what you want to build or how it will work. There are tasks in various R&amp;D projects where the time required is not knowable until the problem is solved or the question is answered. http://stackoverflow.com/questions/1694595/can-i-call-jquery-click-to-follow-an-a-link-if-i-havent-bound-an-event-handl/1694803#1694803 Comment by Mnebuerquo on Can I call jquery click() to follow an <a> link if I haven't bound an event handler to it with bind or click already? Mnebuerquo 2009-11-08T18:47:43Z 2009-11-08T18:47:43Z Ok. It must have been something I did wrong. I was absolutely certain at the time I posted my question that it was working, but since I tried your example mine no longer works. I'll just go back to using window.location to change the page and not try faking the click. http://stackoverflow.com/questions/1694595/can-i-call-jquery-click-to-follow-an-a-link-if-i-havent-bound-an-event-handl/1694625#1694625 Comment by Mnebuerquo on Can I call jquery click() to follow an <a> link if I haven't bound an event handler to it with bind or click already? Mnebuerquo 2009-11-08T03:18:41Z 2009-11-08T03:18:41Z I can certainly use window.location and the href as I mentioned in the question. I'm trying to understand what happens in jquery click(), and what causes the results I observed. http://stackoverflow.com/questions/1694595/can-i-call-jquery-click-to-follow-an-a-link-if-i-havent-bound-an-event-handl/1694803#1694803 Comment by Mnebuerquo on Can I call jquery click() to follow an <a> link if I haven't bound an event handler to it with bind or click already? Mnebuerquo 2009-11-08T03:16:18Z 2009-11-08T03:16:18Z I tried your code, and it does exactly as you said it does, but my code does as I described above. I'll do some more experiments and see if I can put together a simple example of my results that you can try. http://stackoverflow.com/questions/1273189/tricky-surpress-loading-title-in-firefox-for-jsonp-polling/1617336#1617336 Comment by Mnebuerquo on Tricky: Surpress "Loading ..." title in Firefox for JSONP polling Mnebuerquo 2009-11-07T17:04:40Z 2009-11-07T17:04:40Z Sometimes it's best to just cheat. :) http://stackoverflow.com/questions/1064782/stop-the-browser-throbber-of-doom-while-loading-comet-server-push-iframe/1066729#1066729 Comment by Mnebuerquo on Stop the browser "throbber of doom" while loading comet/server push iframe Mnebuerquo 2009-10-24T08:28:15Z 2009-10-24T08:28:15Z Thanks for that comment Evgeny. I have been banging my head against my page for weeks now. Adding a few second timeout before polling fixed my page throbber issue. http://stackoverflow.com/questions/155291/can-html-checkboxes-be-set-to-readonly/155347#155347 Comment by Mnebuerquo on Can HTML checkboxes be set to readonly? Mnebuerquo 2009-09-26T05:38:29Z 2009-09-26T05:38:29Z A difficulty with using a picture of a checkbox is that the checkbox itself is drawn by the browser. Some browsers just use the native controls from the OS, but others draw their own stylish controls. So your checkbox picture wouldn't look the same as other checkboxes on the page in some browsers. Of course you could replace all checkboxes on the page with your own style... http://stackoverflow.com/questions/1210417/best-way-to-solve-the-padding-css-problem/1210424#1210424 Comment by Mnebuerquo on Best way to solve the 'padding' css problem Mnebuerquo 2009-07-31T03:00:15Z 2009-07-31T03:00:15Z Browser detection either requires javascript or uses the header that the browser sends to the server. Both have disadvantages. Either way, it's probably best to use an html/css only solution if possible. Browser specific code is a real pain to maintain. I've tried. http://stackoverflow.com/questions/220642/language-agnostic-properly-tabbing-code-editors-for-linux/223022#223022 Comment by Mnebuerquo on Language-agnostic properly-tabbing code editors for Linux? Mnebuerquo 2009-04-28T19:15:23Z 2009-04-28T19:15:23Z We've all got enough projects without our editor being one too. It's not a mistake to be picky. Crappy editors are incredibly expensive if you spend 12 hours a day using one. Maybe the cost of certain critical features is worth making the editor into a project, but I'd rather pay for an editor that I didn't have to build myself. http://stackoverflow.com/questions/220642/language-agnostic-properly-tabbing-code-editors-for-linux Comment by Mnebuerquo on Language-agnostic properly-tabbing code editors for Linux? Mnebuerquo 2009-04-28T18:51:47Z 2009-04-28T18:51:47Z Not poorly conceived or worded so much. It's just hard to explain what correct program behavior should be. Thanks for asking my question for me. http://stackoverflow.com/questions/179834/what-is-the-best-way-to-detect-and-store-the-timezone-the-client-of-a-web-app-is/179873#179873 Comment by Mnebuerquo on What is the best way to detect and store the timezone the client of a web app is in? Mnebuerquo 2009-04-01T04:28:16Z 2009-04-01T04:28:16Z How does that work exactly? It looks to me like the header has gmt instead of a timezone. Does that mean the client's computer is set to GMT or does that mean that the browser is always using GMT for the request?