Does your web site facilitate the new breed of layman users?Get Web Design Tips and Tricks on mps-web-design.com. Does your web site facilitate the new breed of layman users? topic will increase your understanding on Web Design Tips and Tricks. We at mps-web-design.com only provide news, articles, information in Web Design Tips and Tricks. Web Design Tips and Tricks at mps-web-design.com provides the most up to date news and articles. If you have questions please do not hesitate to contact us.
Internet has got virtually deep down penetration across the globe, and the profile of its users has also gone a sea change. Over the years, the internet has come out from the prerogative of select users of scientific and defense community to mass accessibility. And probably this is the temperament of this so called cyber age where people have just started to treat computers as just another thing that is indispensable to modern human existence. Today the use of computers is not necessarily confined to high-tech professionals, but has spanned over all functions and disciplines including common man for his everyday's purposes. Hence, there is a awful number of users who browse through the Internet on a periodic basis, and their surfing skills are at best rudimentary. Time is ripe for making your web site superbly user friendly. This new breed of users with minimal exposure to browsing is vulnerable to encounter a little more difficulty in even a web site that is otherwise user friendly. Here is an important point not to be missed out that this new breed of surfers can be a great prospect for your site when their needs are understood and correspondingly catered to. The need of the moment is to make your site excessively user friendly so that they are not lost on the web, and they do not just wind up browsing in sheer hopelessness. They need to be guided through simplistic features to help them know what to do next in order to get what they are looking forward to. This sort of users lacks fundamental competence to search the stuff on the Internet effectively, faces hiccups in navigating web site and looks in astonishment while dealing with typical annoyances on the web. Their utter inability to understand your site often lead them to another site in search of ease, and it does constitute losses for you! Designing your web site in such a manner as will enable them to learn quickly and steer clear the way to enriching experience is what is required in this regard. But before making your web site layman friendly, it is essential to get the pulse of the browsing tendencies and habits of layman users. An insightful look at the online behavior of layman users Here are some interesting observations on the typical behavior of relatively new users while they use the Internet. It is quite amazing to learn that new users have been found to practice a novel method to log on to a particular web site whose URL is known to them. They have been observed to type in the URL in Google search, and subsequently clicking on same URL in the returned search pages. A report from Metacrawler, an Internet research firm, reveals the fact that search queries like 'hotmail.com', 'www.hotmail.com', 'Google', 'Yahoo' etc. are among the top search engine queries. It implicitly proves that people do not seem to know that they can access any site by simply typing its URL in the browser address bar. While going through the returned search pages of Google, new users tend to read the titles of the pages, which they think are closest to their search criteria, and click on such hyperlinks. Hence, the titles of the pages in search results have to be strategically written. Haphazard pieces of information clustered all through the page not only confuse the users but also scare them. Unsystematic organization of content on the page and a low count on readability make them feel that desired information is non-existent on the page. The randomness of content simply turns them off because they do not bother to look deep; they just scan and skip. It has been found that new users are not comfortable with pop-up advertisement windows. They mistakenly close other windows, ponder over how to go back, or even close dial-up connection in their attempt to deal with the pop-ups. It has been seen that layman users are not at ease to manage multiple browser windows.
Helping layman users to browse with confidence and convenience
In the light of the above observations, a couple of simplistic features might be added to your web site in order to tap the traffic of layman users. Definitely such features will be contributing to the overall usability of your site in a positive way. You can not afford to miss the listing of your web site in prominent search engines. It has nothing to do with your offline advertising campaign however aggressive it might be. Such advertisement will of course help your URL gain popularity, but chances are not distant that some new users end up complaining that your web site could not be accessed. Not to mention here, getting listed in the search engines has got its own bundle of benefits. If you wish to have your own start page for the users of your site, it pays to place search engine links or a search box onto that page. This will help layman users to stick to your start page. It is clear now that the titles of the pages in search results are crucial for clickthroughs. Therefore, the title of your page should be in accordance with the key words you are optimizing the page for. The title should be enticing and relevant enough to be clicked on. Each page of your site has to be individually optimized for a particular key word for a good traffic. There can not be any hard and fast rules in using pop-ups and newsletter subscription windows. It essentially depends on the proficiency level of users who visit the site. It is always preferable to have test run of such features before implementing them throughout the site. Once you experience the loss of traffic due to such features, it is a subtle indication that such features are not for your site. The crowd visiting this site is dominantly layman users, and hence it is to be a lot more user friendly.
The learning advantage In short, capitalizing on the idiosyncrasies and rudimentary skills of this new breed of Internet users can open the gateway of more traffic and hence more revenues that can eventually translate into your web success.
Some simple suggestionsWell I don't consider myself an expert, I do have experience with working with larger datasets and there are a couple of things that I always do to keep queries performing well. Optimize Queries with EXPLAIN
Optimizing joinsSingle sweep what?
Why is this important? Imagine a main table - tableA - with 80,000 rows of data. This table has a corresponding n:n table that maps entries in tableA with a locations table. A query could be written as: SELECT tableA.*, locations.location from tableA Left Join tableA2locations on tableA2locations.tableA_id = tableA.id Left Join locations on tableA2locations.location_id = locations.id where locations.location = 'sometown' Keeping the above quote in mind, MySQL will read a row from the first table and join the corresponding data from the joined tables for that row and then sweep thru the rest of the data, joining as it goes along. This leads us into the following section. Number of rows needed to execute a query
From the above, you can determine that for a query on tables that have not been properly indexed, a join can quickly become unwieldy when dealing simply with three tables with records in the thousands (1000*1000*1000 = a slow query). See HackMySQL for a good example of this. Reducing the number of rows needed to execute a querySo beyond indexing properly for joins, you can still end up with a query that runs in a way that causes a bottleneck. Taking our example from above, imagine that we use a where clause that limits the tableA selection to half ( SELECT tableA.*, locations.location from tableA Left Join tableA2locations on tableA2locations.tableA_id = tableA.id Left Join locations on tableA2locations.location_id = locations.id where locations.location = 'sometown' and tableA.foo = 'bar' This starts us out with 40,000 rows of tableA data to examine. If there are a further 2000 rows from tableA2locations, thats 800,000 rows of data. Not astronomical, but significant. If this was a 3 or 4 table join, things could get ugly. What to do? The answer may be obvious to some: select first with the most limiting table: SELECT tableA.*, locations.location from locations Left Join tableA2locations on tableA2locations.location_id = locations.id Left Join tableA on tableA2locations.tableA_id = tableA.id where locations.location = 'sometown' and tableA.foo = 'bar' This starts us out with 1 selection from the locations table, then 2000 from tableA2locations. If the join between tableA2locations and tableA is indexed correctly, we are then left with an index join based on ID, rather then having to initially select 40,000 rows from tableA as in the previous example. When I first started programming, it made sense to me to select from the main table (tableA) and join the lookups. But once you add some data to the mix and start to play with For further reading on the topic, I always send people to HackMySQL when they ask, so for more tips and tricks, be sure to have a read thru the optimize section of that site. Article Index: | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 |
More Articles:1. The Key to Effective Web Site Design This article may be published electronically or in print, free of charge, without alteration to any content and the resource box at the end of the article is included in it's entirety without alteration. A courtesy copy of your publication would be appreciated.THE KEY TO EFFECTIVE WEB SITE DESIGN by Breal Web Design ************************************************************ The key to effective web site design is good planning. Without planning and organisation, you will end up with chaos. Onc… 2. Welcoming Your Website Visitors By Lisa Packer Imagine you're going on a blind date. You've heard wonderful things about this person, and in your heart of hearts you're thinking -- hoping -- this might just be "the one." Your heart beats a little faster as you pull into the driveway, and your stomach is all aflutter as you gingerly reach out and ring the door bell.The door opens, and suddenly you are facing one of the most attractive members of the opposite sex you've ever laid eyes on. Your breath is literally taken away. You become an in… 3. Web Crimes: how to avoid common website design mistakes By Amber McNaught Thinking about designing your own website? Think again about adding any of these “features”…1. Animated gifs. You know the ones: the dancing baby, the rotating email sign. No matter what you chose, nothing screams out “amateur” quite like an animated gif. Next!2. Mouse trails. Those little pictures, or strings of letters that “follow” your mouse everywhere it goes. In my case, they follow my mouse all the way to the “back” button, so I can surf on to somewhere less annoying.3. Music. If I want… 4. Tips to build an attractive search engine friendly website A good Website is something related to user experience. This experience is the 'effect' (the wow factor) your site has on visitors, and good effect means something, which becomes memorable in the visitor's mind. To make it memorable we require good content, graphics and user-friendly navigation. A Website experience is great when it is useful, desirable and impact. So here are some points for consideration before designing Website Goal and target - Goal of the Website (site's purpose) and who is… |
||||