Archive for February, 2009

Firebug: Javascript/HTML/CSS Development

Firebug: Javascript Development Made Easier View more presentations from Binny V a. (tags: firebug javascript) More information at http://getfirebug.com


Oracle: Breaking Comma Separated String Using DBMS_UTILITY.COMMA_TO_TABLE

There are times one has to break a comma separated string and extract actual values from it. Possible reasons for this requirement could be when a procedure takes an unknown number of strings as an input (although arrays/collections can be used instead, but right now we’ll stick to a single string) or while reading csv [...]


Access your desktop(machine) remotely – Remote Desktop Access

Remote access to your machine is a real useful feature which save lot of cost and time. There are many protocols which allow remote access to a machine like SSH and telnet but these are shell access and generally useful for developer community than user community. Shell based remote connections are generally used for servers [...]


A list of useful software tools

Most of the Adobe, Google and Microsoft tools are already known which are part of this list as well. You will find some of them new to you and probably useful also. Top 100 Tools for Learning 2008 View more presentations from Jane Hart. (tags: tools learning)


Oracle : Finding User/Database Size

Finding User(s) Size Sometimes one needs to know the space used by a database user. Following query can be used to know the space used by the logged in user in MBs:   SELECT sum(bytes)/1024/1024 user_size FROM user_segments;   Similarly it is possible to find the space occupied by all the users in a database. [...]