ITT Registration Procedure

Please see the student mannual on the http://icaionlineregistration.org/ for more details. Also Online registraiton portal is http://www.icaionlineregistration.org/index.html http://icaionlineregistration.org/usermanuals/student.pdf    

Shell Script to copy files in a folder

A shell script to find all the files in the given path recursively and then copying them in the target folder #!/bin/sh ################################################################# # A shell script to go through a directory recursively and copy # ################################################################# # this is full path to the folder from where the files need to be copied. path=”/home/Music/” # … Read more

Reset ( Re-Sync ) MySQL Master-Slave Replication

Some times MySQL replication creates problems and slave could not sync properly from master. It may cause with lots of reason. Here is a way to fix it.   Warning: After using this tutorial, All of your bin-log files will be deleted, So if you want, you may take a backup of bin-log files first and … Read more

Dialer Support – S Net Expert Technology

We provide Asterisk Support in all over INDIA • Installation / maintenance / configuration • Inbound/outbound/predictive dialing solution for small and large call centers • Vicidial Install, Vicidial Support, Vicidial Configuration and Customization • Go Autodial Install, Go Autodial Support, Go Autodial Configuration and Customization • PRI Line Configure & Support • PRI Card Configure … Read more

Install LAMP Server (Apache, MySQL, PHP) On RHEL, CentOS

LAMP is a combination of operating system and open-source software stack. The acronym LAMP is derived from first letters of Linux, Apache HTTP Server, MySQL database, and PHP/Perl/Python. Installation of Apache Apache is an open-source multi-platform web server. It provides a full range of web server features including CGI, SSL and virtual domains. To install … Read more

android apps for Hindi songs

Hindi Songs app gives you some of the best collection of Hindi singers/films. You can download and install the Hindi songs android application from here. or http://blog.eduguru.in/Hindi+video+songs+watch+online.apk DISCLAIMER: The content provided in this app is hosted by http://hindivideosongsonline.blogspot.in/ and is available in public domain. And registered users can add the link of Hindi video here.. We … Read more

Top 10 Console games

World top 10 games 1. Grand Theft Auto 5 2. The Last of Us 3. Tomb Raider 4. Bioshock Infinite 5. FIFA 14 (next-gen) 6. Resogun 7. Batman: Arkham Origins 8. Pikmin 3 9. Forza Motorsport 5 10.  Assassin’s Creed IV: Black Flag

MySQL Interval

MySQL interval values are used mainly for date and time calculations. INTERVAL {value of unit} {types of interval} INTERVAL is a MySQL keyword and this is case sensitive. This should be used in CAPITAL Later Only {value of unit} is a expression or value like 1,2,3,4 or any expression which result in value. {type of … Read more

mysql query get date of 1 month interval

Very often we need to extract last 1 month, 2 months data from mysql DB. Here we will show easy way to get the data of given interval. SELECT * from testtable WHERE startdate BETWEEN DATE_SUB(NOW(), INTERVAL 1 MONTH) AND DATE_SUB(NOW(), INTERVAL 2 MONTH) The above query will return records whose order date is between one and … Read more