RSS feed [root] /weblog /web




login:

password:

title search:




 


Thu Apr 06 06:33:48 GMT 2023

web


Should contain HTML and CSS resource


(google search) (amazon search)
second
download zip of files only

Wed Jan 20 17:47:44 GMT 2010 From /weblog/web/script

framework


A nice logging framework for javascript - http://jroller.com/page/jmars?entry=log4javascript

Comparison of Application frameworks of javascript - http://gavinbenda.com.au[..]07/07/04/javascript-frameworks-compared/ http://technoticles.com[..]0/01/15/javascript-framework-comparison/

(google search) (amazon search)


Wed Dec 30 17:42:38 GMT 2009 From /weblog/web/browser

firefox


Memory issue - http://tech.cybernetnews.com[..]4/reducing-your-memory-usage-in-firefox/

Editing css tutorial - http://www.oreilly.com/catalog/firefoxhks/chapter/hack44.pdf

A nice set of firefox plugin (user) - http://www.mozillazine.org/talkback.html?article=7976
A nice set of firefox pluing (web development) - http://www.seo-expert-blog.com[..].com/blog/my-favorite-firefox-extensions http://www.dave-woods.co.uk/?p=139

Fizzer, a hacker tool - http://www.google.com[..]=en&hs=DRJ&q=mozilla+fuzzers&btnG=Search

Weave, introduce kind of proxy server for indiviual - http://labs.mozilla.com/2007/12/introducing-weave/

Disable endless "Authentication Required" popup - http://forums.mozillazine.org[..]5&hilit=authentication+required#p6243155

http://www.testinggeek.com[..]nty-essential-firefox-addons-for-testing

Look like this one working, but pipeline is not good for my machine - http://webanthology.net[..]r-better-performance-33-tips/2009/11/29/

(google search) (amazon search)


Sun Jul 05 18:17:58 GMT 2009 From /weblog/web/browser

performance tuning


remove those - http://kb.mozillazine.org/Problematic_extensions

http://www.ubuntugeek.com/speed-up-firefox-web-browser.html

http://ubuntuforums.org/showthread.php?t=1193567 ( however, using Swiftfox doesn't help at all, it make my browsing slower in fact )

Use tmpfs for profile - http://blog.taragana.com[..]eed-up-firefox-significantly-with-tmpfs/

Use latest 64bit flash - http://www.adobe.com/software/flash/about/

(google search) (amazon search)



Sat Mar 29 07:51:19 GMT 2008 From /weblog/web

editor


Comment of online rich text editor - http://www.artima.com/forums/flat.jsp?forum=276&thread=226902

(google search) (amazon search)


Mon Mar 17 17:25:33 GMT 2008 From /weblog/web/script

ajax security


Some simple rule:

If you use user authentication, make sure you check for it on the request page!
Check for SQL Injections
Check for JavaScript Injections
Keep the Business Logic on the server!
Don't assume every request is real!
Check the data with validation!
Look at the request’s header information and make sure it is correct

http://radio.javaranch.com[..]pascarello/2005/11/16/1132198968655.html

(google search) (amazon search)


Mon Mar 17 17:25:32 GMT 2008 From /weblog/web/ajax

Ajax issue of threading


AJAX and Session “Race Conditions” : http://www.sitepoint.com[..]ax-and-session-race-conditions/#comments

Implementing Mutual Exclusion : http://www.onjava.com/lpt/a/6539 http://ajaxian.com[..]lementing-mutual-exclusion-in-javascript

(google search) (amazon search)


Wed Jan 02 11:35:38 GMT 2008 From /weblog/web/script

parser


Collections of javascript parser - http://discuss.joelonsoftware.com/default.asp?design.4.576900

(google search) (amazon search)


Thu Nov 22 02:14:41 GMT 2007 From /weblog/web

IE issues


My friends just complainting about they cannot view my photo, and the problem is only occur at IE but not safari, firefox and opera, guess what is the problem?

After a tedious checking, the issue is I use style="visibility:hidden; display:none;" to hidden the big images when displaying the thumbnail page and use javascript to show the big image one by one:


[html]
[javascript] (code to replace "main_planel" by big_images one by one) [/javascript]

[div id=main_planel/]

[img src = "thumbnail1.jpg"/]
[img src = "big_image1.jpg" style="visibility:hidden; display:none;"/]

[img src = "thumbnail2.jpg"/]
[img src = "big_image2.jpg" style="visibility:hidden; display:none;"/]

[html]


(Hope you get the idea)

For all other browsers ( namely FireFox, opera and safari, those image are not load until the script run. However, for IE, it just load all the big images once the page start to load :-/

Other issues in IE.... http://immike.net[..]/08/06/single-line-of-html-crashes-ie-6/

(google search) (amazon search)


Sat Nov 03 14:49:09 GMT 2007 From /weblog/web

yahoo web dev


See how can we learn from yahoo to manage UI knowledge into pattern library

http://www.boxesandarrows.com[..]in_the_real_world_a_yahoo_case_study.php

And how the design philosophy of YUI

http://yuiblog.com[..]veloping-a-javascript-library-for-yahoo/

(google search) (amazon search)


Thu Aug 02 17:32:32 GMT 2007 From /weblog/web

css checker


Check duplication
http://infovore.org[..]s/2007/07/06/the-css-redundancy-checker/

online version
http://services.immike.net/css-checker/


(google search) (amazon search)


Thu Jul 12 11:19:36 GMT 2007 From /weblog/web/script

cross browser cursor positioning


Show how to control cursor using javascript: http://ajaxian.com[..]ipt-tip-cross-browser-cursor-positioning

cross-browser-window-size-and-centering - http://www.geekdaily.net[..]cross-browser-window-size-and-centering/

(google search) (amazon search)



Tue Feb 13 08:57:33 GMT 2007 From /weblog/web/browser

HTTP server at browser


Embedding web server at browser - http://www.gnucitizen.org/blog/plain-old-webserver

(google search) (amazon search)



Mon Jul 17 09:33:18 GMT 2006 From /weblog/web/ajax

Browser specific issues


A page using XMLHTTP to test HTTP connection handling for difference browser. Nice to try if you write AJAX application

http://www.mnot.net/blog/2006/01/23/test_xmlhttprequest
http://www.mnot.net/test/xmlhttprequest/

Also there is a browser compatiblility discussion

http://www.musingsfrommars.org[..]06/howre-we-doing-now-ajax-browsers.html

(google search) (amazon search)


Thu Jul 13 04:32:25 GMT 2006 From /weblog/web

Various Stats


Clients information from w3schools - http://www.w3schools.com/browsers/browsers_stats.asp

(google search) (amazon search)


Wed Jul 05 04:17:43 GMT 2006 From /weblog/web/script

compressor


The downloadable one is only trim thing like white spaces and new line, but the online only one actally obfuscate your javascript

http://blog.taragana.com[..]how-to-compress-javascript-files-safely/

(google search) (amazon search)


Thu May 04 07:37:51 GMT 2006 From /weblog/web/ajax

Ajax books


http://121space.com[..]1c&showtopic=1875&st=0&p=2212&#entry2212

(google search) (amazon search)


Fri Apr 21 05:19:30 GMT 2006 From /weblog/web/ajax

Issue of loading


A very nice article discuss about this issue: http://www.devwebsphere.com[..]evwebsphere/2006/04/the_hidden_cost.html

(google search) (amazon search)


Fri Mar 31 16:39:38 GMT 2006 From /weblog/web/ajax

office@web


spreadsheet http://stakeventures.com/articles/2005/11/22/widesheet-sneakcast
presentation http://s5presents.com/
PM tools http://basecamphq.com
editor: http://www.writely.com

http://blog.objo.com/articles/2005/11/22/its-starting

(google search) (amazon search)


Fri Mar 31 09:41:37 GMT 2006 From /weblog/web

Section 508 task list


Add alt tag for all images

Use <label> to group <input> : http://htmlhelp.com/reference/html40/forms/label.html , more detailed discussion: http://www.websiteoptimization.com/speed/tweak/forms/
Accessible dynamic menu system: http://www.udm4.com/

More to come...

(google search) (amazon search)


Thu Mar 23 06:51:44 GMT 2006 From /weblog/web

Web Widget


So, even Microsoft start to support web widget: http://www.computerworld.com[..]/story/0,10801,109793,00.html?source=x11

Which should be something like Apple's dashboard: http://www.apple.com/macosx/features/dashboard/

In fact, opera support this already but not many developers develop this: http://www.apple.com/macosx/features/dashboard/ , as well as firefox: http://firefoxit.mozdev.org/ and yahoo: http://widgets.yahoo.com/

May be it is time to standardlize them so that we can use all widget from whatever platform?

(google search) (amazon search)


Thu Mar 16 11:35:30 GMT 2006 From /weblog/web/ajax

copy and paste at web


A very nice sample of how to change web content by user with copy and paste

http://blog.brains4all.com[..]log/archives/2006/03/copypasteweb_1.html

(google search) (amazon search)


Sun Mar 12 11:15:14 GMT 2006 From /weblog/web/ajax

pretty tab plane using javascript


http://www.barelyfitz.com/blog/archives/2006/03/09/232/

(google search) (amazon search)