Smart Contract Head to Head — Ethereum vs. Flow
Since the introduction of smart contract technology, Solidity has been the coding language of choice for smart contract developers. However, if you’re a Solidity developer, you already know it has drawbacks. Among other flaws, major security concerns can arise from the
Scheduled Tasks With Hyperlambda and Retry
Scheduled tasks imply repeatedly executing some piece of code according to some interval. Adding retry implies retrying execution until it succeeds. Creating scheduled tasks with Hyperlambda is extremely easy. Making sure your tasks execute using retry logic is slightly more
Stargate and Cassandra 4.0 – Better Together
Six years in the making, Apache Cassandra has reached its 4.0 GA release. This is a big milestone for one of the most important open source projects, and a significant step forward in the world of NoSQL and Fast Data. Highlights
Angular 13’s New and Improved Features and Updates
As of this writing, Angular 13 has been released. You can tell that this was a well-thought-out version since it has numerous new features and increased functionality for developers. The release date of Angular 13 was set for November 3,
How To Use Supertokens’ Pre Built UI With Vuejs
SuperTokens is an open-source project which enables you to add auth to your app quickly. It gives you a pre-built auth UI and backend APIs for an end-to-end integration experience. Before we dive into the code, let’s discuss the overall architecture. Architecture SuperTokens
ASP.NET Web Forms Modernization Series (Part 2)
The series expands on the topics discussed in our Migration Guide: ASP.Net Web Forms to Modern ASP.NET whitepaper, a compilation of technical considerations for modernizing legacy .NET web applications, gathered from our experience at Resolute Software doing many .NET modernization
The Good and the Bad of .NET Development Framework
.NET development framework has gained a lot of popularity in the dev market. It is used by millions of developers to create a variety of software applications. The reason is that .NET offers a plethora of features to develop any
Playwright: Test Automation You Must Know
If you love to automate and test applications, you have good news. A new tool is there in the market to grab your attention and satisfy your needs for test automation. Playwright is an open-source, powerful, and reliable framework to perform end-to-end
What Is Pydantic? – DZone Web Dev
Pydantic is a Python library for data modeling/parsing that has efficient error handling and a custom validation mechanism. As of today, Pydantic is used mostly in the FastAPI framework for parsing requests and responses because Pydantic has built-in support for
What you must know about PHP errors to avoid scratching your forehead when something goes wrong
While pure object-oriented languages produce mainly exceptions to signal an error, PHP started out as procedural and so it has a wide range of errors that can be raised along with exceptions. Errors are Human, But We Must Identify Them There isn’t a programmer