The Hindu : Sci-Tech / Energy & Environment : India can meet energy needs sans N-power: Study.
Posted in Uncategorized | Leave a Comment »
Posted in Python, Technology, Web | Tagged Development, Django, Framework, Python, Web | Leave a Comment »
To increase or decrease the timeout value in Tomcat, please locate the following section in [Tomcat_home]/conf/web.xml:
<session-config>
<session-timeout>30</session-timeout>
</session-config>
The timeout value is specified in minutes.
Restart Tomcat after modifying the file, so the changes can take effect.
Posted in Technology, Tomcat | Tagged config, server, session, timeout, Tomcat, web.xml | 1 Comment »
Usefull Links:
Morgan Stanley taps Adobe Flex framework for new trading platform
Banking, capital markets, insurance | Adobe solutions for financial services
Financial Services – Demo: Trader Desktop for Investment Banking | Adobe TV
Adobe – Customer Showcase : Adobe Success Story : Standard Chartered Bank
Application Development: Financial Services Embrace Adobe Tools for Rich Internet Apps
Posted in Flex, Technology, Uncategorized | Tagged adobe, Banking, Finance Applications, Flex, Market | Leave a Comment »
To get all the table sizes lile
table_schema, table_name, table_rows, avg_row_length, table_data_size, table_index_size… etc….
Eg:
testDB is a database name.
SELECT table_schema, table_name, table_rows, avg_row_length, (data_length+index_length)/1024/1024/1024 as total_GB, (data_length)/1024/1024/1024 as data_GB, (index_length)/1024/1024/1024 as index_GB FROM information_schema.tables WHERE table_schema in (‘testDB‘);
Posted in Database, Technology | Tagged data size, Database, GB, index size, MySQL, rowcount, schema, tables | Leave a Comment »
In vi,
do <esc>: %s/^M//g
To get the ^M hold the control key, press V then M (Both while holding the control key) and the ^M will appear. This will find all occurances and replace them with nothing.
Posted in Technology | Tagged ctrl M, ctrl+M, vim, ^M | 3 Comments »