Today's Question:  What does your personal desk look like?        GIVE A SHOUT

 WEB


  Install and remote access phpMyAdmin on CentOS

phpMyAdmin is a free and open source tool written in PHP intended to handle the administration of MySQL with the use of a Web browser. It can perform various tasks such as creating, modifying or deleting databases, tables, fields or rows; executing SQL statements; or managing users and permissions.Today I walk through you the steps to install phpMyAdmin on CentOS. Actually, these steps are applicable to other Linux systems as well. 1. Download the phpMyAdmin from Sourceforge.net. Run command:wget -c http://sourceforge.net/projects/phpmyadmin/files/phpMyAdmin/3.5.1/phpMyAdmin-3.5.1-english.tar....

18,210 0       PHPMYADMIN LINUX DEMO INSTALLATION


  10 design flaws of JavaScript

JavaScript's design took only ten days. Moreover, the designer didn't want to design it initially, he just wanted to complete the task assigned by company. It is now a very powerful client side programming language used in almost all the websites. It's an excellent language, but it also has some flaws.1. Not suitable for large projectsJavaScript doesn't have namespace, it's hard to be modular, there is no standard for putting codes in multiple source files. It allows defining functions with the same name, the function defined later will override the one defined previously, it's hard for method...

18,073 4       JAVASCRIPT DESIGN FLAW OBJECT


  A collection of color schemes for some famous websites in China

Each website has a color scheme which identifies itself. By looking at one color, we can know which website it is for. These color schemes can be identified from their logos, nav-bars, background etc. We collect some color schemes for some famous Chinese websites.Alibaba (#f90) Baidu (#0000cc) Huawei (#e30a12) HTC (#69b40f) JD (#c91623) Renren (#105ba3) Sina (#e4351e) Sohu (#fdd000) Taobao (#ff4400) Tencent (#0397de) Tmall (#b10000) WeChat (#5ba607) Xiami (#f39200) Zhihu (#0078d8) 163 (#333) 36Kr (#146fb9) 360 (#48...

17,875 7       WEBSITE CHINA COLOR SCHEME


  6 amazing HTML5 animation effects

HTML5 is rapidly developed in WEB world, it puts all kinds of pressure to browser development, but at the same time it also brings us lots of unexpected page effects. If we can use some HTML5 elements on our web apps,  we may get different user experience. However, for HTML5, there are lots of places need to improved. The following HTML5 animation effects are very attractive.1. HTML5 mouseover image effectThis HTML5 animation effect can be used in photo gallery, users can preview the photo while mouseover the photo.Online Demo / Source code2. Falling leaves animation based on HTML5 W...

17,809 1       HTML5 ANIMATION


  Where are the top 100,000 most visited websites hosted?

Do you know where are the websites you visit every day hosted online? There are more and more websites hosted on cloud server now as the stability, scalability and cost effective features of cloud. Recently hostcabi released an infographic which shows some statistics about the top 100,000 most visited websites(according to Alexa).The top 100,000 most visited websites have spread their hosting over 6 continents, 102 countries, 621 cities and 1,024 hosting providers SoftLayer(IBM), AWS, GoDaddy and HostGator etc. ...

17,324 0       WEB HOSTING CLOUD SERVICE


  Source code for sharing webpage to facebook

Copy and paste the following code blocks into your site and replace '<url>' with the link you want to Share.Text link:<script>function fbs_click() {u=location.href;t=document.title;window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');return false;}</script><a rel="nofollow" href="http://www.facebook.com/share.php?u=<;url>" onclick="return fbs_click()" target="_blank">Share on Facebook</a>Small icon and text:<script>function fbs_click() {u=location.h...

17,006 0       SOURCE CODE FACEBOOK SHARE WEBPAGE


  Will HTML5 ever overtake native mobile apps?

Since now HTML5 has become a very hot topic. It can be used develop some highly functional and amazing applications on desktop and mobile devices. Also, there are many libraries which are using HTML5 to develop some native app like applications on iPhone and Android systems such as PhoneGap. Someone on Quora asked a question which many people are concerning about.: Will HTML5 ever overtake native mobile apps? It seems that the number of people who are agreeing with it equals to the number of people who disagreeing with it.Let's see the two most popular answers on Quora about this question.Aski...

16,891 0       MOBILE HTML5 NATIVE APP


  JavaScript to scroll element into view

In AJAX applications, there are frequent needs to scroll some element into view after some modification to the page. For example, after adding an item or updating an element in an admin panel, the page may need to be scrolled to the item added or updated so that we can see the changes immediately.In these cases, JavaScript can be used to scroll the element we want to show. In Vanilla JavaScript, there is no built-in function which can achieve scroll_element_into_view(), but most of modern browsers provide function like window.scrollTo() which can scroll the page to some position. window.s...

16,258 0       JAVASCRIPT JQUERY SCROLLTO HOW-TO