QNimate

  • CoursesVideos
  • WP PremiumPlugins
  • DemosLab
  • Home
  • QIdea
  • QTrack
Facebook Style Infinite Scroll

Facebook loads new posts on timeline and news feed as you scroll down. This makes Facebook home page and profile load faster as Facebook don’t have to load everything on page load. For achieving this Facebook uses a technique called as Infinite scrolling. In this tutorial we will see how to achieve infinite scroll using […]

7 years ago http://qnimate.com/facebook-style-infinite-scroll/
WordPress Add Custom Post Type to Archive

Here is the code to add custom post type to archive pages <?php //$q is the global query object. Its type is WP_Object. function add_custom_posttype_to_archive($q) {     if(is_admin())     {         return;     }     if(is_tag() || is_category())     {         if($q->is_main_query())     […]

7 years ago http://qnimate.com/wordpress-add-custom-post-type-to-archive/
WordPress Add Custom Post Type to Search Result

Here is the code to add custom post type to search result <?php //$q is the global query object. Its type is WP_Object. function add_custom_posttype_to_posts_search($q) {     if(is_admin())     {         return;     }     if(is_search())     {         if($q->is_main_query())         […]

7 years ago http://qnimate.com/wordpress-add-custom-post-type-to-search-result/
WordPress Add Custom Post Type to Posts Index Page

Here is the code to add custom post type to posts index page <?php //$q is the global query object. Its type is WP_Object. function add_custom_posttype_to_posts_index($q) {     if(is_admin())     {         return;     }     if(is_home())     {         if($q->is_main_query())       […]

7 years ago http://qnimate.com/wordpress-add-custom-post-type-to-posts-index-page/
Header Compression in HTTP/2

This post is a part 4 of HTTP/2 Complete Tutorial post series. Headers in HTTP/2 provide information about the request or response. Header take around 800 bytes of bandwidth and sometimes few KB if it carries cookies. Therefore compressing headers can reduce the bandwidth latency. So HTTP/2 introduced header compression. Header compression is not like […]

8 years ago http://qnimate.com/header-compression-in-http2/
What is Server Push and Promises in HTTP/2?

This post is a part 3 of HTTP/2 Complete Tutorial post series. Server push is a method in HTTP/2 which allows server to send multiple responses for a single request. This feature decreases the latency in loading a webpage. To make an HTTP/2 request client first checks if a TCP connection is already open or […]

8 years ago http://qnimate.com/what-is-server-push-and-server-hint-in-http-2/
What is Multiplexing in HTTP/2?

This post is a part 2 of HTTP/2 Complete Tutorial post series. Multiplexing is a method in HTTP/2 by which multiple HTTP requests can be sent and responses can be received asynchronously via a single TCP connection. Multiplexing is the heart of HTTP/2 protocol. Frames and Streams HTTP/2 is a binary protocol. Every HTTP/2 request […]

8 years ago http://qnimate.com/what-is-multiplexing-in-http2/
HTTP/2 Compatibility with old Browsers and Servers

This post is a part 1 of HTTP/2 Complete Tutorial post series. One of the biggest question that comes in is how is old browsers going to deal with HTTP/2 web servers and vice-versa. HTTP/2 uses an Upgrade and Discovery method to find if a server supports HTTP/2 or not. An HTTP/2 client never makes […]

8 years ago http://qnimate.com/http2-compatibility-with-old-browsers-and-servers/
HTTP/2 Complete Tutorial

HTTP/1.1 was introduced in 1999 and since then the web has changed. More people are accessing websites in mobile and tablets which have relatively slow connection and the number of external resources per page is increasing with causing increase in page load size. Although many HTTP clients and server side hacks had been implemented to […]

8 years ago http://qnimate.com/post-series/http2-complete-tutorial/
Page 6 of 43« First«...45678...203040...»Last »
Categories
  • Algorithms (1)
  • API (5)
  • Cloud (1)
  • Cordova (68)
  • Databases (8)
  • Ethereum (3)
  • Hyperledger Fabric (1)
  • Marketing (3)
  • Node.js (3)
  • Operating System (2)
  • Other (1)
  • SEO (15)
  • Tips and Tricks (13)
  • Web Development (184)
  • Web Security (12)
  • WordPress (94)
Most Viewed
  • slider
    Image Slider Using HTML And CSS Only
    60 comments
    9 years ago

  • facebook-chat-popup
    Facebook Style Chat Box Popup using JavaScript and CSS
    73 comments
    8 years ago

  • html5-file-api
    An Introduction To JavaScript Blobs and File Interface
    13 comments
    9 years ago
Most Commented
push-notificaton
Push Notification in Intel XDK using Push Plugin
8 years ago
109 Comments
facebook-chat-popup
Facebook Style Chat Box Popup using JavaScript and CSS
8 years ago
73 Comments
What is Multiplexing in HTTP/2?
8 years ago
61 Comments
Currently Viewed
xdk-php-mysql
Create a Intel XDK APP with PHP and MySQL Backend
8 years ago
web-cache
How Web Caching Works?
8 years ago
supports-css-feature-query
Check if CSS property is supported using CSS and JavaScript
8 years ago
Our Sponsor
My Books

2014 - 2015 © QNimate
All tutorials MIT license