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.

Cool Carousels

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

Read More

jQuery Addon Tagging

jQuery Tagging helps to select tags for new post

Find more info here: Tagging

Ubuntu Phone OS

Wow,

It’s good to hear about Ubuntu Phone OS. Today canonical has announced Ubuntu for phone.

Ubuntu Phone OS

Read more

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

Read More