web

Firebug Panel Timing

Source:  I have recently got several questions about how to understand the timing numbers provided by the Net panel in Firebug and so, I decided to write a quick summary explaining what everything is the Net panel actually measuring (in…

FireBug tool mesure web components Response time

If you are looking for very simple measurement tool that will help you to identify response time for you pages then FireBug running on Firefox will do the trick. FB can also measeure response time for AJAX and other components.…

Oracle SQL query – sort by Czech language

This was the best result so far that reflected czech characters and IMHO correct sorting. select * from test6 order by NLSSORT( (NAME),’NLS_SORT=Xczech‘)   46 46 d 47 47 D 134 134 dra 136 136 Dra 139 139 dráb 138…

Oracle setting – language specific search

Our R&D did struggle with Oracle setting for Czech specific search. Following might be the solution. ALTER SESSION SET NLS_COMP=ANSI;ALTER SESSION SET NLS_SORT=GENERIC_BASELETTER;– this should be XCZECH we discussed previously First 3 screenshots are from setting up the DB where…