Searching for HTML content slider?
Here I found a Cool and Fully customizable carousel which full fills our every type of requirements.
If you are using this then there is no any option to find other carousel. This fits with our every need.
This is carouFredSel.
jQuery.carouFredSel is a plugin that turns any kind of HTML element into a carousel. It can scroll one or multiple items simultaneously, horizontal or vertical, infinite and circular, automatically or by user interaction. Oh, and it’s responsive too.
Also find cool carousels built with carouFredSel. Here is lots of carousel which completes our any type of requirements.
Good Luck.
How to find Database size?
Here I found some important query to find database and table sizes. Execute the below SQL script to list out the entire schema/database size:
MySQL
Find entire databases and sizes
SELECT `table_schema` AS "Database", (SUM( `data_length` + `index_length`) / (1024 * 1024)) AS "Size(MB)" FROM `information_schema`.`TABLES` GROUP BY `table_schema`;
Find size for a single schema/database
jQuery Addon Tagging
jQuery Tagging helps to select tags for new post
Find more info here: Tagging
India’s top 25 future HR leaders are about to be chosen. An intense application process, a series of assessments and a competitive race has ensured that the ones who make it to the list are ready to bring value to businesses as HR leaders. They will be the ones who are already equipped with the skills and competencies that are demanded of them in a changing scenario, a scenario where they will see themselves making critical decisions as HR transforms to emerge as a key influencer in business.

Don’t be stupid, get past your old fashioned reactive measures to douse protests – times have changed. Communicate but more than that lend the peaceful protesters your ears…
Ubuntu Phone OS
Wow,
It’s good to hear about Ubuntu Phone OS. Today canonical has announced Ubuntu for phone.

Soulful poetry, bombastic promises and beguiling slogans… you definitely can’t escape the great Indian electoral jamboree if you are an Indian. But do slogans really translate into votes?
Today I found this image circulating on Facebook. Out of curiosity I tested it and found it to be true. For example, Glaxo Smithkline Phramaceuticals ltd. sells the drug “Paracetamol 500 mg” under brand name “crocin 500 mg” at price of Rs 1.10/tablet. Same drug is available at Rs 0.20 by…
Merge column cells into a cell in spreadsheet
Merging cells into single cell separated by commas in MS Excel like PHP’s implode function
Here is a custom visual basic function that will do it. To add this function for workbook, press Alt+F11 to open VB editor. Then select insert->module from menu. Paste the below code to code window.
For MS-Office
Function IMPLODE(Rng As Range, Quote As Boolean)
Var TEMP
For Each Cell In Rng
If Quote = True Then
TEMP = TEMP & "'" & Cell.Value & "', "
Else
TEMP = TEMP & Cell.Value & ", "
End If
Next Cell
TEMP = Mid(TEMP, 1, Len(TEMP) - 2)
IMPLODE = TEMP
End Function
For OpenOffice/LibreOffice
