Joeri Sebrechts

2,915
reputation
150 views

Registered User

name Joeri Sebrechts
member for 1 year
seen yesterday
website
location Antwerp, Belgium
age 30
Software engineer, specializing in web applications
Dec
2
accepted where can I learn about how do developer browser bookmarklets (language, framework, IDE, techniques etc)?
Dec
2
answered where can I learn about how do developer browser bookmarklets (language, framework, IDE, techniques etc)?
Nov
27
awarded  Good Answer
Nov
24
answered What should I learn?
Nov
12
comment Is possible to debug dynamic loading JavaScript by some debugger like WebKit, FireBug or IE8 Developer Tool?
All I can find is this: code.google.com/p/fbug/… . 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.
Nov
10
answered Is possible to debug dynamic loading JavaScript by some debugger like WebKit, FireBug or IE8 Developer Tool?
Nov
5
comment How does JavaScript memory work in browsers?
This stuff is too complicated to explain in detail in the comments, the links should give you a better explanation than I can.
Nov
4
comment How does JavaScript memory work in browsers?
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.
Nov
4
comment How does JavaScript memory work in browsers?
You may find this useful: slideshare.net/lsimon/go-with-the-reflow/… , also, this: library.mozilla.org/Faster_HTML_and_CSS:_Layout_E…
Nov
3
accepted How does JavaScript memory work in browsers?
Nov
2
answered How does JavaScript memory work in browsers?
Oct
30
revised How to take convert a webpage to a image in javascript / Google web tool kit
added 536 characters in body; deleted 1 characters in body
Oct
29
answered How to take convert a webpage to a image in javascript / Google web tool kit
Oct
17
answered Do you plan for javascript being off?
Oct
13
accepted Why is element <u> considered outdated according to VS2008?
Oct
8
answered javascript prototype inheritance
Sep
27
answered Rapid web application development with a Web Toolkit
Sep
24
awarded  Yearling
Sep
21
answered Should I accept IE 5.0 (!) as a browser requirement for a project?
Sep
16
awarded  Good Answer
Sep
15
answered How to build LDAP integration for my web app?
Sep
8
accepted How to test a CSS parser?
Aug
27
answered How can I choose the closest match in SQL Server 2005?
Aug
27
answered What is an excellent software architecture?
Aug
13
answered IS there anyway to tell if a website is coded in PHP or ASP
Aug
12
awarded  Editor
Aug
12
revised best way to filter unwanted elements from html before rendering
corrected answer
Aug
12
answered how “most visited” works in applications
Aug
12
comment best way to filter unwanted elements from html before rendering
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.
Aug
12
answered Is it necessary to know flash designing for flex3 ?
Aug
12
answered best way to filter unwanted elements from html before rendering
Aug
11
answered Subversion - should anyone be developing off the trunk?
Aug
10
answered What is the correct/safest way to escape input in a forum?
Aug
7
answered Page Performance in IE7 with a large page
Aug
7
comment How do I draw curved lines on an HTML page using JavaScript?
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. excanvas.sourceforge.net
Aug
6
accepted The Best Way To Represent key/value Pairs In HTML Class Names
Aug
6
comment The Best Way To Represent key/value Pairs In HTML Class Names
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.
Aug
6
comment Major Project Suggestion
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.
Aug
5
comment Graph drawing for the Web 2.0
To be clear, what the asker is looking for is a library (client or server) to do this: en.wikipedia.org/wiki/Graph_%28mathematics%29/…
Aug
5
answered The Best Way To Represent key/value Pairs In HTML Class Names
Aug
3
comment Delphi: How to organize source code to increase compiler performance?
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.
Aug
1
answered For a website, is it true the MVC pattern is only used on the server side?
Jul
30
answered How can I convince my co-programmers not to do paranoid “just to be sure programming”?
Jul
29
accepted php-cgi.exe - does it detect and handle both CGI and FastCGI? If so, how?
Jul
28
comment How to separate development of client-side web UI and the server side
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.
Jul
27
answered How to separate development of client-side web UI and the server side
Jul
27
answered .NET or PHP, Corporate or Open-Source ?
Jul
22
answered php-cgi.exe - does it detect and handle both CGI and FastCGI? If so, how?
Jul
22
answered Clean OO-structure vs. SQL performance
Jul
22
comment PHP array with distinct elements (like Python set)
You can json_encode the objects to use them as keys.