發表文章

目前顯示的是有「website」標籤的文章

web compare: PHP vs ASP.NET vs JAVA + JSP

Here are a few pro's and con's of the languages: PHP ASP.NET Java + JSP Pro's 1. User friendly, java/javascript type syntax 2. Minimal learning curve for small applications 3. Great array of functions predefined in the system 4. Loads of cheap hosting options 5. Loads of tutorials and pre-written scripts 1. OOP based environment. 2. Allows for rapid development inside the correct IDE's 3. Strongly Typed 4. Java/javascript type syntax 5. Strong graphics manipulation ability 1. OOP 2. Strongly typed 3. Strong Graphics Manipulation ability 4. Loads of API's 5. Open Source Con's 1. Code can get messy quickly if project is not managed properly. 2. Not strongly typed 3. Security depends on the knowledge of the developer 4. Configurations might change depending on host 1. Costly IDE's 2. Steep learning curve for beginner 1. Slow performing IDE's 2. Steep learning curve

Get URL Parameters using jQuery

Get URL Parameters using jQuery To implement this, I have created a function which returns value of any  parameters  variable. function GetURLParameter(sParam) { var sPageURL = window.location.search.substring(1); var sURLVariables = sPageURL.split('&'); for (var i = 0; i < sURLVariables.length; i++) { var sParameterName = sURLVariables[i].split('='); if (sParameterName[0] == sParam) { return sParameterName[1]; } } }​ And this is how you can use this function assuming the URL is,  " http://dummy.com/?technology=jquery&blog=jquerybyexample ".  var tech = GetURLParameter('technology'); var blog = GetURLParameter('blog'); So in above code variable " tech " will have " jquery " as value and " blog " variable's will be " jquerybyexample ". Source from: http://www.jquerybyexample.net/2012/06/get-url-parameters-using-jquery...

Nginx Vs Apache: Nginx Basic Architecture and Scalability

圖片
Nginx Vs Apache: Nginx Basic Architecture and Scalability The need for serving large number of concurrent requests is raising every day. The prediction of C10K problem (i.e 10,000 concurrent clients) started the research on web server architecture which could solve this problem. As a result Nginx architecture was developed. This article explains on a very high-level how Nginx works to solve the scalability problem, along with high level differences between Nginx and Apache webserver. Increasing Web Server Scalability The web server scalability problem can be solved either by increasing the hardware capabilities (i.e memory, CPU, etc ) or by improving the web server architecture. The goal here is to improve the web server architecture too optimize the hardware resources, which will eventually lead to a cost effective architecture. For solving this problem, In 2002 Igor Sysoev started developing a web server written in C, which had an efficient thread management. Nginx was ...

[Cool] SONY Store - Be Moved

http://discover.store.sony.com/be-moved/

Future of Web Design London 2014

Future of Web Design London 2014 http://futureofwebdesign.com/london-2014/

Nice web design

Nice web design http://www.southbankcentre.co.uk/

Generate screenshots at actual device sizes on iOS, Android, OS X & Windows

圖片
Generate screenshots at actual device sizes on iOS, Android, OS X & Windows You can test your website with different size with different mobile device And test on iOS, Android, OS X & Windows. Source from:  http://www.browserstack.com/responsive