User Joeri Sebrechts - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T13:44:05Z http://stackoverflow.com/feeds/user/20980 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1830810/where-can-i-learn-about-how-do-developer-browser-bookmarklets-language-framewor/1831603#1831603 1 Answer by Joeri Sebrechts for where can I learn about how do developer browser bookmarklets (language, framework, IDE, techniques etc)? Joeri Sebrechts 2009-12-02T08:58:52Z 2009-12-02T08:58:52Z <p><a href="http://www.webreference.com/js/column35/" rel="nofollow">http://www.webreference.com/js/column35/</a> ?</p> http://stackoverflow.com/questions/108631/what-is-your-single-favorite-development-tool/186754#186754 41 Answer by Joeri Sebrechts for What is your single favorite development tool? Joeri Sebrechts 2008-10-09T11:02:01Z 2009-11-25T15:41:58Z <p><a href="http://getfirebug.com/" rel="nofollow">Firebug</a>. Doing web development without it is like typing with one hand instead of two.</p> http://stackoverflow.com/questions/1786243/what-should-i-learn/1790333#1790333 0 Answer by Joeri Sebrechts for What should I learn? Joeri Sebrechts 2009-11-24T14:12:41Z 2009-11-24T14:12:41Z <p>Convince your employer to get you a <a href="http://my.safaribooksonline.com/?portal=oreilly" rel="nofollow">Safari subscription</a>, and then read tons of books on web development. They have all the best ones, and they're searchable. I regularly come across problems that don't have solutions in google, but do have solutions in safari.</p> <p>You could start with "Ajax for dummies", if you really feel out of your depth ;)</p> http://stackoverflow.com/questions/1705952/is-possible-to-debug-dynamic-loading-javascript-by-some-debugger-like-webkit-fir/1706796#1706796 0 Answer by Joeri Sebrechts for Is possible to debug dynamic loading JavaScript by some debugger like WebKit, FireBug or IE8 Developer Tool? Joeri Sebrechts 2009-11-10T09:57:41Z 2009-11-10T09:57:41Z <p>Try adding a "debugger;" statement in the javascript you're adding dynamically. This should cause it to halt at that line regardless of breakpoint settings.</p> http://stackoverflow.com/questions/1661733/how-does-javascript-memory-work-in-browsers/1662347#1662347 5 Answer by Joeri Sebrechts for How does JavaScript memory work in browsers? Joeri Sebrechts 2009-11-02T16:39:57Z 2009-11-02T16:39:57Z <p>Some things to keep in mind:</p> <ul> <li>IE gets killed by DOM complexity. The more elements are part of the page, the slower it gets. I've seen pages slow down noticeably with as little as 3000 elements on them (if you have a grid with 10 columns and 100 rows, that's 1000 elements right there). The right approach is typically to unload hidden parts from the DOM (detach them)</li> <li>IE also has a long history of not correctly freeing HTML elements if they have javascript handlers attached. If you have a long-lived page that's often refreshed, read up on IE memory leaks, and how to work around those issues.</li> <li>All browsers store images uncompressed in memory. So, if you're preloading a gazillion large images in the background, that's generally a bad idea.</li> <li>Updating DOM properties will cause page reflows, which on complex pages can take a long time. Sometimes even fetching DOM properties (e.g. offsetHeight) will be very very slow.</li> </ul> <p>Generally, javascript itself is not a performance bottleneck. What kills it is the interaction with the DOM. Code that doesn't touch the DOM rarely has performance issues. There are only rules of thumb here: interact with the DOM as rarely as possible, keep DOM complexity as low as possible, avoid repeated page reflows.</p> http://stackoverflow.com/questions/1642667/how-to-take-convert-a-webpage-to-a-image-in-javascript-google-web-tool-kit/1643478#1643478 2 Answer by Joeri Sebrechts for How to take convert a webpage to a image in javascript / Google web tool kit Joeri Sebrechts 2009-10-29T12:48:26Z 2009-10-30T10:45:43Z <p><a href="http://stackoverflow.com/questions/60455/take-a-screenshot-of-a-webpage-with-javascript">http://stackoverflow.com/questions/60455/take-a-screenshot-of-a-webpage-with-javascript</a></p> <p>Firefox has a "drawWindow" method on the canvas element that lets you copy a screenshot of the window into a canvas element (from where it can then be extracted). This is however not enabled for webpages (only for add-ons), because it forms a security risk: <a href="http://mxr.mozilla.org/mozilla/source/content/canvas/src/nsCanvasRenderingContext2D.cpp#2352" rel="nofollow">http://mxr.mozilla.org/mozilla/source/content/canvas/src/nsCanvasRenderingContext2D.cpp#2352</a></p> <p>In short, plugins (or activex components) are the only sure way to go. Browsers aren't going to provide this as standard functionality because the risks outweigh the benefits.</p> http://stackoverflow.com/questions/1577757/do-you-plan-for-javascript-being-off/1583280#1583280 0 Answer by Joeri Sebrechts for Do you plan for javascript being off? Joeri Sebrechts 2009-10-17T21:31:20Z 2009-10-17T21:31:20Z <p>Like others have said, it depends.</p> <p>There are three traditional use cases where disabled javascript was "expected": </p> <ul> <li>mobile</li> <li>people with disabilities</li> <li>high-security environments.</li> </ul> <p>All of these are evolving to include javascript in the normal usage scenario:</p> <ul> <li>Mobile browsers are gaining advanced javascript support</li> <li>The web accessibility standards are currently being overhauled to support javascript-driven web sites.</li> <li>Browsers like google chrome demonstrate that javascript engines can be effectively sandboxed.</li> </ul> <p>So, the long term trend is that for all cases you are going to be expected as a user to have javascript enabled. The question regarding what you do today is based on your target audience and what they're using right now. This you should know.</p> <p>Progressive rendering ... that's a different topic. Gmail doesn't do progressive rendering, it just has a separate front-end for people who can't use the full front-end. That separate front-end doesn't do everything the full gmail does. Myself I make web apps, and I tried progressive rendering for a while, but ended up using gmail's model in the end:</p> <ul> <li>Rich front-end, requires modern browsers with javascript and styling enabled. If the browser is not capable enough, it falls back to ...</li> <li>Simple front-end, basic html, basic featureset, targetted towards mobile devices, but usable for people with disabilities also</li> </ul> <p>This model allows me to deliver a better user experience for all my users, at a lower cost than when using progressive rendering. YMMV.</p> http://stackoverflow.com/questions/1533999/javascript-prototype-inheritance/1537239#1537239 0 Answer by Joeri Sebrechts for javascript prototype inheritance Joeri Sebrechts 2009-10-08T11:31:17Z 2009-10-08T11:31:17Z <p>This behavior happens because you're not assigning a value to "list", you're modifying it.</p> <p>This is perfectly sensible behavior when you realize how the prototype chain works. When you reference obj1.list, it first looks if "list" exists in obj1, uses that if found, and otherwise uses the one found on obj1.prototype (which is MyClass.prototype.list).</p> <p>So:</p> <pre><code>obj1.list.push("test"); // modifies MyClass.prototype.list obj1.list = ["new"]; // creates a "list" property on obj1 obj1.list.push("test"); // modifies obj1.list, not MyClass.prototype.list delete obj1.list; // removes the "list" property from obj1 // after the delete, obj1.list will point to the prototype again obj1.list.push("test"); // again modifies MyClass.prototype.list </code></pre> <p>The most important take-away is this: "prototypes are not classes". Prototypes can do a reasonably good job of faking classes, but they are not classes, so you should not treat them as such.</p> http://stackoverflow.com/questions/1222297/rapid-web-application-development-with-a-web-toolkit/1483918#1483918 1 Answer by Joeri Sebrechts for Rapid web application development with a Web Toolkit Joeri Sebrechts 2009-09-27T16:45:51Z 2009-09-27T16:45:51Z <p>The PHP project I've been working on the past few years is a lot like that. Heavy on forms, heavy on server-side logic, but lots of redundant form coding. Too make matters worse, it wasn't all forms, sometimes we actually need to do fancy layout (even just doing a tree control is a pain without a library), and the home-grown nature of the UI meant that I would be battling browser quirks from start to finish.</p> <p>So, I got to thinking about what a better architecture would be. We needed very powerful form controls, rich grids, rich trees, advanced layout, and we needed to migrate to that gradually. None of the PHP frameworks seemed to fit. Then I took a step back and realized that it didn't have to be PHP, it could be javascript also. We already had a requirement on javascript, so it was fine to go the distance with it. First I looked at the smaller libraries, jquery, prototype, but it became obvious that they didn't do enough. So I looked at Dojo, ExtJS, YUI, all the really heavy javascript toolkits, and settled on ExtJS as having the best controls.</p> <p>We had a UI structure that relied heavily on iframes, a navigation frame on the outside, application frames inside that, feature frames inside that, and so on. What we ended up with is we're migrating those from the outside in. It's all becoming ExtJS, and it's all living in the same page. The server-side code is kept the same, but it's migrated into web services. At the same time we've integrated zend framework, and are porting some of the stuff you really shouldn't do home-grown to it, like authentication and translation.</p> <p>The end goal is being able to write just the business logic without having to mess with all the boilerplate. It's too early to know if my approach will pan out, but I think my message would be to be critical towards your code base and decide which parts you want to keep writing yourself, and which parts you want to outsource to a library.</p> http://stackoverflow.com/questions/1454213/should-i-accept-ie-5-0-as-a-browser-requirement-for-a-project/1454430#1454430 2 Answer by Joeri Sebrechts for Should I accept IE 5.0 (!) as a browser requirement for a project? Joeri Sebrechts 2009-09-21T13:07:29Z 2009-09-21T13:07:29Z <p>Is this IE5 for mac, windows or unix? They all have very different behavior, so you'll need to make sure exactly which platform they're talking about. For example, the mac version is based on a different rendering engine than the windows/unix versions, so it has very different CSS support.</p> <p>I agree with the rest: go for graded browser support. Use yahoo's graded browser support method, where A-grade (modern) browsers get full support, and C-grade browsers, like IE5, get core feature support, but nothing else (no scripting, no styling). A well-executed C-grade front-end can be quite usable and compatible with pretty much anything that renders HTML.</p> http://stackoverflow.com/questions/761966/how-to-build-ldap-integration-for-my-web-app/1427780#1427780 0 Answer by Joeri Sebrechts for How to build LDAP integration for my web app? Joeri Sebrechts 2009-09-15T15:09:55Z 2009-09-15T15:09:55Z <p>The way this works in our system:</p> <ul> <li>When a user navigates to the web app, the REMOTE_USER server variable is assumed to be the user token</li> <li>The login code connects to the ldap directory with a search-specific account</li> <li>The login code looks for an ldap account that "matches" the REMOTE_USER</li> <li>The login code then tries to match that account with an account in our system</li> <li>If matching is possible all the way through, assume the user logged in as the matched account, continue normally</li> </ul> <p>This way the user can reuse their windows domain authentication inside our app.</p> http://stackoverflow.com/questions/1343647/how-can-i-choose-the-closest-match-in-sql-server-2005/1343711#1343711 0 Answer by Joeri Sebrechts for How can I choose the closest match in SQL Server 2005? Joeri Sebrechts 2009-08-27T21:00:10Z 2009-08-27T21:00:10Z <p>For close matches you can also look at a number of string similarity algorithms.</p> <p>For example, in Oracle there is the UTL_MATCH.JARO_WINKLER_SIMILARITY function:<br> <a href="http://www.psoug.org/reference/utl%5Fmatch.html" rel="nofollow">http://www.psoug.org/reference/utl%5Fmatch.html</a></p> http://stackoverflow.com/questions/1341905/what-is-an-excellent-software-architecture/1341964#1341964 0 Answer by Joeri Sebrechts for What is an excellent software architecture? Joeri Sebrechts 2009-08-27T15:48:20Z 2009-08-27T15:48:20Z <p>When talking about how "beautiful" a design is, you're never going to agree on anything.</p> <p>Better to reduce the discussion to facts and figures:</p> <ul> <li>Defect rates, average defect time-to-solve, and other various statistics to detect code quality</li> <li>Metrics to measure features delivered (e.g. lines of code), and comparisons to commonly accepted industry models like COCOMO</li> <li>Metrics to measure project time to market, again with comparisons to common models.</li> </ul> <p>If the facts say you're doing your job well, your boss has no argument. If your boss insists on arguing, you need a better boss (he's probably just trying to prevent you from getting a pay raise or something like that).</p> http://stackoverflow.com/questions/1271379/is-there-anyway-to-tell-if-a-website-is-coded-in-php-or-asp/1271423#1271423 0 Answer by Joeri Sebrechts for IS there anyway to tell if a website is coded in PHP or ASP Joeri Sebrechts 2009-08-13T11:31:13Z 2009-08-13T11:31:13Z <p>Look at session tokens. PHP by default uses a PHPSESSID cookie name.</p> http://stackoverflow.com/questions/1265048/best-way-to-filter-unwanted-elements-from-html-before-rendering/1265053#1265053 4 Answer by Joeri Sebrechts for best way to filter unwanted elements from html before rendering Joeri Sebrechts 2009-08-12T09:04:37Z 2009-08-12T15:46:51Z <p>Don't use PHP to munge the HTML, but instead use a print stylesheet to change the layout.</p> <p><a href="http://www.webcredible.co.uk/user-friendly-resources/css/print-stylesheet.shtml" rel="nofollow">http://www.webcredible.co.uk/user-friendly-resources/css/print-stylesheet.shtml</a></p> <p><strong>Edit after your clarification:</strong><br> I still think stylesheets are the way to go to hide content. If you're not stripping tags for security purposes, then I don't really know what you're trying to achieve exactly by stripping content server-side.</p> http://stackoverflow.com/questions/1254274/how-most-visited-works-in-applications/1265597#1265597 0 Answer by Joeri Sebrechts for how "most visited" works in applications Joeri Sebrechts 2009-08-12T11:31:05Z 2009-08-12T11:31:05Z <p>You could use a leaky bucket abstraction.</p> <p>Store the number of visits, and the date that this was last updated. When you update it, set number of visits to<br> (old number - (days since last update * aging factor) + 1)</p> <p>When you query it, always normalize with<br> (number of visits - (days since last update * factor))<br> And then you can just order by the result of that.</p> <p>The larger the aging factor, the faster the number would decline.</p> <p>You could also use the square (or cube) of "days since last update" to decay faster the older the last visit gets.</p> http://stackoverflow.com/questions/1265041/is-it-necessary-to-know-flash-designing-for-flex3/1265072#1265072 0 Answer by Joeri Sebrechts for Is it necessary to know flash designing for flex3 ? Joeri Sebrechts 2009-08-12T09:08:02Z 2009-08-12T09:08:02Z <p>It depends on what you mean by "knowing flash". You don't have to know anything about how to do graphic design in flash, because flex is its own beast. You do have to know about the data structures and API's provided by the flash plugin, and about actionscript.</p> http://stackoverflow.com/questions/1261825/subversion-should-anyone-be-developing-off-the-trunk/1261935#1261935 1 Answer by Joeri Sebrechts for Subversion - should anyone be developing off the trunk? Joeri Sebrechts 2009-08-11T17:47:27Z 2009-08-11T17:47:27Z <p>There's an argument to be made that developers should be required to work on trunk.</p> <p>If you let them branch off, some will be tempted to maintain those branches indefinitely and cross-sync with trunk at regular intervals. This will inevitably lead to complicated merge operations, and these in turn produce bugs.</p> <p>By forcing everyone onto trunk, they have to keep pretty close to the head, so there will be less risk of bugs being introduced with bad merges. Also, since everyone runs up-to-date code, they're more likely to notice bugs as they creep up, and fixes will get committed faster.</p> <p>Ofcourse, sometimes a large feature needs to be staged separately, but in those cases a specially approved exception can be made.</p> http://stackoverflow.com/questions/1241570/what-is-the-correct-safest-way-to-escape-input-in-a-forum/1253947#1253947 0 Answer by Joeri Sebrechts for What is the correct/safest way to escape input in a forum? Joeri Sebrechts 2009-08-10T09:37:22Z 2009-08-10T09:37:22Z <p>First of all, general advice: don't escape variables literally when inserting in the database. There are plenty of solutions that let you use prepared statements with variable binding. The reason to not do this explicitly is because it is only a matter of time then before you forget it just once.</p> <p>If you're inserting plain text in the database, don't try to clean it on insert, but instead clean it on display. That is to say, use <a href="http://be.php.net/manual/en/function.htmlentities.php" rel="nofollow">htmlentities</a> to encode it as HTML (and pass the correct charset argument). You want to encode on display because then you're no longer trusting that the database contents are correct, which isn't necessarily a given.</p> <p>If you're dealing with rich text (html), things get more complicated. Removing the "evil" bits from HTML without destroying the message is a difficult problem. Realistically speaking, you'll have to resort to a standardized solution, like <a href="http://htmlpurifier.org/" rel="nofollow">HTMLPurifier</a>. However, this is generally too slow to run on every page view, so you'll be forced to do this when writing to the database. You'll also have to ensure that the user can see their "cleaned up" html and correct the cleaned up version.</p> <p>Definitely try to avoid "rolling your own" filter or encoding solution at any step. These problems are notoriously tricky, and you run a large risk of overlooking some minor detail that has big security implications.</p> http://stackoverflow.com/questions/1242915/page-performance-in-ie7-with-a-large-page/1243970#1243970 0 Answer by Joeri Sebrechts for Page Performance in IE7 with a large page Joeri Sebrechts 2009-08-07T10:06:12Z 2009-08-07T10:06:12Z <p>One of the <a href="http://developer.yahoo.com/performance/rules.html" rel="nofollow">Yahoo performance rules</a> is "Reduce the number of DOM elements". They say this for a reason.</p> <p>When you start to go into the range of "thousands" of DOM elements, IE bogs down pretty rapidly. Every interaction with the page becomes slow. The only "solution" is to use fewer DOM elements.</p> <p>For example, I recently made a web app containing 4 grids with 100 rows each with around 10 columns, all visible at the same time. Those 4000 cells were making IE really slow. I solved this by using a buffered view grid, that only renders the visible rows, and removes the rows outside of the visible scroll area from the DOM (using the ExtJS grid if it interests you).</p> http://stackoverflow.com/questions/1234320/the-best-way-to-represent-key-value-pairs-in-html-class-names/1235216#1235216 2 Answer by Joeri Sebrechts for The Best Way To Represent key/value Pairs In HTML Class Names Joeri Sebrechts 2009-08-05T19:24:25Z 2009-08-05T19:24:25Z <p>HTML5 is going to add data-* attributes for just this purpose, and these already work in every browser today (but might send some validators for a loop).</p> <p><a href="http://ejohn.org/blog/html-5-data-attributes/" rel="nofollow">http://ejohn.org/blog/html-5-data-attributes/</a></p> <pre><code>&lt;li class="user" data-name="John Resig" data-city="Boston" data-lang="js" data-food="Bacon"&gt; &lt;b&gt;John says:&lt;/b&gt; &lt;span&gt;Hello, how are you?&lt;/span&gt; &lt;/li&gt; </code></pre> http://stackoverflow.com/questions/1216019/for-a-website-is-it-true-the-mvc-pattern-is-only-used-on-the-server-side/1217562#1217562 2 Answer by Joeri Sebrechts for For a website, is it true the MVC pattern is only used on the server side? Joeri Sebrechts 2009-08-01T21:45:42Z 2009-08-01T21:45:42Z <p>MVC is a way of organizing source code. Where there is source code, you can have any of the three. There's no inherent client or server aspect to any part of the MVC pattern.</p> <p>For example, recently I implemented a gadget portal in pure javascript (like igoogle). I had a model class to load and save gadget configurations from a json data blob, and to manage the settings of those gadgets. Then I had a view that automatically rendered the gadgets currently loaded into the model based on events sent out by the model. Finally, I had a controller that relayed menu clicks in the rest of the application to update the model. That's MVC, but purely in javascript, and purely client-side.</p> http://stackoverflow.com/questions/1205740/how-can-i-convince-my-co-programmers-not-to-do-paranoid-just-to-be-sure-programm/1206118#1206118 1 Answer by Joeri Sebrechts for How can I convince my co-programmers not to do paranoid "just to be sure programming"? Joeri Sebrechts 2009-07-30T11:54:09Z 2009-07-30T11:54:09Z <p>Every line of code is an opportunity for bugs. Writing lines of code that don't influence the behavior of the program increases bugs without any benefit.</p> <p>I would lie in wait until a bug crops up that is directly attributed to code like this, then argue my case again. Much easier with evidence in hand.</p> http://stackoverflow.com/questions/1183827/how-to-separate-development-of-client-side-web-ui-and-the-server-side/1188461#1188461 0 Answer by Joeri Sebrechts for How to separate development of client-side web UI and the server side Joeri Sebrechts 2009-07-27T14:24:53Z 2009-07-27T14:24:53Z <p>You could try using a proxy on the developer's machine where some paths redirect to the server and some paths redirect to local folders.</p> http://stackoverflow.com/questions/1188338/net-or-php-corporate-or-open-source/1188408#1188408 1 Answer by Joeri Sebrechts for .NET or PHP, Corporate or Open-Source ? Joeri Sebrechts 2009-07-27T14:17:32Z 2009-07-27T14:17:32Z <p>The choice depends more on the type of project and the development approach.</p> <p>PHP will be more attractive to small projects, without a rigorous approach. ASP.net will integrate more quickly into a traditional development team's practices. This doesn't mean that you can't use PHP for "big" apps, or that ASP.net isn't any good for quick and dirty side projects. These are just aptitudes, and either can be bent to any purpose.</p> <p>In the end, what it boils down to is convention and taste. Pick the one you like, or the one the jobs are for, and use that. Or if you can, use both.</p> http://stackoverflow.com/questions/1162962/php-cgi-exe-does-it-detect-and-handle-both-cgi-and-fastcgi-if-so-how/1167499#1167499 1 Answer by Joeri Sebrechts for php-cgi.exe - does it detect and handle both CGI and FastCGI? If so, how? Joeri Sebrechts 2009-07-22T19:08:36Z 2009-07-22T19:08:36Z <p>Why not look at the PHP source code? As long as you don't copy their code line for line, there's no risk of IP issues.</p> http://stackoverflow.com/questions/1165229/clean-oo-structure-vs-sql-performance/1167305#1167305 0 Answer by Joeri Sebrechts for Clean OO-structure vs. SQL performance Joeri Sebrechts 2009-07-22T18:40:36Z 2009-07-22T18:40:36Z <p>You could always use memcached as an intermediate layer. Each query would be purely RAM-based, which means you can run as many as you want.</p> http://stackoverflow.com/questions/1160711/php-and-dealing-with-foreign-characters-for-utf-8-xml/1160817#1160817 -2 Answer by Joeri Sebrechts for PHP and dealing with foreign characters for UTF-8 XML Joeri Sebrechts 2009-07-21T18:17:58Z 2009-07-21T18:17:58Z <p>Don't bother with entity encoding. Use CDATA blocks instead.</p> <p>PHP doesn't understand UTF-8. It thinks it's a bytestream. Best to treat it that way. You're shuttling bytes around, and all you need to do is make sure they don't get parsed and they're labeled correctly.</p> http://stackoverflow.com/questions/1156989/how-to-make-php-faster-does-string-creation-have-no-cost/1158719#1158719 1 Answer by Joeri Sebrechts for How to Make PHP Faster: Does String Creation Have No Cost? Joeri Sebrechts 2009-07-21T11:47:45Z 2009-07-21T11:47:45Z <p>If you really want to speed this up, use this instead:</p> <pre><code>ob_start(); while ($item = current($data)) { echo '&lt;ATTR&gt;',$item, '&lt;/ATTR&gt;', "\n"; next($data); } </code></pre> <p>Output buffering flushes content more efficiently to the client, which speeds up your code much more than any micro-optimization can.</p> <p>As an aside, in my experience micro-optimization is a useless endeavour when it comes to PHP code. I've never seen a performance problem get solved by clever use of a particular concatenation or variable declaration method. Real solutions tend to involve change to design or architecture or the use of less complicated algorithms.</p> http://stackoverflow.com/questions/1158506/i-want-to-be-a-professional-programmer-but-im-afraid/1158608#1158608 2 Answer by Joeri Sebrechts for I want to be a professional programmer. But I'm afraid. Joeri Sebrechts 2009-07-21T11:21:37Z 2009-07-21T11:21:37Z <p>"What must I do to become a professional programmer?"</p> <p>A professional programmer is someone who never stops learning, who is always improving their craft, and who knows that there is a lot they don't know.</p> <p>The constant effort to keep improving your skill is really all you need. If you're surrounded by people smarter than you, that's actually a wonderful thing, because it means you can learn more rapidly by looking at what they're doing. Talent helps, but it's not mandatory.</p> <p>You have to love programming though. The only way to get really good at something is to love doing it.</p> http://stackoverflow.com/questions/1705952/is-possible-to-debug-dynamic-loading-javascript-by-some-debugger-like-webkit-fir/1706796#1706796 Comment by Joeri Sebrechts on Is possible to debug dynamic loading JavaScript by some debugger like WebKit, FireBug or IE8 Developer Tool? Joeri Sebrechts 2009-11-12T08:17:33Z 2009-11-12T08:17:33Z All I can find is this: <a href="http://code.google.com/p/fbug/issues/detail?id=1259" rel="nofollow">code.google.com/p/fbug/&hellip;</a> . By the way, I use script tag appending to the head to dynamically load scripts (but using a src attribute), and the code added this way is debuggable for me on all browsers, even if it's not loaded together with the initial page. http://stackoverflow.com/questions/1661733/how-does-javascript-memory-work-in-browsers/1662347#1662347 Comment by Joeri Sebrechts on How does JavaScript memory work in browsers? Joeri Sebrechts 2009-11-05T15:17:58Z 2009-11-05T15:17:58Z This stuff is too complicated to explain in detail in the comments, the links should give you a better explanation than I can. http://stackoverflow.com/questions/1661733/how-does-javascript-memory-work-in-browsers/1662347#1662347 Comment by Joeri Sebrechts on How does JavaScript memory work in browsers? Joeri Sebrechts 2009-11-04T13:41:07Z 2009-11-04T13:41:07Z The DOM tree is not revisioned. If you detach something from the DOM tree, and don't have any references left to it from javascript (not as easy as it sounds, because of prototype chains), then it will be garbage-collected. http://stackoverflow.com/questions/1661733/how-does-javascript-memory-work-in-browsers/1662347#1662347 Comment by Joeri Sebrechts on How does JavaScript memory work in browsers? Joeri Sebrechts 2009-11-04T13:39:26Z 2009-11-04T13:39:26Z You may find this useful: <a href="http://www.slideshare.net/lsimon/go-with-the-reflow" rel="nofollow">slideshare.net/lsimon/go-with-the-reflow/&hellip;</a> , also, this: <a href="https://library.mozilla.org/Faster_HTML_and_CSS:_Layout_Engine_Internals_for_Web_Developers" rel="nofollow">library.mozilla.org/Faster_HTML_and_CSS:_Layout_E&hellip;</a> http://stackoverflow.com/questions/1265048/best-way-to-filter-unwanted-elements-from-html-before-rendering Comment by Joeri Sebrechts on best way to filter unwanted elements from html before rendering Joeri Sebrechts 2009-08-12T11:18:30Z 2009-08-12T11:18:30Z Maybe you could explain more about the problem you're trying to solve, instead of immediately jumping to the mechanics. You'll get better answers that way. http://stackoverflow.com/questions/1243865/how-do-i-draw-curved-lines-on-an-html-page-using-javascript/1243871#1243871 Comment by Joeri Sebrechts on How do I draw curved lines on an HTML page using JavaScript? Joeri Sebrechts 2009-08-07T09:52:19Z 2009-08-07T09:52:19Z In IE I've had success using canvas by implementing it with ExplorerCanvas. It doesn't do high-performance stuff, but it is adequate for many purposes. <a href="http://excanvas.sourceforge.net/" rel="nofollow">excanvas.sourceforge.net</a> http://stackoverflow.com/questions/1234320/the-best-way-to-represent-key-value-pairs-in-html-class-names/1235216#1235216 Comment by Joeri Sebrechts on The Best Way To Represent key/value Pairs In HTML Class Names Joeri Sebrechts 2009-08-06T09:00:48Z 2009-08-06T09:00:48Z I don't know, since I haven't used it. But as I understand it this is one of those quirks that has always worked due to browsers being tag soup parsers (only now they're standardizing it). It's not valid html ofcourse (unless you're using a html5 doctype, which does work on IE6), but there are ways of adding these attributes after the page is loaded, so validators don't complain. http://stackoverflow.com/questions/1192641/major-project-suggestion/1192655#1192655 Comment by Joeri Sebrechts on Major Project Suggestion Joeri Sebrechts 2009-08-06T05:56:43Z 2009-08-06T05:56:43Z The stock market price is set by human expectation of what that price should be. The only way to perfectly predict the stock market is to predict how everyone that invests in it feels. http://stackoverflow.com/questions/1234978/which-functional-language-to-try-first/1235012#1235012 Comment by Joeri Sebrechts on Which functional language to try first? Joeri Sebrechts 2009-08-05T19:44:02Z 2009-08-05T19:44:02Z Javascript is only related to java by superficial syntax, and is based on scheme (in part). It has first-class functions and closures, and does not have classical inheritance. http://stackoverflow.com/questions/1230651/graph-drawing-for-the-web-2-0/1230672#1230672 Comment by Joeri Sebrechts on Graph drawing for the Web 2.0 Joeri Sebrechts 2009-08-05T19:31:37Z 2009-08-05T19:31:37Z To be clear, what the asker is looking for is a library (client or server) to do this: <a href="http://en.wikipedia.org/wiki/Graph_%28mathematics%29" rel="nofollow">en.wikipedia.org/wiki/Graph_%28mathematics%29/&hellip;</a> http://stackoverflow.com/questions/920560/delphi-how-to-organize-source-code-to-increase-compiler-performance/929528#929528 Comment by Joeri Sebrechts on Delphi: How to organize source code to increase compiler performance? Joeri Sebrechts 2009-08-03T15:29:21Z 2009-08-03T15:29:21Z VM caches in available RAM, so your source files end up getting cached in RAM if you have lots of it. Also, solid state disks have lower random access times, so files are found and read faster. Disk is the bottleneck during compile, so anything that speeds up disk speeds up compile times. http://stackoverflow.com/questions/1183827/how-to-separate-development-of-client-side-web-ui-and-the-server-side/1188461#1188461 Comment by Joeri Sebrechts on How to separate development of client-side web UI and the server side Joeri Sebrechts 2009-07-28T08:28:44Z 2009-07-28T08:28:44Z I meant a http proxy like Squid. Can't help you with any details, because I've never set one up, but it seems like it should do the trick. http://stackoverflow.com/questions/1166953/php-array-with-distinct-elements-like-python-set/1166965#1166965 Comment by Joeri Sebrechts on PHP array with distinct elements (like Python set) Joeri Sebrechts 2009-07-22T18:36:05Z 2009-07-22T18:36:05Z You can json_encode the objects to use them as keys. http://stackoverflow.com/questions/1153404/why-dont-some-of-you-write-unit-tests/1153457#1153457 Comment by Joeri Sebrechts on Why don't some of you write unit tests? Joeri Sebrechts 2009-07-20T15:09:02Z 2009-07-20T15:09:02Z I've seen code break similar to the one you describe. Bugs like those can be a pain to track down. http://stackoverflow.com/questions/1149118/does-request-have-security-problem/1149122#1149122 Comment by Joeri Sebrechts on Does $_REQUEST have security problem? Joeri Sebrechts 2009-07-19T15:59:10Z 2009-07-19T15:59:10Z @chaos: that's the problem. We're trying to make a list of rules to get a secure app, and the only way to do it that works is to know what you're doing, not follow a rulebook.