QNimate

  • CoursesVideos
  • WP PremiumPlugins
  • DemosLab
  • Home
  • QIdea
  • QTrack
Narayan Prusty 376

I am a software engineer specialising in Blockchain, DevOps and Go/JavaScript. This is my personal blog where I write about things that I learn and feel interesting to share.

EIP-1557 – Ethereum Transaction Fees and Block Size

Post London upgrade which implements EIP-1559, Ethereum has changed how block size and transaction fees works. Block Gas Limit Earlier Ethereum block gas limit was calculated using the below formula: block_gas_limit = (parent_gas_limit * 1023 + parent_gas_used * 1.5) / 1024 This formula changes the gas limit of blocks by 0.0976% in either direction. Post […]

1 year ago http://qnimate.com/eip-1557-ethereum-transaction-fees-and-block-size/
Blockchain based Identity, Records Management and Voting using AWS

The purpose of tutorial article is to understand the architecture and thought process of building a blockchain based decentralised identity, records management and voting solution using AWS for the government of mars. Goal The mars government was to build a fast and secure solution which helps the martians to proof their identity and can cast […]

3 years ago http://qnimate.com/blockchain-based-identity-records-management-and-voting-using-aws/
Writing Upgradable Smart Contracts in Solidity

As you must be aware that smart contracts are immutable programs that run exactly as programmed without any third party interface. Smart contracts cannot be modified once they are deployed which is actually a feature of smart contracts but in some blockchain use-cases it may be needed to change the smart contracts interfaces and/or their […]

Image5 years ago http://qnimate.com/writing-upgradable-smart-contracts-in-ethereum/
Calculating Nonce for Raw Transactions in Geth

You can simply use web3.eth.getTransactionCount to get the transaction nonce but it doesn’t include the transactions pending in the transaction pool. The purpose of this API is to simply retrieve total transactions count from the blockchain only till a particular block (by default latest block). So when you are pushing a lot of transactions from […]

5 years ago http://qnimate.com/calculating-nonce-for-raw-transactions-in-geth/
Pointing Domain to AWS Elastic Load Balancing

Amazon ELB is an auto scalable load balancer that sits in front of EC2 instances and distributes traffic between them. Client communicates with ELB not with EC2 instances directly. When you create a ELB you get a domain name provided by Amazon AWS to make requests to the ELB. This domain name resolves to different […]

Image7 years ago http://qnimate.com/pointing-domain-to-aws-elastic-load-balancing/
Find Recorded Audio File Location in Cordova

Many people use the Media Plugin to record audio in cordova apps. Here is an sample code that shows how to record: var extension = null; document.addEventListener("deviceready", function(){               if(device.platform == "iOS")     {         extension = ".wav";     }     else if(device.platform […]

7 years ago http://qnimate.com/find-recorded-audio-file-location-in-cordova/
ES6 Reflect API Tutorial

This post is a part 18 of ECMAScript 6 Complete Tutorial post series. Object reflection is an language ability to able to inspect and manipulate object properties at runtime. JavaScript already had been supporting APIs for object reflection but these APIs were not organized under a namespace and also they threw exception when they fail […]

7 years ago http://qnimate.com/es6-reflect-api-tutorial/
Express.js Middleware Tutorial

Developers who are new to Express often get confused with the difference between route handler and middleware. Therefore they also get confused with the difference between app.use(), app.all(), app.get(), app.post(), app.delete() and app.put() methods. In this tutorial I will explain the exact difference between a middleware and route handler. And also how to use the […]

Image7 years ago http://qnimate.com/express-js-middleware-tutorial/
Storing Data Locally in a Intel XDK App

This post is a part 53 of Intel XDK Complete Tutorial post series. I wrote an article on how to store data locally in cordova based apps. As Intel XDK builds cordova apps therefore the technique is same for Intel XDK also. The article is published by SitePoint.

Link7 years ago http://qnimate.com/storing-data-locally-in-a-intel-xdk-app/
Page 1 of 4212345...102030...»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?
7 years ago
61 Comments
Currently Viewed
HTTP/2 Compatibility with old Browsers and Servers
7 years ago
WordPress Settings API Validation and Sanitization
7 years ago
triangle-circle-css
Creating Triangles And Circles Using CSS
8 years ago
Our Sponsor
My Books

2014 - 2015 © QNimate
All tutorials MIT license