
Description of first Slide goes here.Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae...

Description of second Slide goes here.Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae...



mercredi 31 août 2011
Reduce the File Size of JPEG Photos by Up to 5x
Posted by YufGrafix | mercredi 31 août 2011 | Category:
tool
|
0
comments
JPEGmini
is a patent-pending photo recompression technology, which significantly
reduces the size of photographs without affecting their perceptual
quality. The technology works in the domain of baseline JPEG, resulting
in files that are fully compatible with any browser, photo software or
device that support the standard JPEG format.
JPEGmini was developed by ICVT, which is dedicated to optimizing media compression technologies. ICVT’s goal is to improve the user experience and reduce the costs associated with storing and transmitting media files.
Requirements: -
Demo: http://www.jpegmini.com/
License: License Free
JPEGmini was developed by ICVT, which is dedicated to optimizing media compression technologies. ICVT’s goal is to improve the user experience and reduce the costs associated with storing and transmitting media files.
Requirements: -
Demo: http://www.jpegmini.com/
License: License Free
TransformJS is a jQuery plugin which exposes new CSS properties accessible through .css() and .animate() which you can use to apply and manage transformations to a jQuery element.
TransformJS uses feature detection to analyze the supported features of the browser it is running in and adapts accordingly and it maintains an in-memory matrix which it uses to apply the transforms.
The ability to use transforms without constructing huge stylesheets for x-browser compatability is nice.
Requirements: jQuery
Website: http://transformjs.strobeapp.com/
License: Free
Cryptico.js is an easy-to-use JavaScript library for encrypting text on the client-side.
It has support for RSA + AES methods and the text can be encrypted with any given bit length (228, 1024, etc.).
The content is encrypted with a public key and it can only be decrypted with that key (which makes sense if the recipient already has that information).
Cryptico.js doesn't require any JS frameworks to function and it is well-documented.
Requirements: No Requirements
Website: http://cryptico.wwwtyro.net/
It has support for RSA + AES methods and the text can be encrypted with any given bit length (228, 1024, etc.).
The content is encrypted with a public key and it can only be decrypted with that key (which makes sense if the recipient already has that information).
Cryptico.js doesn't require any JS frameworks to function and it is well-documented.
Requirements: No Requirements
Website: http://cryptico.wwwtyro.net/
mardi 30 août 2011
I received many tutorial requests from my readers that asked to me how to display and store foreign/regional language UTF-8 data into MySQL database using PHP code. This post explains you to solve Unicode data problems, just there steps you should follow take a quick look at this post.
Database
Sample database articles table columns id, title and description. Character set should be UTF-8 format.
CREATE TABLE `articles`
(
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(300) CHARACTER SET utf8 collate utf8_general_ci ,
`description` text CHARACTER SET utf8 collate utf8_general_ci,
PRIMARY KEY (`id`)
)
(
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(300) CHARACTER SET utf8 collate utf8_general_ci ,
`description` text CHARACTER SET utf8 collate utf8_general_ci,
PRIMARY KEY (`id`)
)
You can set this using PHPMyAdmin. Go to table structure and change collationlatin1_swedish_ci to utf8_general_ci
Insert - Why prefix 'N'?
SQL insert statement. Here the N stands for National language character set. Which means that you are passing an NCHAR, NVARCHAR or NTEXT value Read more.
INSERT INTO
articles(title,description)
VALUES
(N'శ్రీనివాస్ తామాడా', N'新概念英语第');
articles(title,description)
VALUES
(N'శ్రీనివాస్ తామాడా', N'新概念英语第');
HTML META TAG
You have to include this following tag in data results pages.
Useful Related Posts
Regional Language UTF-8 Text Box
Database Searching Techniques Regional Language.
<meta http-equiv="Content-Type" content="text/html;
charset=UTF-8" />
charset=UTF-8" />
Displaying Records
Contains PHP code displaying records form database. Before that you have to specifymysql_query() function data character set type.
<?php
include('db.php');
mysql_query ("set character_set_results='utf8'");
$query = mysql_query("SELECT * FROM articles") or die(mysql_error());
while($row=mysql_fetch_array($query))
{
echo $row['title']; // Article
echo $row['description']; // Description
}
?>
include('db.php');
mysql_query ("set character_set_results='utf8'");
$query = mysql_query("SELECT * FROM articles") or die(mysql_error());
while($row=mysql_fetch_array($query))
{
echo $row['title']; // Article
echo $row['description']; // Description
}
?>
Hope this post helps your web project to reach global and regional(Indian languages). Thanks!
Yioop! is an open source search engine built with PHP and uses MySQL or SQLite for storing the data.
It can be configured to crawl any page it finds by following links or limited to any given number of URLs and used as an in-site search engine (like Google Custom Search).
A standard setup can crawl and index millions of pages per day and this number can be increased by running more crawlers (distributed setup is possible as well).
There is support for indexing many file types including HTML, DOC, PNG, JPG, GIF, XML, sitemaps, RSS and much more.
Also, the system can be controlled completely from a web-based administration interface.
Requirements: PHP 5.3+, MySQL or SQLiteWebsite: http://www.seekquarry.com/
Demo: http://www.yioop.com/
Download: http://www.seekquarry.com/?c=main&p=downloads
Simple is beautiful; it is fast and efficient – this is how I would introduce Continuous Calendar, a simple jQuery plugin for date range selection. Continuous Calendar allows you to select large or small date ranges from a simple calendar control in a single click.
The interface is just like a simple calendar control but with the ability to drag and select an entire data range easily. This is very practical and useful in scenarios where you have to specify a duration or date range quite often. Continuous Calendar allows to do it without requiring you to find and select start and end dates separately; you do it in a snap – simple and efficient.
Major Features
- Date Dragging
- Range Expand with Shift + Mouse Click
- Display Current Date
- Allow Disabling of Dates
- Month and Week Select
This jQuery date plugin support for different date formats and supports popup.
Requirements: jQuery LibraryDemo: http://reaktor.github.com/jquery-continuous-calendar/src/example.html
Website: http://old.laughingpanda.org/mediawiki/index.php/Continuous_calendar
License: Apache
Would you like to document your API with style? Swagger is a specification and complete framework implementation for describing, producing, consuming, and visualizing RESTful web services.
The overarching goal of Swagger is to enable client and documentation systems to update at the same pace as the server. The documentation of methods, parameters and models are tightly integrated into the server code, allowing APIs to always stay in sync. With Swagger, deploying managing, and using powerful APIs has never been easier.
Requirements: Java 1.6+, Apache ant 1.7+, Scala 2.8.1+Demo: http://swagger.wordnik.com/
License: Apache License
Inscription à :
Articles (Atom)