Thanks to the herculean efforts of several Stack Overflow users, we were finally able to deliver some long-overdue bugfixes to our beloved WMD editor in early January, once it was fully reverse engineered.

(Sadly I still have yet to hear from the original WMD author, John Fraser, after months of attempting to contact him in every possible way I know how, short of hiring a private detective. I seriously hope he’s OK; it’s mightily unusual in my experience for a programmer to drop off the internet so completely, and for so long.)

Since then, Dana Robinson has been toiling away, removing cruft from the WMD editor and implementing my #1 feature request: CSS sprite toolbar buttons. This is a big deal because it reduces the number of HTTP requests necessary to render the WMD editor from about 14..

wmd-toolbar-http-request-count-before

To one!

wmd-buttons-sprites-large

This one change speeds up almost every single page we serve up! We allow and encourage low-friction anonymous participation on Stack Overflow, so the WMD editor is always right there, inviting awesome (and not-so-awesome) new answers, at the bottom of every question page. All 80,000+ of them! I’ve already noticed the site is much, much snappier with this new revision of the WMD editor deployed.

If you’re interested in spriting some of your web UI, there’s an updated, more modern article on CSS sprites that demonstrates how to do it using JQuery. Spriting your whole UI would probably be overkill, but it’s a big win in the right scenario, like this one.

But CSS spriting isn’t the only improvement Dana delivered:

  • Slimmed down some polling loops for better performance
  • Added additional CSS DOM caching to reduce unnecessary DOM traversals
  • Removed extraneous code to reduce download size

You can pull the changes from Dana’s GIT repository if you’d like to take a look.

As I’ve mentioned before, Dana is a big fan of the Fake Plastic Rock much like myself. As a reward for the tremendous amount of work Dana put into this, I was more than happy to hook him up with a set of Rock Band 2 wireless drums and Triple Cymbal kit. Pretty soon, he’ll be rocking out like this:

The code is fairly maintainable at this point, so hopefully we can be much more responsive to any editor issues from now on. The next phase is to create a JQuery-ized version of WMD, to reduce its size and enhance its browser compatibility even further.

« Podcast #39
The Stack Overflow Development Process »

31 Responses

  1. Jon Skeet says:

    Congrats! Hopefully this will reduce/remove the problem I occasionally see of all the icons being missing for WMD… if it only has to make 1 request I suspect it’s more likely to work :)

    (It’s possible this happens more often when I’m surfing over 3G… not sure.)

    Looking forward to any further improvements… although I already find myself writing `stuff` when blogging with Windows Live Writer and then getting annoyed when it doesn’t work…

  2. Jeff Atwood says:

    > this will reduce/remove the problem I occasionally see of all the icons being missing for WMD

    This version was deployed for about an hour. gravatar is having perf problems and WMD had its own (crappy) event management system, that blocked until the entire page was fully downloaded. We switched it to the JQuery DOM Ready event and redeployed.

  3. jake says:

    Jeff, the css sprite thing was Joel’s idea from podcast number 38 i think. taking credit for the one picture idea is a tad uncool methinks

  4. Nick Berardi says:

    I have actually noticed the question pages loading faster, good work.

  5. Jon Skeet says:

    @Jake: Where did Jeff particularly take credit for it himself? He’s just applied the idea. (It’s not like Joel invented the idea either of course…)

  6. Sam says:

    Jeff didn’t take credit for it; when Joel brought it up Jeff said that they were already working on it.

  7. Michael says:

    Did that reduce it from 14 or 14*3? Nice work. I really appreciate you keeping us so in the loop on development, struggles, improvements, etc–thanks!

  8. Matt says:

    Hi Jeff – I know you and Joel were debating this too, and I’m also curious. I assume that doing this would provide some performance improvement, but it is material, e.g. will a user actually detect it, or is it just “faster” but not noticable?

    thanks

  9. Dana says:

    @Michael – Not 14 * 3, just 14. The old buttons did highlight and inactivation using CSS. IE makes doing this with image sprites nigh impossible due to the lack of positioning in the IE image filters so I just added the extra rows to pre-generate the highlight and inactive effects.

  10. Abdu says:

    Are you planning to release it? Not that I need it. You might get more contributors and they might enhance it even more.

  11. Dana says:

    @Abdu – WMD is on github. Anyone can grab the code and contribute.

  12. Jon Ericson says:

    I actually have noticed the site has gotten a lot slower this afternoon. Presumably this change is *not* the problem. But the timing seemed suspicious to me.

  13. Jeff Atwood says:

    > I actually have noticed the site has gotten a lot slower this afternoon.

    Yeah, we DDOS’ed ourselves a little bit… long story. The surprising thing is that the server actually survived and was reasonably responsive.

  14. Andrea says:

    after the latest update (some minutes ago) I am unable to use the editor and when I click on “comments” it doesn’t show up in FF3 – Ubuntu. It works using epiphany.

  15. Wedge says:

    @jake relisten to podcast #38. Joel talks about CSS spriting but it’s obvious that Jeff is already aware of it and was already planning to implement this feature. In fact, Jeff is the one who mentions the name of the technique.

    The relevant section starts 19 minutes in, pay attention at 20:30.

  16. Peter LaComb says:

    Still can’t help but think that this editor is a http://en.wikipedia.org/wiki/Weapons_of_mass_destruction

  17. J. Philip says:

    I wrote a Symfony plugin (http://www.symfony-project.org/plugins/sfWmdPLugin) and I had made a slight change to the obfuscated code to add a Browse Server button in the Add Image dialog.
    If this button is activated, it calls a callback function to pop up an image browser defined by the application.
    Is there any chance you could include that in your version?

    One problem I have with the editor is quite a bit of flicker when one is typing an there is an image loaded in the preview.
    Another problem was when I had several editors on the same page and when IE did the dynamic loading of JS files asynchronously, some code was executing before the editor files were completely loaded, causing an error. I fixed that by forcing the static loading of all the files.

    On JQuery, I hope you keep a version that is JS framework independent because there are lots of people that use other ones and compatibility could be a problem.

  18. Will says:

    I don’t doubt that this is a great improvement, but I still don’t understand why browsers would be making the same 14 requests for these static images over and over again. Why are they not being cached locally?

  19. Jeff Atwood says:

    Will, see this:

    http://yuiblog.com/blog/2007/01/04/performance-research-part-2/

    “40-60% of Yahoo!’s users have an empty cache experience and ~20% of all page views are done with an empty cache.”

  20. J. Philip says:

    Do you have any example on how to instantiate several editors on the same page.
    I had it working with the examples provided by John Frazer, setting autostart to false but it does not work anymore with this version.

  21. Dana says:

    @J. Philip – Yes, this is a SO version so I yanked out a bunch of the startup code which set options. I was implementing some changes and bugfixes for SO specifically and didn’t want to have to worry about other users. For example, how do optional buttons work with button sprites? I didn’t care about the answer so I yanked all that stuff.

    Now that I’m getting a pile of requests from the Google Code crowd I’ll probably fold that stuff back into a v2.1 and push it to git. Stay tuned over the next month.

    v3.0 will use jQuery and probably a couple of plugins. I’ll leave the v2.x branch jQuery-free.

  22. Ólafur Waage says:

    A small hint for people who are spriteing. If you are saving the files as a PNG and its fairly large then have it as small in height as possible. Make the repeating elements go on the width axis and the file size will be smaller and loading will be quicker.

    This is due to how PNG stores images.

  23. Greg Gurevich says:

    Great Job guys, keep up the good work!

  24. Per Wiklander says:

    About the spriting bussiness:

    Have you looked into the whole data URI thing? Sprites are so last year ;-) Now you can combine all CSS and [background] images into ONE file. So you should be able to get down to 3 http requests

    1. HTML
    2. CSS (minimized + gzipped) + images
    3. JavaScript (combined into one file and minimized + gzipped)

    This does of course not count any extra content on the page like photos.

    With the right tools you can totally ignore all performance issues of having X different CSS and JS files and not doing any CSS sprites. It will all be taken care of for you by the tools, like it should be. Well organized and readable code with an optimized output.

    Theory on data URIs:
    http://en.wikipedia.org/wiki/Data_Uri
    http://www.sitepoint.com/blogs/2008/11/21/why-the-data-uri-scheme-could-help-save-your-slow-site/

    An all in one tool (soon to be released as open source Java lib) that also solves the “no Data URIs in IE” problem
    http://duris.ru/

    PHP implementation of dynamic output filter (should be rather easy to port)
    http://aciddrop.com/php-speedy/

    A commercial alternative
    http://www.getrpo.com/Product/

  25. Dana says:

    The data URI thing is pretty cool but I also think that spriting is a better alternative right now, especially given IEs lousy support for data URIs.

    Sure you could use that duris tool to get around that but I’d like to have a clean version of WMD that doesn’t require any outside libraries or tools (besides showdown.js, that is).

  26. Per Wiklander says:

    Yeah, I’m not saying you should use it in WMD if it is already working the way you want it, but it is really worth investigating for coming projects. You can’t really create the sprites without any sort of tools anyway, right? At least not if they tend to change during development.

  27. shenzfrank says:

    本人王志强身份证号码210902197708080513(如果以下所说有一句虚假,愿意承担全部法律责任!美国TEXAS PACIFIC GROUP子公司NEW BRIDGEGROUP控制下的深圳发展银行对我在网络的言论,不但不敢承认事实反省!反而变本加厉地对我进行打击报复! 深圳发展银行颠倒黑白的言论让人无语!!
       深发展银行盗窃本人银行存款,被我发现后还拒绝承认,竟然认为盗窃合理合法!被我起诉后,深发展银行败诉!败诉后对抗法院判决并拒绝支付法院判决的赔偿款!世界上唯一由法院对银行开出的人民币221元的强制执行书在深圳出现,深圳发展银行竟然也会做假帐和错帐(什么假帐和错帐请往下看)!这种新鲜事情就发生在深圳发展银行! 美国前财政部副部长法兰克纽曼2千多万的年薪把深发展搞成什么样?那就是连水电费的中文交易代码都当做绝对机密不敢象客户公布!这在其他银行交易代码中文解释都在银行存折上或者大堂公示的起码内容!这说明什么?作为银行的客户根据消费者权益法应该享受的知情权却被深发展银行野蛮践踏了,深圳发展银行的管理有严重的系统漏洞!就是在法庭上深圳发展银行恬不知耻的在法官面前对我说:“还要随意扣我的钱”,并且拿出了让人莫名其妙的证据!—银行罚息表!这是绝对的伪证! 怎么个莫名其妙怎么个伪证请往下看:
       深圳发展银行败诉后马上就对我进行打击报复!在人民银行的怔信系统里故意诬陷我有逾期还款!个人信用竟然也可以被银行随意污辱和更改!我找深发展讲理,深发展竟然说还要再给我记录三次不良还款记录!害得到处申诉,没有任何机关部门和相关监管单位敢过问,经过一年多时间终于我幸运地找到羊城晚报记者,在记者调查下深发展才不得不给我更改了我个人信用记录!无耻的深发展银行!无耻的USA TEXAS!无耻的NEW BRIDGE!另外深圳发展银行竟然报假警的卑鄙手段剥夺我在该银行进行正常业务的权利!
    具体详细内容请在http://www.66law.cn/channel/forum_thread_id100270_p1.aspx
    具体详细内容请在GOOGLE搜’起诉深圳发展银行’就知道有26万条信息 或者在SOHU搜’210902197708080513′也可以知道详细内容!! 同情的请帮我转发!在此我感谢啦!如果能告诉身边的亲朋好友更是感谢!

  28. TomA says:

    Partly as an exercise and partly because I wanted to use CSS sprites on a site I was working on, I wrote a little utility that generates a CSS sprite sheet from a number of images fed into it.

    http://www.catnapgames.com/blog/202

  29. shenzfrank says:

    ASK FOR HELP FROM CHINA!!!!!!!!!!
    本人王志强身份证号码210902197708080513(如果以下所说有一句虚假,愿意承担全部法律责任!美国TEXAS PACIFIC GROUP子公司NEW BRIDGEGROUP控制下的深圳发展银行对我在网络的言论,不但不敢承认事实反省!反而变本加厉地对我进行打击报复! 深圳发展银行颠倒黑白的言论让人无语!!   深发展银行盗窃本人银行存款,被我发现后还拒绝承认,竟然认为盗窃合理合法!被我起诉后,深发展银行败诉!败诉后对抗法院判决并拒绝支付法院判决的赔偿款!世界上唯一由法院对银行开出的人民币221元的强制执行书在深圳出现,深圳发展银行竟然也会做假帐和错帐(什么假帐和错帐请往下看)!这种新鲜事情就发生在深圳发展银行! 美国前财政部副部长法兰克纽曼2千多万的年薪把深发展搞成什么样?那就是连水电费的中文交易代码都当做绝对机密不敢象客户公布!这在其他银行交易代码中文解释都在银行存折上或者大堂公示的起码内容!这说明什么?作为银行的客户根据消费者权益法应该享受的知情权却被深发展银行野蛮践踏了,深圳发展银行的管理有严重的系统漏洞!就是在法庭上深圳发展银行恬不知耻的在法官面前对我说:“还要随意扣我的钱”,并且拿出了让人莫名其妙的证据!—银行罚息表!这是绝对的伪证! 怎么个莫名其妙怎么个伪证请往下看:    深圳发展银行败诉后马上就对我进行打击报复!在人民银行的怔信系统里故意诬陷我有逾期还款!个人信用竟然也可以被银行随意污辱和更改!我找深发展讲理,深发展竟然说还要再给我记录三次不良还款记录!害得到处申诉,没有任何机关部门和相关监管单位敢过问,经过一年多时间终于我幸运地找到羊城晚报记者,在记者调查下深发展才不得不给我更改了我个人信用记录!无耻的深发展银行!无耻的USA TEXAS!无耻的NEW BRIDGE!另外深圳发展银行竟然报假警的卑鄙手段剥夺我在该银行进行正常业务的权利! 具体详细内容请在http://www.66law.cn/channel/forum_thread_id100270_p1.aspx 具体详细内容请在GOOGLE搜’起诉深圳发展银行’就知道有26万条信息 或者在SOHU搜’210902197708080513′也可以知道详细内容!! 同情的请帮我转发!在此我感谢啦!

  30. shenzfrank says:

    关注深圳发展银行
    这是世界上最奇怪且恐怖的银行,为什么这么说呢,我发现这家银行成立二十多年来竟然没有对储户公布过银行扣款代码的中文解释,比如扣水\电\煤气\有线电视费用等等代码的中文解释,这些代码中文解释在中国所有的银行都是公开的,比如说中国银行的扣费代码就打印在其银行存折最后一页,而招商银行扣费代码中文解释在银行大厅都有公示,而这家银行却把交易代码中文解释当作绝对机密,是不是让你感觉非常奇怪呢?如果说到恐怖的话,这家银行是中国第一家上市银行,现在是美国控股的美资公司其董事长是美国前财政部副部长呢,其年薪2000多万呢,这么多钱养的这个爷连交易代码解释都能提供呀!作为银行交易代码的中文解释是最基础的要求了。并且这交易代码与储户生活是密切相关的《消费者权益法》都规定消费者有知情权呢,如果你不相信就打电话95501咨询,如果你向银行要交易代码,银行会推托说让你到开户行去咨询,而你到开户行人家只能口头告诉你,如果你直接问有没有对外公布书面的中文交易代码解释,银行就告诉你暂时没有,你说恐怖不恐怖?
    这是什么原因呢?告诉你们,只有两种可能。第一,也就是客观上理解,这家银行存在基础的系统行漏洞,而且是无法修复的,导致银行无法提供中文交易代码解释。第二,主观上理解,这家银行不希望或者说根本不想把中文交易代码对外公布,因为只有不公布才可以浑水摸鱼嘛,可以随便扣客户的钱,而且客户因为没有交易代码中文解释也就不知道扣的什么钱啦。如果公布了那银行还靠什么吃饭呀,本人数次与该行联系并多次反映都没有任何结果,希望能得到关注!看完以上的你们应该有了一定的心理准备,下面有三篇该银行的贴子才叫真的恐怖!
    http://www.tianya.cn/publicforum/content/house/1/130902.shtml
    http://www.tianya.cn/publicforum/content/develop/1/243276.shtml
    http://www.tianya.cn/publicforum/content/develop/1/243223.shtml
    备注:附件照片的含义我个人认为创造了两个世界记录:
    第一,世界上唯一空前绝后的由个人申请向银行提起的强制执行申请。
    第二,这是世界上对银行开出的标的最小的强制执行书,只有RMB221元。
    银行会赖帐我相信会有,但是银行赖个人的帐我想世界上绝对不会有,肯定有律师会说我也对银行提出过强制执行呀,但我要说你肯定是企业或单位和银行的纠纷。另外我这是221块钱的标的,这么小的金额银行都要当老赖,不知道律师们有什么感想 ?

  31. sunnybear says:

    From authors of duris.ru:
    we have significantly improved PHP Speedy algorythm also with auto CSS Sprites (sprites.in), .htaccess support and auto-change of most of modern CMSs. Now it available as Web Optimizer
    http://code.google.com/p/web-optimizator/downloads/list
    Twitter: http://twitter.com/dreamwind

Leave a Reply