Software – Recent List

October 18, 2011 Leave a comment

Affordable screen/voice recording software
http://screenplay.huelix.com/
——————————————————————————————-
Upload files / Upload file through API
http://www.dropbox.com/
It is having lot of features in uploading files.
——————————————————————————————-
Share desktop: https://join.me/
Team Viewer: http://teamviewer.com/en/index.aspx
——————————————————————————————-
Hinduism across World
http://www.stephen-knapp.com/art_photo_fourteen.htm

——————————————————————————————-

Thin clients with 40 inch monitors helps to setup dashboards easily.

http://www.hp.com/sbso/busproducts-thin-clients.html

——————————————————————————————-

 

 

Categories: Uncategorized

MySQL Queries

October 18, 2011 Leave a comment
Categories: MySQL

Save Environment by using Clay

August 31, 2011 Leave a comment

Happy Ganesh Chaturthi

Source: http://parisaraganapati.net/

Categories: Insipirational, News

Java – Graphs and Charts

August 22, 2011 Leave a comment

How to draw graphs and charts

1. If you want to generate bmp, jpg formats better to use

http://www.jfree.org/jfreechart/ Better with Swing or to email images.
http://cewolf.sourceforge.net/new/index.html Better for JSP/Servlet integration.

2. For more detailed research, Excel is best. Create template with graphs and fill the data using Apache POI API.
http://poi.apache.org/

3. For better quick online graphs try following
http://code.google.com/apis/chart/interactive/docs/gallery/linechart.html

http://code.google.com/apis/ajax/playground/?type=visualization#line_chart

http://webdesignledger.com/resources/13-useful-javascript-solutions-for-charts-and-graphs

-o-

Categories: J2EE, J2SE Tags:

Happy Krishnashtami

August 21, 2011 Leave a comment

Lord Krishna

Click on this image to see the best quality picture.

Categories: Insipirational

Solar hydrogen home

August 18, 2011 Leave a comment

http://www.hopewellproject.org/

Categories: Insipirational Tags:

Oracle – Round time to nearest x minutes

August 17, 2011 Leave a comment

30 minutes = 24 * 2
10 minutes = 24 * 6
5 minutes = 24 * 12

>select to_char(sysdate, ‘HH24:MI’),to_char(sysdate + 1/(24*6) – mod(sysdate – trunc(sysdate),1/(24*6)), ‘HH24:MI’) from dual;

select to_char(CAST(SYSTIMESTAMP AS DATE), ‘HH24:MI’),to_char(CAST(SYSTIMESTAMP AS DATE) + 1/(24*12) – mod(CAST(SYSTIMESTAMP AS DATE) – trunc(CAST(SYSTIMESTAMP AS DATE)),1/(24*12)), ‘HH24:MI’) from dual;

Thanks to Solomon Yakobson

https://forums.oracle.com/forums/thread.jspa?threadID=1006150

http://download.oracle.com/docs/cd/B19306_01/olap.102/b14346/dml_x_reserved007.htm

Unix Monitoring Commands

August 9, 2011 1 comment

Use this commands from Java Telnet Application and monitor any number of servers.

CPU Usage *****
>top -b -n 1 | grep java | awk ‘{sum +=$9}; END {print sum}’

Memory Usage *****
>top -b -n 1 | grep java | awk ‘{sum +=$10}; END {print sum}’

Gives total wait threads *****
>netstat -anp | grep TIME_WAIT | wc -l

Provides all states of connections change port number as required.
>netstat -an|grep “:80″|awk ‘/tcp/ {print $6}’|sort| uniq -c

===Established connections *****
>netstat -anp | grep ESTABLISHED | wc -l

===Database connections *****
>netstat -anp | grep 1521 | wc -l

=== Get diskspace utilization for given folder *****
>df | grep local | tail -1 | rev | cut -f2 -d’ ‘|rev
>df | grep apps | tail -1 | rev | cut -f2 -d’ ‘|rev

Categories: Unix Tags:

jQuery for Beginners

July 27, 2011 Leave a comment

1. No installation required (Include the library jquery.js)
2. No server side coding required
3. Independent of Browser
4. Lot of free plugins / ready to use libraries available
5. Works with other libraries
6. JavaScript is desirable, but not required.
7. Works smoothly with CSS

Start with http://en.wikipedia.org/wiki/JQuery
See this beautiful examples to get inspiration:
http://c88i.com/project/
http://jqueryui.com/demos/
http://www.noupe.com/jquery/50-amazing-jquery-examples-part1.html

Best tutorial: http://www.roseindia.net/ajax/jquery/
-o-

Wow ….Parking made easy….why we lost it?

July 27, 2011 Leave a comment

1950′s Fifth Wheel Parking Concept

Car with five wheels

Categories: Insipirational
Follow

Get every new post delivered to your Inbox.