QNimate

  • CoursesVideos
  • WP PremiumPlugins
  • DemosLab
  • Home
  • QIdea
  • QTrack
Change Position of WordPress Dashboard Widget

This post is a part 4 of Creating a WordPress Admin Theme post series. In this tutorial I will show you how to display a widget in various position of WordPress dashboard page. WordPress doesn’t provide any API to change position of widget. Therefore we need to modify WordPress core $wp_meta_boxes variable to change position […]

7 years ago http://qnimate.com/change-position-of-wordpress-dashboard-widget/
JavaScript Promise vs Callback

A callback is a function that is passed to an another function. A callback may or may not be executed asynchronously. For example; function two() {     return 2; } function x(y) {     //execute y     return y(); } console.log(x(two)); //2 Here two() is a function. We are passing it as […]

7 years ago http://qnimate.com/javascript-promise-vs-callback/
Difference between “Map” and “WeakMap” in JavaScript

This post is a part 16 of ECMAScript 6 Complete Tutorial post series. JavaScript “Map” and “WeakMap” objects allows you to store collection of unique keys and their corresponding values. But there are some key differences between them. Here are the differences: They both behave differently when a object referenced by their keys/values gets deleted. […]

7 years ago http://qnimate.com/difference-between-map-and-weakmap-in-javascript/
JavaScript “Map” Object

This post is a part 15 of ECMAScript 6 Complete Tutorial post series. JavaScript “Map” object is a collection of unique keys and corresponding values. Keys and Values can be object references or primitive types. 2D Arrays can store duplicate values but Maps don’t store duplicate keys, this is what makes it different from 2D […]

7 years ago http://qnimate.com/javascript-map-object/
Difference between Set and WeakSet in JavaScript

This post is a part 14 of ECMAScript 6 Complete Tutorial post series. JavaScript Set and WeakSet objects allows you to store collection of unique keys. But there are some key differences between them. Here are the differences: They both behave differently when a object referenced by their keys gets deleted. Lets take the below […]

7 years ago http://qnimate.com/difference-between-set-and-weakset-in-javascript/
JavaScript “Set” Object

This post is a part 13 of ECMAScript 6 Complete Tutorial post series. JavaScript “Set” object is a collection of unique keys. Keys are object references or primitive types. Arrays can store duplicate values but Sets don’t store duplicate keys, this is what makes it different from arrays. Here is code example on how to […]

7 years ago http://qnimate.com/javascript-set-object/
JavaScript “0b” Literal

This post is a part 12 of ECMAScript 6 Complete Tutorial post series. “0b” lets you create a number using binary of the number directly. Developers usually provide number in decimal representation and it was converted to binary and stored in memory but from ES6 onwards you can specify the binary of the number directly. […]

7 years ago http://qnimate.com/javascript-0b-literal/
JavaScript “0o” Literal

This post is a part 11 of ECMAScript 6 Complete Tutorial post series. “0o” is a new way of creating a number using octal value in ES6. Earlier to ES6, JS developers had to use “0” in front of numbers to specify its a octal number. JavaScript internally converts hexadecimal and octal numbers to decimal […]

7 years ago http://qnimate.com/javascript-0o-literal/
Passphrase Based Encryption using Web Cryptography API

This post is a part 5 of Web Cryptography API Tutorial post series. ⎗ Previous: Digital Signature using Web Cryptography API. In this tutorial I will show you how create a symmetric key using a passphrase and then encrypt or decrypt data using that generated key. Converting String to Array Buffer and Array Buffer to […]

7 years ago http://qnimate.com/passphrase-based-encryption-using-web-cryptography-api/
Page 10 of 43« First«...89101112...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
    8 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
    8 years ago
Most Commented
push-notificaton
Push Notification in Intel XDK using Push Plugin
7 years ago
109 Comments
facebook-chat-popup
Facebook Style Chat Box Popup using JavaScript and CSS
7 years ago
73 Comments
What is Multiplexing in HTTP/2?
7 years ago
61 Comments
Currently Viewed
JSON.parse() throws “unexpected token” error for valid JSON
6 years ago
HTML5 Battery Status API with Code Example
7 years ago
Default Function Arguments Values in JavaScript
7 years ago
Our Sponsor
My Books

2014 - 2015 © QNimate
All tutorials MIT license