Skip to main content

Posts

Showing posts from October, 2022

What is Polkadot(DOT)? and Amazing facts of dot coin?

  Scaling Issue with Bitcoin/BTC and Ethereum/ETH As more people use both blockchains over time, scalability issues in the Ethereum and Bitcoin core networks arise. While Visa and Mastercard's traditional payment systems can process 24,000 transactions per second, ETH networks can only process 30 transactions per second. Both networks' transaction fees rise as block demand exceeds their capacity. BitCoin($BTC) median transaction size is between 3.3 and 7 transactions per second So here is Polkadot that somehow solves the limitation of this blockchain. What is Polkadot(DOT)? Polkadot is a protocol that links incompatible networks (Bitcoin and Ethereum, for example) blockchains, enabling the transfer of wealth and data. It is also intended to be quick and scalable. The DOT token is used for governance and staking. As the ecosystem of specialized blockchains known as parachains expands, Polkadot unifies and secures them. The foundation of a truly interoperable decentralized web i...

What is blockchain and Types of Blockchain

  What is blockchain? A blockchain is a distributed database that maintains a continuously expanding list of ordered entries, called blocks, and these blocks are linked using cryptography. A timestamp, transaction information, and a cryptographic hash of the previous block are included in each block. A blockchain is a decentralized, distributed, and public digital ledger that is used for logging transactions across numerous computers in a way that prevents changes to the record from being made in the past without also changing all blocks that come after them and getting network consensus. Advantages of using blockchain : It provides greater trust among users.  It provides greater security among data.  Reduce the cost of production.  Improve Speed.  Invocation and tokenization. It provides immutable records.  Smart contracts Types of Blockchain Disadvantages of using blockchain : It is not possible to modify data. It requires large storage for a large databa...

What is Bitcoin? and How does Bitcoin work?

What is Bitcoin?  Bitcoin is a decentralized digital currency that permits fast payments to anybody, anywhere globally. Peer-to-peer technology is used by Bitcoin to operate decentralized, with the network managing transactions and creating new bitcoin. The majority of issues with the present banking system are addressed with bitcoin: Permissionless and international transactions are features of bitcoin. Anyone on the globe can install the software. Anonymous:  Since using Bitcoin does not require a valid ID, it is suitable for those who lack access to banking services, value their privacy, utilize computers, or reside in regions with weak financial infrastructure. Private:  Bitcoin can enable robust financial privacy when utilized carefully. Censorship-resistant:  No transaction, regardless of its size, can be frozen or blocked by anyone. Fast:  Data may go over the Internet almost as quickly as transactions. Cheap:  Fees may be extremely minimal. Once dec...

Error: Cannot assign value "$event" to template variable "emailBody". Template variables are read-only.

 Error: Cannot assign value "$event" to template variable "emailBody". Template variables are read-only. First of all, binding ngModel to your local variable X from.ts is not possible using #emailBody="ngModel." A new template variable emailBody will be bound to the instance of the Angular directive ngModel, which has nothing to do with your.ts variable. The only place a template variable may be found is in your component's.html (unless you use @ViewChild or a similar method to retrieve a reference in your.ts). Here is old cod that has this issue :   < div class = "ed_contact_form ed_toppadder60 row m-0" >         < div class = "col-lg-6 col-md-6 col-sm-12" >           < div class = "form-group" >             < input type = "text" id = "uname" class = "form-control"                          placeholder...

How to Purge/Invalidate/Delete cache in the AWS cloud front

  How to Purge/Invalidate/Delete cache in the AWS cloud front? One of the following options is available if you need to remove a file from CloudFront edge caches before it expires: The file should be removed from edge caches. When a viewer requests the file again later, CloudFront goes back to the source to get the most recent copy. To provide a different version of the file with a different name, use file versioning. See Using versioned file names to update existing files for further details. To purge cache in the AWS cloud front follow these steps: Open your CloudFront >> Distributions list, and click the desired distribution ID if you want to clear its cache. click on Create  Invalidations Button under crate invalidations >> Object Paths "/*" to clear all your cached files and click on "Create Invalidations" finally All set now, it will complete the command and all cached files will be deleted. PLease share our feedback/comment if it works for you?

AWS FREE ASP.NET CORE (.NET 6.0) HOSTING WITH FREE SSL

  FREE ASP.NET CORE (.NET 6.0) Hosting on AWS (Amazon Web Services) Today I was able to host my asp.net 6.0  + ANGULAR 14 application  on AWS Free  Initial Setup of your AWS Account and your Computer Get ready with your asp.net core 3.1 /.net 6 application Install  "AWS toolkit for visual studio 2022" as  visual studio extensions :  it will be required to deploy smoothly from Visual Studio 2022 itself, your life will be easy. Let's finish the AWS account setup  Get signed up with: its free but it will be required a valid credit card or debit card, they will charge nothing for the free services for 1 year * https://portal.aws.amazon.com/billing/signup#/start/email AWS console  for services and offering http://console.aws.amazon.com/ Create a user in AWS Console:  IAM With the help of AWS Identity and Access Management (IAM), you can control who or what has access to the services and resources offered by AWS, centrally manage fine-grained...