User keparo - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T03:18:52Z http://stackoverflow.com/feeds/user/19468 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/118895#118895 11 Answer by keparo for What are Code Smells? What is the best way to correct them? keparo 2008-09-23T03:10:17Z 2009-08-28T17:38:18Z <h3>Code Smell (noun)</h3> <p>This is a general criticism of poorly written or <strong>poorly designed</strong> software.</p> <p>Example usage: "I was disappointed when I saw the source code. Everything <em>basically works</em>, but that <em>code smells</em>".</p> <p>There are a lot of reasons why software might qualify as "smelly". People have listed quite a few specifics here.. Things like having overly complicated data structures, global variables and goto statements. But while these are all symptoms of smelly code, the truth is that <strong>there isn't a hard and fast rule</strong>. In programming, any specific problem could be solved a handful of ways, <strong>but not every answer is as good as the next</strong>.</p> <h3>Some basic principles</h3> <p>We value code that is <strong>easy to read</strong>. Most programmers will probably spend the majority of their time reading and editing existing code, even if it is code that they wrote themselves.</p> <p>Along the same lines, <strong>reusable code</strong> is also considered valuable. This doesn't mean that code is copied and pasted.. It means that code has been organized into a logical system, allowing specific tasks to be performed by the same piece of code (with maybe just a few differences each time, like a value in each calculation).</p> <p>We value <strong>simplicity</strong>. We should be able to make single changes to a program by editing code in one place, or by editing a specific module of code.</p> <p>We value <strong>brevity</strong>.</p> <p>Smelly code is hard to read, hard to reuse, hard to maintain, and is fragile. Small changes may cause things to break, and there is little value in the code beyond its one time use.</p> <p>Code that simply "works" isn't very difficult to write. Many of us were writing simple programs as teenagers. On the other hand, a good software developer will create code that is <strong>readable, maintainable, reusable, robust</strong>, and potentially <strong>long-lived</strong>.</p> http://stackoverflow.com/questions/186244/what-does-it-mean-that-javascript-is-a-prototype-based-language/186279#186279 27 Answer by keparo for What does it mean that Javascript is a prototype based language? keparo 2008-10-09T07:38:11Z 2009-07-16T20:29:05Z <p><strong>Prototypal inheritance</strong> is a form of object-oriented <strong>code reuse</strong>. Javascript is one of the only [mainstream] object-oriented languages to use prototypal inheritance. Almost all other object-oriented languages are classical.</p> <p>In <strong>classical inheritance</strong>, the programmer writes a class, which defines an object. Multiple objects can be instantiated from the same class, so you have code in one place which describes several objects in your program. Classes can then be organized into a hierarchy, furthering code reuse. More general code is stored in a higher-level class, from which lower level classes inherit. This means that an object is sharing code with other objects of the same class, as well as with it's parent classes.</p> <p>In the <strong>prototypal inheritance</strong> form, objects <strong>inherit directly</strong> from other objects. All of the business about classes goes away. If you want an object, you just write an object. But code reuse is still a valuable thing, so objects are allowed to be linked together in a hierarchy. In javascript, every object has a secret link to the object which created it, forming a chain. When an object is asked for a property that it does not have, its parent object is asked... continually up the chain until the property is found or until the root object is reached.</p> <p>Each object in javascript actually has a member called "prototype", which is responsible for providing values when an object is asked for them. Adding a property to the prototype of an object will make it available to that object, as well as to all of the objects which inherit from it.</p> <p><strong>Advantages</strong></p> <p>There may not be a hard and fast rule as to why prototypal inheritance is an advantageous form of code-reuse. Code reuse itself is advantageous, and prototypal inheritance is a sensible way of going about it. You might argue that prototypal inheritance is a fairly <strong>simple model</strong> of code reuse, and that code can be heavily reused in <strong>direct ways</strong>. But classical languages are certainly able to accomplish this as well.</p> <p><strong>Sidenote:</strong> <em>@Andrew Hedges</em> makes a good point, that there are actually <a href="http://en.wikipedia.org/wiki/Prototype-based%5Fprogramming#Languages" rel="nofollow">many</a> prototypal languages. It's worth noting that these others exist, but also worth noting that none of them are anything close to mainstream. NewtonScript seemed to have some traction for a while, but died with its platform. It's also possible to extend some modern languages in ways which add prototypal capabilities.</p> http://stackoverflow.com/questions/1138508/in-c-on-unix-how-can-a-process-tell-what-permissions-it-has-to-a-file-without-op/1138541#1138541 2 Answer by keparo for In C on Unix, how can a process tell what permissions it has to a file without opening it? keparo 2009-07-16T15:47:42Z 2009-07-16T16:17:26Z <p><strong>unistd.h</strong> defines an <strong>access()</strong> function,</p> <pre><code>int access(const char *path, int amode); </code></pre> <p>where <em>path</em> is your filename and <em>amode</em> is a bitwise inclusive OR of access permissions to check against.</p> <p>R_OK, W_OK, and X_OK hold mode values for checking read, write, and search/execute permissions respectively.</p> <pre><code>int readable, readwritable; //checking for read access readable = access("/usr/bin/file", R_OK); //checking for read and write access readwritable = access("/usr/bin/file", R_OK|W_OK); </code></pre> <p>You can find a full description of access() in the unix man pages.</p> http://stackoverflow.com/questions/1024585/haskell-vs-procedural-programming-in-the-real-world/1024595#1024595 6 Answer by keparo for Haskell vs. procedural programming in the real world keparo 2009-06-21T19:34:55Z 2009-06-21T19:34:55Z <p>You probably shouldn't expect to use Haskell anywhere nearly as often as a C family language in professional settings. If the question is whether it will be valuable for you to study Haskell and functional programming paradigms, the answer is yes. You can apply your enriched understanding of programming to all of your work.</p> http://stackoverflow.com/questions/140270/humor-in-code/143394#143394 26 Answer by keparo for Humor in code keparo 2008-09-27T10:48:43Z 2009-06-18T14:43:34Z <p>I usually write very straight-edge code, and try to name things as clearly as possible. But sometimes a good, logical name turns out to be funny.</p> <p>I was building a "safe search" filter for a popular online video site. You may have used it. It just keeps the sexier videos out of your sight unless you explicitly toggle your settings to include them.</p> <p>So I needed to name a method for bringing the sexy videos back into the user's video queries.</p> <p>I couldn't help myself:</p> <pre><code>UserManager.bringSexyBack(); </code></pre> <p>It's in production. Millions of people bringSexyBack() every day.</p> http://stackoverflow.com/questions/220231/accessing-http-headers-in-javascript 5 Accessing HTTP Headers in Javascript? keparo 2008-10-20T22:54:38Z 2009-05-18T09:46:02Z <p>How do I access the HTTP response headers via JavaScript?</p> <p>Related to <a href="http://stackoverflow.com/questions/220149/how-do-i-access-the-http-request-header-fields-via-javascript"><strong>this question</strong></a>, which was modified to ask about specifically accessing browser information.</p> http://stackoverflow.com/questions/161687/perl-challenge-directory-iterator 3 Perl Challenge - Directory Iterator keparo 2008-10-02T10:34:44Z 2009-01-26T20:24:56Z <p>You sometimes hear it said about Perl that there might be 6 different ways to approach the same problem. Good Perl developers usually have well-reasoned insights for making choices between the various possible methods of implementation.</p> <p>So an example Perl problem:</p> <p>A simple script which recursively iterates through a directory structure, looking for files which were modified recently (after a certain date, which would be variable). Save the results to a file.</p> <p>The question, for Perl developers: What is your best way to accomplish this?</p> http://stackoverflow.com/questions/474402/ajax-and-accessibility/474505#474505 2 Answer by keparo for ajax and accessibility keparo 2009-01-23T21:02:00Z 2009-01-23T21:02:00Z <p><strong>The Importance of Being Accessible</strong></p> <p>It may be very important for your website to be highly accessible, especially if the site is being built for an organization which is subsidized by federal dollars.</p> <p>The Rehabilitation Act was ammended in 1998, and now <em>requires</em> Federal agencies to make their electronic and information technology accessible to people with disabilities.</p> <p>There are similar laws applying to e-commerce sites, applying to the online storefronts of traditional retailers.</p> <p>You can look into <a href="http://www.section508.gov/" rel="nofollow"><strong>Secion 508</strong></a> for more info, but the main idea is that partial page refreshes won't be read by modern screen readers, and if your site needs to be accessible, the extra effort is required, and certainly worth your effort.</p> <p>Many web frameworks are still in use which did not anticipate ajax, and it can require a lot of work-arounds to make things accessible. Still, it's really the best thing to do, even if you are developing a private website.</p> <p>Here are a couple of other articles which deal with the topic:</p> <ul> <li><a href="http://www.section508.gov/" rel="nofollow"><strong>Secion 508</strong></a></li> <li><a href="http://www.alistapart.com/articles/saveaccessibility/" rel="nofollow"><strong><a href="http://www.alistapart.com/articles/saveaccessibility/" rel="nofollow">http://www.alistapart.com/articles/saveaccessibility/</a></strong></a></li> <li><a href="http://www.alistapart.com/articles/politics/" rel="nofollow"><strong><a href="http://www.alistapart.com/articles/politics/" rel="nofollow">http://www.alistapart.com/articles/politics/</a></strong></a></li> </ul> <p><strong>Users without javascript</strong></p> <p>As far as "turning off" javascript, users don't do this anywhere nearly as often as they did 5 years ago, though some still may. This will not likely be the case with your audience, and it's generally not considered the major concern it once was.</p> <p>These days, the real concern is just client support. All modern browsers support enough javascript to allow you to do your work. It's the alternative clients, like the accessibility devices you mentioned, which may add requirements to your design.</p> <p>If some of your audience works in a security-sensitive environment (government agencies, etc.), it may still be mandated that javascript is turned off on their work machines. This is also becoming less and less of a problem as time goes on, though it's a more common case than the paranoia issue you mentioned. </p> <p>Of course, if you offer some support for those users, you won't have to worry about it.</p> http://stackoverflow.com/questions/373598/when-would-you-use-the-mediator-design-pattern/373624#373624 1 Answer by keparo for When would you use the mediator design pattern keparo 2008-12-17T04:04:31Z 2008-12-17T22:20:17Z <p>Use a mediator when the <strong>complexity of object communication</strong> begins to <strong>hinder object reusability</strong>. This type of complexity often appears in view instances, though it could really be anywhere.</p> <p>Misuse of a mediator can result in crippling the interfaces of the mediator's colleague classes.</p> <p>It seems a little funny to talk about misusing a pattern. If your implementation follows the pattern, then you've used the pattern. Otherwise, you haven't. In other words, if your mediator is doing something else, then it probably isn't a mediator. Patterns are defined by what they do, what they in fact are. The names of things are simply labels.</p> <p>The real question to ask yourself is whether your implementation of a pattern fulfills the pattern's promises for your design. The mediator pattern aims to encapsulate complex inter-object communication when it is becoming unmanageable. If it hasn't accomplished this, or hasn't done it very well, you could say that a mediator is being misused. At some point, it becomes a value judgement.</p> http://stackoverflow.com/questions/310870/use-of-prototype-vs-this-in-javascript/310914#310914 16 Answer by keparo for Use of 'prototype' vs. 'this' in Javascript? keparo 2008-11-22T05:26:52Z 2008-11-24T00:39:05Z <p>This is a common misunderstanding. The two given examples are really doing entirely different things.</p> <p>We can take a look at the differences, but let's make a few mental notes about javascript before diving into it:</p> <ul> <li>The <em>prototype</em> of an object provides access to members of that object.</li> <li>The keyword <em>this</em> refers to the object context within which the function is executing.</li> <li>The language is functional, i.e. everything is Object, including functions, and functions are values.</li> </ul> <p>So here are the snippets in question:</p> <pre><code>var A = function () { this.x = function () { //do something }; }; </code></pre> <p>In this case, variable A is assigned a function value. When that function is called, the runtime system will look for a variable "x" in the current object context. Without any additional code in the example, we could assume that this would be the global object. So to sum up: in this first snippet, <em>this</em> refers to the object invoking A().</p> <pre><code>var A = function () { }; A.prototype.x = function () { //do something }; </code></pre> <p>Something very different is happening in this second snippet. In the first line, variable A is assigned a function value. In javascript, functions are objects, and all objects have a prototype member. So in the second line, the object A is assigned a property x via the prototype. As you can see, this is completely different from the effect in the prior snippet.</p> <p>For clarity, let's take a look at a third snippet. It's almost exactly like the first one (and may be what you meant to ask about):</p> <pre><code>var A = new function () { this.x = function () { //do something }; }; </code></pre> <p>In this third example, I've simply added the "new" keyword. This changes the meaning of the function, turning it into what is commonly called a <em>constructor function</em>. When called with <em>new</em>, the function is run in a blank object context. In other words, because of the <em>new</em> keyword, <em>this</em> will refer to a blank object which will be newly created and applied to the function invocation. Property x will be assigned to the blank object, and the function will return the new object with property x, assigning it to variable A.</p> <p>By making yet another small change, we have a fourth interesting case for comparison:</p> <pre><code>var A = function () { this.x = function () { //do something }; }(); </code></pre> <p>In this fourth case, variable A is created and assigned the value of an executed inline function. The function is declared and immediately executed, so whatever value it returns is assigned to A. Here again, <em>this</em> will refer to the object context of the function call, and that object would have a property x assigned to it. The inline function doesn't explicitly return anything, so A will have a value of 'undefined'.</p> <p><strong>Related questions</strong>:</p> <ul> <li><a href="http://stackoverflow.com/questions/186244/what-does-it-mean-that-javascript-is-a-prototype-based-language"><strong>What does it mean that javascript is a prototypal language?</strong></a></li> <li><a href="http://stackoverflow.com/questions/235360/what-is-the-scope-of-a-function-in-javascriptecmascript"><strong>What is the scope of a function in Javascript?</strong></a></li> </ul> <p><strong>Sidenote:</strong> There is not a real memory savings between the snippets in question. The first variable x belongs to the function value, and the second variable x is a member on an object. If you did have an inheritance chain (though our examples do not), the second snippet would potentially make x available to its children. It's really comparing apples to oranges.</p> <p>If, on the other hand, you had two "A"-style objects, both with property x, each object's x would be made available to objects in http://stackoverflow.com/questions/307364/javascript-ie7-why-wont-my-onload-function-fire/307398#307398 4 Answer by keparo for JavaScript & IE7 - Why won't my *.onload = function() { } fire? keparo 2008-11-21T00:26:15Z 2008-11-21T00:26:15Z <p>For successful use of Image.onload, you must register the event handler method before the src attribute is set.</p> <p><strong>Related Information in this Question:</strong></p> <p><strong><a href="http://stackoverflow.com/questions/280049/javascript-callback-for-knowing-when-an-image-is-loading#280087">Javascript callback for Image Loading</a></strong></p> http://stackoverflow.com/questions/294967/maintainable-programming-jobs/294992#294992 9 Answer by keparo for Maintainable programming jobs? keparo 2008-11-17T06:14:21Z 2008-11-17T06:14:21Z <p>There are <strong>plenty</strong> of opportunities for <strong>stable employment</strong> as a <strong>programmer</strong>.</p> <p>It's good to consider job stability, but if you love what you do, either of those tracks will certainly afford for a steady career. Make your decision based on what you're most interested in doing.</p> http://stackoverflow.com/questions/292861/change-an-elements-onfocus-handler-with-javascript/292869#292869 2 Answer by keparo for Change an element's onfocus handler with Javascript? keparo 2008-11-15T18:21:36Z 2008-11-15T18:21:36Z <p>Use</p> <pre><code>element.onfocus = clear_input; </code></pre> <p>or (with parameters)</p> <pre><code>element.onfocus = function () { clear_input( param, param2 ); }; </code></pre> <p>with</p> <pre><code>function clear_input () { this.value = ""; this.onfocus = null; } </code></pre> <p>The "javascript:" bit is unnecessary.</p> http://stackoverflow.com/questions/280049/javascript-callback-for-knowing-when-an-image-is-loading/280087#280087 3 Answer by keparo for Javascript callback for knowing when an image is loading keparo 2008-11-11T05:19:46Z 2008-11-12T15:34:48Z <p><strong>Image.onload()</strong> will often work. </p> <p>To use it, you'll need to be sure to bind the event handler before you set the src attribute.</p> <p><strong>Related Links:</strong></p> <ul> <li><a href="http://developer.mozilla.org/En/XUL/Attribute/Onload" rel="nofollow"><strong>Mozilla on Image.onload()</strong></a></li> </ul> <p><strong>Example Usage:</strong></p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;title&gt;Image onload()&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;img src="#" alt="This image is going to load" id="sologo"/&gt; &lt;script type="text/javascript"&gt; window.onload = function () { var logo = document.getElementById('sologo'); logo.onload = function () { alert ("The image has loaded!"); }; setTimeout(function(){ logo.src = 'http://stackoverflow.com/Content/Img/stackoverflow-logo-250.png'; }, 5000); }; &lt;/script&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/283011/firefox-sending-request-twice/283021#283021 6 Answer by keparo for Firefox sending request twice keparo 2008-11-12T04:17:14Z 2008-11-12T04:36:14Z <p>Use a <a href="http://en.wikipedia.org/wiki/Cryptographic_nonce" rel="nofollow"><strong>nonce</strong></a>, a unique key which is only used once.</p> <p>Send a unique number along with the form fields to the browser (this is often done with a hidden input field), and store a copy on the server with the transaction. Within the form, change the number on submit. Validate that the keys match when processing your requests.</p> <p>There may also be a clear explanation of what's happening on the front end, and that issue could be eliminated client-side. It's best to solve the double-submit problem on the server, simply because there are so many ways in which a double submit could occur.</p> http://stackoverflow.com/questions/282429/returning-redirect-as-response-to-xhr-request/282453#282453 3 Answer by keparo for Returning redirect as response to XHR request. keparo 2008-11-11T23:06:41Z 2008-11-12T04:10:40Z <p><em>What happens if the browser receives a redirect response to an ajax request?</em></p> <p>Nothing happens. Specifically, the <strong>browser doesn't follow</strong> the location offered by a redirect response in the same way as it would with a synchronous request. But you can do whatever you like in javascript with the response. </p> <p>A particular ajax library may handle this case in a specific way, and you should refer to the specific documentation of your Ajax library to see if there is a conventional way for you to deal with this case, such as a callback method for <strong>300-level response codes</strong>.</p> <p>The following illustration fires a raw Ajax to a script which is serving redirect headers. Note the <strong>status code</strong> of the response as it comes back. It will reflect the <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html" rel="nofollow"><strong>HTTP Status Code</strong></a> of the server response.</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;title&gt;Raw Ajax Request (W3C Model)&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;script type="text/javascript"&gt; window.onload = function () { /* Note: This is a raw example of an Ajax request, following the W3C model. It should be used for illustration purposes only, and is not a good example of a robust Ajax communication request. */ var xhr = new XMLHttpRequest(); xhr.open("POST", 'http://www.mysite.com/response-test', true); xhr.setRequestHeader("Content-Type", "application/json"); xhr.onreadystatechange = function () { try { console.log(xhr.readyState + ':' + xhr.status); } catch (e) { console.log(e); } }; xhr.send('{ "responseCode": 302 }'); }; &lt;/script&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>You can emulate these tests yourself with a simple server-side script:</p> <pre><code>&lt;?php // Redirect to a location on a different domain. header ("Location:http://www.stackoverflow.com/"); exit; ?&gt; </code></pre> <p><strong>Sidenote</strong>:</p> <p>A similar question would be: <em>What happens if an ajax request is redirected?</em></p> <p>On the server, the request can be redirected or changed internally. Whatever the server ultimately sends back as a response will serve as your Ajax response. This may or may not include a redirect header.</p> http://stackoverflow.com/questions/277224/how-do-i-catch-a-php-fatal-error/277443#277443 3 Answer by keparo for How do I catch a PHP Fatal Error keparo 2008-11-10T09:44:04Z 2008-11-10T09:44:04Z <p>PHP won't provide you with any conventional means for catching fatal errors because they really shouldn't be caught. Any techniques for catching them (like string matching an output buffer) are almost sure to be ill-advised.</p> <p>In general, emailing yourself when errors are thrown could prove to be problematic, at least if it involves calling the mail() function from within an error handler method. If you had a lot of errors, your mail server would be loaded with work, and you'd have a pretty gnarly inbox.</p> <p>Alternatively, you might consider running a cron to scan error logs periodically and send notifications accordingly. You might also like to look into system monitoring software, such as <a href="http://www.nagios.org/" rel="nofollow">Nagios</a>.</p> http://stackoverflow.com/questions/277016/poor-safari-rendering/277027#277027 3 Answer by keparo for Poor Safari Rendering keparo 2008-11-10T03:52:38Z 2008-11-10T04:18:36Z <p><strong>1. Safari's support?</strong></p> <p>Safari is actually a <strong>decent browser</strong>. If it has its flaws, they aren't any worse than those of any other browser, and they aren't of the class of the old IE browsers, which had very serious problems and lacked even basic support for web standards. To answer you question specifically, yes, it <strong>does support absolute positioning</strong>.</p> <p>Safari can certainly render modern X/HTML CSS designs, and since your audience is largely using Safari anyway, you may as well <strong>forget the notion of dismissing the browser</strong>. It's a good browser, and in any case we're powerless to change it. We <strong>simply need to take care of these bugs</strong>, whatever they are.</p> <p><strong>2. How to go about debugging?</strong></p> <p>Without having a specific example, it's not something anyone can really help you to do. It seems fair to say that you're having some issues <strong>controlling css-based layouts</strong>. You may have some <strong>invalid markup</strong>, which in some cases could produce the kind of extreme browser-specific abnormalities you've described.</p> <p>Start with the <strong>basics</strong>. Validate your markup and CSS. </p> <ul> <li><a href="http://validator.w3.org/" rel="nofollow"><strong>Markup Validator</strong></a></li> <li><a href="http://jigsaw.w3.org/css-validator/" rel="nofollow"><strong>CSS Validator</strong></a></li> </ul> <p>Make sure you're rendering in <a href="http://stackoverflow.com/questions/255470/what-are-the-different-doctypes-in-html-and-what-do-they-mean#255474"><strong>standards mode</strong></a>.</p> <p><strong>Seek out answers to specific questions</strong></p> <p>If everything validates and you're <strong>still having problems</strong>, you'll have to track them down one by one. Even if you rebuild the page, piece by piece in Safari in order to see where things begin to unwind, it will be worth it to do. If during this process you really don't understand why a certain behavior exists, you'll at least have a <strong>specific question</strong> that you can use to poke around for answers. It <strong>may be answered already on SO</strong>, and if it isn't, you can ask it.</p> http://stackoverflow.com/questions/267892/how-do-you-implement-pagination-in-php/267902#267902 3 Answer by keparo for How do you implement pagination in PHP? keparo 2008-11-06T08:02:12Z 2008-11-06T08:12:45Z <p>You'll need a beginner's understanding of PHP, and probably some understanding of relational databases.</p> <p>Pagination is often implemented with some simple query parameters.</p> <pre><code>stackoverflow.com/myResults.php?page=1 </code></pre> <p>The page increments the query parameter:</p> <pre><code>stackoverflow.com/myResults.php?page=2 </code></pre> <p>On the back end, the page value usually corresponds to the limits and offsets in the query that is being used to generate the results.</p> <p><strong>Related Questions</strong>:</p> <ul> <li><a href="http://stackoverflow.com/questions/207223/php-dynamic-pagination-without-sql"><strong>PHP Dynamic Pagination without SQL</strong></a></li> <li><a href="http://stackoverflow.com/questions/230058/paginated-query-using-sorting-on-different-columns-using-rownumber-over-in-sql"><strong>Paginated Query sorting on different columns in SQL Server 2005</strong></a></li> <li><a href="http://stackoverflow.com/questions/163809/smart-pagination-algorithm"><strong>Smart pagination algorithm</strong></a></li> </ul> http://stackoverflow.com/questions/267704/javascript-open-new-page-in-same-window/267712#267712 5 Answer by keparo for Javascript: open new page in same window keparo 2008-11-06T05:21:18Z 2008-11-06T06:50:05Z <p>The second parameter of <em>window.open()</em> is a string representing the name of the target window. </p> <p>Set it to: "_self".</p> <pre><code>&lt;a href="javascript:q=(document.location.href);void(open('http://example.com/submit.php?url='+escape(q),'_self','resizable,location,menubar,toolbar,scrollbars,status'));"&gt;click here&lt;/a&gt; </code></pre> <p><br/> <strong>Sidenote:</strong> The following question gives an overview of an arguably better way to bind event handlers to HTML links.</p> <p><a href="http://stackoverflow.com/questions/266327/whats-the-best-way-to-replace-links-with-js-functions#266443"><strong>What's the best way to replace links with js functions?</strong></a></p> http://stackoverflow.com/questions/266585/why-does-asp-net-cause-the-operation-aborted-error-in-ie7/266605#266605 3 Answer by keparo for Why does ASP.NET cause the "Operation Aborted" Error in IE7? keparo 2008-11-05T20:49:13Z 2008-11-06T00:01:05Z <p>The intricacies of your collection and bindings have introduced a <strong>race condition</strong>.</p> <p>The <strong>Operation Aborted</strong> error is an obscure IE bug, which occurs when the DOM is appended before the page is finished loading.</p> <p><strong>The Operation Aborted Error</strong></p> <p>Refer to this question: <a href="http://stackoverflow.com/questions/267160/what-is-the-operation-aborted-error-in-internet-explorer">What is the Operation Aborted error in Internet Explorer?</a></p> <p>This isn't intrinsically an asp.net problem, but, in your case, asp.net is failing to control the order of execution, due to the way you've written the databind. In other words, depending on the order in which resources load and execute (which current is not being controlled), the condition exists. </p> <p>Incidentally, it may be <strong>harder to reproduce</strong> the condition in your development environment if you have some of these resources <strong>cached</strong> on the front end, or if they load more quickly (being available on a <strong>local network</strong>), which would explain why you're having trouble seeing the error.</p> http://stackoverflow.com/questions/267160/what-is-the-operation-aborted-error-in-internet-explorer/267196#267196 10 Answer by keparo for What is the "Operation Aborted" error in Internet Explorer? keparo 2008-11-05T23:53:19Z 2008-11-05T23:53:19Z <p><strong>There was a related question earlier today</strong>:</p> <p><a href="http://stackoverflow.com/questions/266585/operation-aborted-error-in-ie7"><strong>Operation Aborted Error in IE</strong></a></p> <p>This is a common problem.</p> <p>It occurs in IE when a script tries to modify the DOM before the page is finished loading. </p> <p>Take a look at what sort of scripts are executing. You'll find that something is getting started before the page is finished loading. You can use the window.onload event to correct the problem (or one of the onDomReady library functions).</p> http://stackoverflow.com/questions/266327/whats-the-best-way-to-replace-links-with-js-functions/266443#266443 3 Answer by keparo for What's the best way to replace links with JS functions? keparo 2008-11-05T20:06:17Z 2008-11-05T20:39:23Z <p><strong>Unobtrusive Javascript</strong></p> <p>The best practice is to add event handler methods to the links.</p> <p>The <em>confirm()</em> function produces the dialog box you described, and returns true or false depending on the user's choice.</p> <p>Event handler methods on links have a special behavior, which is that they kill the link action if they return false.</p> <pre><code>var link = document.getElementById('confirmToFollow'); link.onclick = function () { return confirm("Are you sure?"); }; </code></pre> <p>If you want the link to <strong>require javascript</strong>, the HTML must be edited. Remove the href:</p> <pre><code>&lt;a href="#" id="confirmToFollow"... </code></pre> <p>You can explicitly set the link destination in the event handler:</p> <pre><code>var link = document.getElementById('confirmToFollow'); link.onclick = function () { if( confirm("Are you sure?") ) { window.location = "http://www.stackoverflow.com/"; } return false; }; </code></pre> <p>If you want the same method called on multiple links, you can acquire a nodeList of the links you want, and apply the method to each as you loop through the nodeList:</p> <pre><code>var allLinks = document.getElementsByTagName('a'); for (var i=0; i &lt; allLinks.length; i++) { allLinks[i].onclick = function () { return confirm("Are you sure?"); }; } </code></pre> <p>There are further permutations of the same idea here, such as using a classname to determine which links will listen for the method, and to pass a unique location into each based on some other criteria. They are six of one, half dozen of another.</p> <p><strong>Alternative Approaches (not encouraged practices):</strong></p> <p>One <strong>discouraged practice</strong> is to attach a method via an <strong>onclick attribute</strong>:</p> <pre><code>&lt;a href="mypage.html" onclick="... </code></pre> <p>Another <strong>discouraged practice</strong> is to set the <strong>href attribute</strong> to a function call:</p> <pre><code>&lt;a href="javascript: confirmLink() ... </code></pre> <p>Note that these discouraged practices are all working solutions.</p> http://stackoverflow.com/questions/261098/what-is-the-best-way-to-include-the-icon-in-the-target-region-of-clickable-text/261154#261154 1 Answer by keparo for What is the best way to include the icon in the target region of clickable text? keparo 2008-11-04T07:28:36Z 2008-11-04T07:35:17Z <p>The icons should be be:</p> <ul> <li>inline elements within the anchor tag</li> <li>background images for the anchor tag</li> </ul> <p>You can do all of that in CSS and/or markup, keeping the javascript nice and simple.</p> <p>The third alternative would be to bind the icon element to the hyperlink's event handler method, but the end result is less optimal and it requires the most work.</p> http://stackoverflow.com/questions/260857/changing-website-favicon-dynamically/260876#260876 6 Answer by keparo for Changing website favicon dynamically keparo 2008-11-04T04:21:38Z 2008-11-04T04:34:23Z <p>Why not?</p> <pre><code>function() { var link = document.createElement('link'); link.type = 'image/x-icon'; link.rel = 'shortcut icon'; link.href = 'http://www.stackoverflow.com/favicon.ico'; document.getElementsByTagName('head')[0].appendChild(link); }(); </code></pre> <p>Firefox should be cool with it.</p> http://stackoverflow.com/questions/260685/what-is-the-best-scheme-implementation-for-working-through-sicp/260705#260705 9 Answer by keparo for What is the best Scheme implementation for working through SICP? keparo 2008-11-04T02:58:28Z 2008-11-04T02:58:28Z <p>Use <a href="http://www.gnu.org/software/mit-scheme/" rel="nofollow"><strong>MIT Scheme</strong></a>.</p> <p>It's recommended by the authors of SICP, and is used at MIT for the <strong>6.001: Structure and Interpretation of Computer Programs</strong> course.</p> http://stackoverflow.com/questions/257934/what-browser-screenwidth-should-i-design-for-to-support-mac-os/257953#257953 5 Answer by keparo for What browser screenwidth should I design for to support Mac OS ? keparo 2008-11-03T04:50:22Z 2008-11-03T07:16:39Z <p><strong>Design away, my friend. The Apple display packs many pixels.</strong></p> <p>A window <strong>will open to fullscreen</strong> on the Mac, no problem. It simply conserves space when it can, unlike the PC behavior, which will fill the screen regardless of how much space the site actually needs.</p> <p>In other words, the case where the Mac doesn't open the window fullscreen is the case where the user has <strong>room to spare</strong>. So those are cases you don't need to worry about. If a Mac OS browser has to go fullscreen to fit the site, it will. But when the site is only 960px and the user has a gorgeous <strong>2560x1600 cinema display</strong>, it will stop at 960, enough to eliminate the horizontal scrollbars.</p> <p>The reason people notice this behavior is because apple displays are often too big, so the fullscreen is often not needed. The <em>smallest</em> display Apple ships on any notebook is a roomy <strong>1280x800</strong>. The smallest iMac is already <strong>1680x1050</strong>. They only get bigger from there.</p> <p>As far as choosing your dimensions, the normal considerations apply. Play to your <strong>lowest common denominator</strong>. Simply know that the screen resolution of even a modest apple display will be on par with the industry standard. If you're willing to go 990 or 960 for the PC, it will <strong>also be acceptable for the Mac</strong>.</p> <p><img src="http://a248.e.akamai.net/7/248/2041/1469/as-images.apple.com/is/image/AppleInc/M9177?wid=185&amp;hei=185&amp;fmt=jpeg&amp;qlt=95&amp;op_sharpen=0&amp;resMode=bicub&amp;op_usm=0.5,0.5,0,0&amp;iccEmbed=0&amp;layer=comp" alt="" /></p> <p>Most of the designers I work with are more concerned with making designs <em>too narrow</em> for Apple users. They design in the 960 pixel realm so that it works for the larger audience, and then they try to find creative ways of showing a little extra love to the owners of that giant cinema display.</p> <p><strong>Sidenote:</strong> @Taylor Marshall asks a good question: "What if the widths are all set to 100%? How big does [the browser window] get..?" </p> <p>Without any constraints, Firefox will simply go fullscreen, like the MS Windows behavior. Safari will expand up to a width of 800px, unless the width is already greater than 800, in which case it maintains that width and only modifies the window height. Of course, if there aren't any hard width values, then the design is a liquid layout, so the concern about designing for a particular width is somewhat altered. Usually good liquid layouts, despite being displayed correctly at any dimension, are nonetheless designed to be viewed at reasonable window widths.</p> http://stackoverflow.com/questions/255470/what-are-the-different-doctypes-in-html-and-what-do-they-mean/255474#255474 27 Answer by keparo for What are the different doctypes in html and what do they mean? keparo 2008-11-01T03:23:52Z 2008-11-03T00:40:34Z <p>A <strong>Doctype</strong>, or <strong>Document Type Declaration</strong> associates the document with a <strong>Document Type Definition</strong>.</p> <p>The <strong>Document Type Definition</strong> is a standard for an XML document. There are many DTDs, for both XML and XHTML documents. XML itself doesn't have much of a schema or a very specific set of rules, apart from the requirement that everything be well-formed. You can think of a DTD as a more specific <strong>schema for the document</strong>.</p> <p><strong>Rendering Modes</strong></p> <p>Due to the standards movement, most modern browsers actually have different rendering modes (<strong>standards mode</strong>, for rendering your document and css according to more recent web standards, and <strong>quirks mode</strong>, wherein the browser brings back some rendering ideas from the early days of the web). These modes are instituted for purposes of <strong>backward-compatibility</strong>. The vast landscape of web pages which were created in the first era of the web are rendered according to the rules of their time, while newer documents can appeal to the new wave of standards. As time goes on and new formats are imagined, a corresponding DTD could potentially be created.</p> <p><strong>Browser Discrepancies</strong></p> <p>In an ideal world, a page that is being loaded by a browser would read the Doctype at the top and use it to look up a Document Type Definition. It would then use the <strong>schema of that DTD</strong> as the basis for reading the rest of the document. Doctypes, then, would be essential for <strong>validating</strong> markup documents. The DTD would provide the standard against which your document is to be validated.</p> <p>Unfortunately, it's not an ideal world. Browsers don't necessarily behave consistently here, and if they do, the consistent behavior isn't quite in line with the original vision for Doctypes. Although parsing is done independently of the Doctype, major browsers will at least examine the Doctype to determine the <strong>rendering mode</strong>. If your Doctype is absent or is incomplete, the browser will likely be rendering in <strong>quirks mode</strong>. For well-written, modern documents to appear correctly, the browser should be <strong>rendering in standards mode</strong>. Mozilla, Safari, and some recent versions of Opera actually implement an <a href="http://https://developer.mozilla.org/en/Mozilla%27s_DOCTYPE_sniffing" rel="nofollow"><strong>Almost Standards</strong></a> mode, which is dedicated entirely to transitional pages.</p> <p>When you <strong>change the Doctype</strong> and notice changes in the way a page is displayed, it is because the browser may be applying a slightly different set of rules when it <strong>tries to parse</strong> the document. As a consequence, the resulting page may be a little bit different, depending on whether all of its parts <strong>conform to the DTD</strong>, or at least, depending on the browser, that your data validates within the <strong>rendering mode</strong> that the doctype suggests.</p> <p><strong>Choosing a Doctype</strong></p> <p>In pursuit of standards-compliance, strict Doctypes should be used whenever possible.</p> <p>When writing in <strong>XHTML</strong>, this Doctype is common:</p> <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; </code></pre> <p>When writing in <strong>HTML 4.1</strong>, this one is common instead:</p> <pre><code>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"&gt; </code></pre> <p>Some other common doctypes for XHTML and HTML 4 are listed here, for completeness:</p> <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt; &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"&gt; &lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"&gt; &lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd"&gt; </code></pre> <p><strong>Debate on Strict versus Transitional Doctypes</strong></p> <p>Standards evangelists have called for web developers to stop using the Transitional Doctype on new pages and instead use Strict. Again, this is a case where the theory and the practice have some difficulties being reconciled. The original hope of the transitional Doctype was to provide a halfway house for transitioning legacy websites toward standards-compliance. With transitional doctypes, the restriction on elements and attributes is literally "less strict", so developers would be able to get their work running under standards mode sooner, and phase out the outstanding differences over time.</p> <p>Controversy exists because it isn't always quite so simple for a developer change the Doctype in an enterprise environment. Freelance developers and makers of small- or medium- sized websites may often have an easier time determining their Doctype and making this transition. In an enterprise production environment for a highly-demanded web-based service, there are inherently more complicated dependencies on legacy systems and 3rd party code products, which themselves may be on a roadmap for removal or redesign, but the execution of such changes must be done methodically and incrementally.</p> <p><strong>Helpful Tools</strong></p> <p>The W3C (<a href="http://en.wikipedia.org/wiki/W3C" rel="nofollow"><strong>World Wide Web Consortium</strong></a>) is a group which plays an active role in defining these kinds of standards. They maintain a helpful online tool at <a href="http://validator.w3.org/" rel="nofollow"><strong><a href="http://validator.w3.org/" rel="nofollow">http://validator.w3.org/</a></strong></a> for verifying and validating documents against their standards. There are many other 3rd party tools and <a href="http://https://addons.mozilla.org/en-US/firefox/search?q=validator&amp;cat=all" rel="nofollow"><strong>browser extensions</strong></a> with similar functionality.</p> http://stackoverflow.com/questions/227738/is-there-an-upper-limit-to-z-index-values-in-web-browsers/227747#227747 6 Answer by keparo for Is there an upper limit to z-index values in web browsers? keparo 2008-10-22T22:22:35Z 2008-11-01T22:36:48Z <p>Not really, but you might consider the natural limitations of a system, like an int range. I'd <strong>probably keep it under 32,767</strong>. I've definitely exceeded that in javascript while working on a similar problem, and didn't encounter any problems on the major browsers and platforms that I was concerned about at the time.</p> <p>In the case of 3rd party ads and overlays, making sure that <strong>wmode="transparent"</strong> on the flash embed is a common problem along the same lines. Also worth noting that IE has a bug with stacking z-indexes, so if you're not seeing success, make sure you're not hitting your head up against the wall with that one*.</p> <p>I always like to keep to some kind of <strong>convention</strong>, and not use arbitrary figures. For example, maybe everything in my <strong>css falls between 0 and 10</strong>. Maybe dhtml stuff happens in the 100's place values, with a meaningful z-index for any given module.</p> <p><strong>*Sidenote:</strong> The IE bug, to be specific, is that IE considers a new instance of document flow to be a new stacking context for z-index. You need to make sure that your z-indexes aren't being lost in the DOM hierarchy when a child node that would normally be inheriting your z-index is being rendered it's own positioning context.</p> http://stackoverflow.com/questions/225367/is-there-any-good-javascript-hashcode-table-implementation-out-there/225403#225403 16 Answer by keparo for Is there any good JavaScript hash(code/table) implementation out there? keparo 2008-10-22T11:39:26Z 2008-11-01T05:34:05Z <p>In javascript, <strong>objects are literally a hash implementation</strong>. A Java HashMap will be a little bit of a fake-out, so I'd <strong>challenge you</strong> to re-think your needs.</p> <p>The <strong>straight answer is no</strong>, I don't believe that there is a great implementation of Java's HashMap in javascript. If there is, it's bound to be part of a library that you may or may not want to use, and you certainly <strong>don't need to include a library</strong> just to have a little hash table.</p> <p>So let's go ahead and write one, just to <strong>examine the problem</strong>. You can use it if you like. We'll just start by writing a constructor, and we'll piggyback off of Array, which is Object, but has some useful methods that will keep this example from getting too tedious:</p> <pre><code>function HashMap () { var obj = []; return obj; } var myHashMap = HashMap(); </code></pre> <p>We'll add some methods straight from the world of Java, but translate into javascript as we go...</p> <pre><code>function HashMap() { var obj = []; obj.size = function () { return this.length; }; obj.isEmpty = function () { return this.length === 0; }; obj.containsKey = function (key) { for (var i = 0; i &lt; this.length; i++) { if (this[i].key === key) { return i; } } return -1; }; obj.get = function (key) { var index = this.containsKey(key); if (index &gt; -1) { return this[index].value; } }; obj.put = function (key, value) { if (this.containsKey(key) !== -1) { return this.get(key); } this.push({'key': key, 'value': value}); }; obj.clear = function () { this = null; // Just kidding... }; return obj; } </code></pre> <p>We could continue to build it out, but I think it's the wrong approach. At the end of the day, we end up using what javascript provides behind the scenes, because we just simply don't have the HashMap type. In the process of <strong>pretending</strong>, it lends itself to all kinds of <strong>extra work</strong>. </p> <p>It's a bit ironic that one of the things that makes javascript such an interesting and diverse language is the ease with which it handles this kind of <strong>wrestling</strong>. We can literally do anything we'd like, and the quick example here does nothing if it doesn't illustrate the deceptive power of the language. Yet given that power, it seems <strong>best not to use it</strong>.</p> <p>I just think javascript wants to be lighter. My personal recommendation is that you re-examine the problem before you try implement a proper Java HashMap. <strong>Javascript neither wants nor affords for one</strong>.</p> <p><strong>Remember the native alternative</strong>:</p> <pre><code>var map = [{}, 'string', 4, {}]; </code></pre> <p>..so fast and easy by comparison.</p> <p>On the other hand, I don't believe that there are any hard-and-fast answers here. This implementation really <strong>may be a perfectly acceptable solution</strong>. If you feel you can use it, I'd say <strong>give it a whirl</strong>. But I'd never use it if I felt that we have <strong>reasonably simpler and more natural means</strong> at our disposal.. which I'm almost certain that we do.</p> <p><strong>Sidenote:</strong> Is efficiency related to style? Notice the <strong>performance hit</strong>.. there's a big O staring us in the face at HashMap.put()... The less-than-optimal performance probably isn't a show-stopper here, and you'd probably need to be doing something very ambitious or have a large set of data before you'd even notice a performance hickup a modern browser. It's just interesting to note that operations tend to become less efficient when you're working against the grain, almost as if there is a natural entropy at work. Javascript is a high level language, and should offer efficient solutions when we keep in line with its conventions, just as a HashMap in Java will be a much more natural and high performing choice.</p> http://stackoverflow.com/questions/373598/when-would-you-use-the-mediator-design-pattern/373624#373624 Comment by keparo on When would you use the mediator design pattern keparo 2009-01-01T05:01:14Z 2009-01-01T05:01:14Z (added a note above) http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/165888#165888 Comment by keparo on What real life bad habits has programming given you? keparo 2008-11-24T00:43:13Z 2008-11-24T00:43:13Z It also helps to think of your body as an overweight human body. http://stackoverflow.com/questions/307364/javascript-ie7-why-wont-my-onload-function-fire/307398#307398 Comment by keparo on JavaScript & IE7 - Why won't my *.onload = function() { } fire? keparo 2008-11-21T00:30:40Z 2008-11-21T00:30:40Z I've added a link to the answer which inludes an example snippet. http://stackoverflow.com/questions/294436/information-retreval-system-on-metacritic Comment by keparo on information retreval system on Metacritic keparo 2008-11-16T22:33:40Z 2008-11-16T22:33:40Z Please see <a href="http://stackoverflow.com/faq" rel="nofollow">stackoverflow.com/faq</a> for help on asking questions. http://stackoverflow.com/questions/292101/browser-neutral-way-to-add-options-to-a-select-element-in-javascript/292122#292122 Comment by keparo on Browser Neutral Way to add options to a select element in javascript keparo 2008-11-15T06:50:24Z 2008-11-15T06:50:24Z But I NEED that IE 4 solution. http://stackoverflow.com/questions/280049/javascript-callback-for-knowing-when-an-image-is-loading/280087#280087 Comment by keparo on Javascript callback for knowing when an image is loading keparo 2008-11-14T09:35:09Z 2008-11-14T09:35:09Z Exactly right. Be sure to test, especially if you care about supporting some of the obscure browsers. http://stackoverflow.com/questions/285442/css-cleaner Comment by keparo on CSS cleaner keparo 2008-11-12T21:42:52Z 2008-11-12T21:42:52Z @Cruachan- I misread this.. my bad. http://stackoverflow.com/questions/282429/returning-redirect-as-response-to-xhr-request/282453#282453 Comment by keparo on Returning redirect as response to XHR request. keparo 2008-11-12T00:06:55Z 2008-11-12T00:06:55Z That's right. 30X responses may contain a Location as well: <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html" rel="nofollow">w3.org/Protocols/rfc2616/&hellip;</a> http://stackoverflow.com/questions/277256/cancel-a-css-declaration/277275#277275 Comment by keparo on Cancel a CSS declaration keparo 2008-11-10T07:27:45Z 2008-11-10T07:27:45Z &quot;inherit&quot; rather than &quot;inherited&quot; http://stackoverflow.com/questions/277016/poor-safari-rendering/277027#277027 Comment by keparo on Poor Safari Rendering keparo 2008-11-10T04:02:48Z 2008-11-10T04:02:48Z I've added some links to validation services (see above). http://stackoverflow.com/questions/268119/whats-the-worst-piece-of-code-you-have-come-across Comment by keparo on Whats the worst piece of code you have come across? keparo 2008-11-06T10:10:35Z 2008-11-06T10:10:35Z Refer to the FAQ for help on writing questions: <a href="http://stackoverflow.com/faq" rel="nofollow">stackoverflow.com/faq</a> http://stackoverflow.com/questions/267892/how-do-you-implement-pagination-in-php Comment by keparo on How do you implement pagination in PHP? keparo 2008-11-06T08:24:09Z 2008-11-06T08:24:09Z StackOverflow is a reference tool for programming. Please refer to the FAQ for tips on asking questions: <a href="http://stackoverflow.com/faq" rel="nofollow">stackoverflow.com/faq</a> http://stackoverflow.com/questions/267160/what-is-the-operation-aborted-error-in-internet-explorer/267331#267331 Comment by keparo on What is the "Operation Aborted" error in Internet Explorer? keparo 2008-11-06T01:38:09Z 2008-11-06T01:38:09Z Hey Andrew. I wonder if this should read: &quot;... this is my LIFE we're talking about.&quot; http://stackoverflow.com/questions/266585/why-does-asp-net-cause-the-operation-aborted-error-in-ie7/266726#266726 Comment by keparo on Why does ASP.NET cause the "Operation Aborted" Error in IE7? keparo 2008-11-05T22:31:40Z 2008-11-05T22:31:40Z The framework is responsible. It's executing a way in which this condition exists, depending on when resources load. http://stackoverflow.com/questions/266569/whats-your-first-program-that-you-were-proud-of Comment by keparo on What's your first program that you were proud of? keparo 2008-11-05T20:55:29Z 2008-11-05T20:55:29Z perhaps community wiki material?