Polka Dot Pattern Generator

Posted On / Leave a Comment


Polka dot pattern generator lets you generate seamless repeating patterns for use in web background or with Photoshop as custom patterns and in custom graphics. You can generate one with the background and foreground color of your choice or even with a transparent background and use it which ever way you like. It's free with no credits required (but recommended).

Check out here 

Stripe Generator

Posted On / Leave a Comment
Are u looking for a strip color image ?

Stripe generator lets you generate seamless repeating patterns for use in web background or with Photoshop as custom patterns and in custom graphics. You can generate one with the background and foreground color of your choice or even with a transparent background and use it which ever way you like. It's free with no credits required (but recommended).


Check it out here 

Youtube channel on your website

Posted On / Leave a Comment

YouTube Channel embedding on website was asked and i was searching again for the best solution i could find. 


after some googling i find this 

Youmax 2.0 - complete Youtube channel on your website - customize anything you want - Jquery plugin



This is the version 2 of our Youmax plugin!

New Features:
- you can customize width and height of the widget on your website.
- columns for the videos can be customized (Example: you can now have a 3-column layout for the videos displayed.)
- the widget itself is responsive; given a width (or %) for the widget, the inner contents will resize accordingly.
- video player can be opened in the widget itself or in a lightbox.
- a top featured video can be opened in the video player on load of the widget.
- subscribe on youtube opens in a new tab.
- parts of the plugin like header/tabs can be hidden as per requirement.

Basic features:
- displays your actual complete youtube channel on your website just like its shown on youtube.
- youmax plugin will display your channel uploads, playlists and a featured playlist that you may choose. 
- users can browse through your playlists and uploads and watch videos they like.

go check out the example at  Youmax2.0

Awesome Menus

Posted On / Leave a Comment

HTML, CSS, & jQuery Menus

I was looking for a great 2 level navigation menu for a website and as i googling i "fell" to the link bellow , Check it out its great !


Use MenuMakers to easily build clean responsive website navigations, if you prefer working with the source code, all menu designs are free to download.




How to restore corrupted MyISAM/InnoDB tables on MySQL 5.0

Posted On / Leave a Comment
I know that it’s not our job to manage database servers. But if you don’t have a competent crew for that, you have to face the problem yourself.
Well, here is what happened to me this week. Waiting for the end of the day, in which the number of connections to our MySQL server is quite low, I started the creation of a new index on a huge MyISAM table (14 Gb), which is used to store the logs of our systems. While the index was being created, our “network administrator” received some complaints from our users that the systems were to slow. What was his solution? Shut down the server! In this process, logically our huge table was lost and, even worse, the MySQL server couldn’t be restarted at all!
Many of our InnoDB and MyISAM tables were corrupted because of this “little” mistake. So, after some hours of research I discovered a simple procedure that can restore all your data (or at least most of it). This procedure is composed of three steps:
1. Execute the myisamchk software inside your MySQL data directory. If you don’t know where this directory is, check the parameter datadir on your MySQL configuration file (my.ini on Windows, my.cfg on Linux/Unix).
You must use two parameters: –force and –verbose (which is optional) like bellow:
1
myisamchk --force --verbose */*.MYI
The –force parameter will instruct myisamchk to repair automatically every problem it may encounter on your MyISAM tables, while the –verbose (which is optional) will only show the status of execution of the myisamchk program on your screen.
2. Start the MySQL server with the parameter –innodb_force_recovery
Try to start your MySQL server with this parameter. The value must be a number between 1 and 6. As higher it’s value, worst are the problems on your MySQL tablespace.
Example:
1
mysqld --innodb_force_recovery=4
If you only got to start your MySQL server with a value bigger than four, your databases will be in read only mode. If not, your users may use the server normally.
If you wish, you may also add the command innodb_force_recovery to your MySQL configuration file as in the example bellow:
1
2
[mysqld]
innodb_force_recovery=4
3. After your MySQL server starts, backup your data and then restore them on a new MySQL installation.

Blog Archive

Total Pageviews

Translate