Blog Logo
TAGS

TypeScript: Interfaces or Types. What’s the Difference?

In TypeScript, both interfaces and types can be used to define types, but they have different purposes. Interfaces are used to define the structure of object types, while type aliases provide a name f...

Read more...

Aada Finance to Embrace Full Visibility and Transparency

Aada Finance, a peer-to-peer lending protocol on the Cardano blockchain, is going open source to ensure complete visibility and transparency of its smart contract code. Aada Finance plans to deploy it...

Read more...

Azure-PlantUML: Creating Visually Appealing and Memorable Diagrams for Azure Systems

Azure-PlantUML is a toolset for creating PlantUML diagrams with Azure components. It includes symbols, macros and stereotypes for all Azure services using official Microsoft Azure architecture icons. ...

Read more...

C4-PlantUML: A Collection of PlantUML Diagrams for C4 Architecture Model

C4-PlantUML is an open-source project that provides a collection of PlantUML diagrams for the C4 architecture model, which is a simple and intuitive way to describe software architecture. These diagra...

Read more...

Disruptor-net: A High Performance Inter-Thread Message Passing Framework for .NET

Disruptor-net is a .NET port of LMAX Disruptor, a high performance inter-thread message passing framework. It can be succinctly defined as a circular queue with a configurable sequence of consumers, a...

Read more...

Software Architecture Diagramming and Patterns

Learn how software architecture diagrams can help you plan for and implement changes in your network, visualize strategic initiatives, and stay ahead of your organization’s needs. We’ll cover the basi...

Read more...

The C4 model for visualising software architecture

The C4 model is a set of hierarchical abstractions and diagrams - system context, containers, components, and code, which are notation independent. It is an easy to learn, developer-friendly approach ...

Read more...

Python for Data Analysis, 3E

Python for Data Analysis, 3E by Wes McKinney is available as an open access HTML version on his website. The book has been updated for pandas1.4.0 and Python 3.10, and changes between the 2nd and 3rd ...

Read more...

Python Stacks, Queues, and Priority Queues in Practice

In this guide, Bartosz Zaczyński explores Python stacks, queues, and priority queues in depth, providing examples of implementation and use cases. From representing FIFO and LIFO queues with a deque, ...

Read more...

Configure an interpreter using Docker

PyCharm integration with Docker allows you to run your applications in the variously configured development environments deployed in Docker containers. This tutorial guides you on how to set up and co...

Read more...

Awesome Python - A Comprehensive List of Python Resources for Developers

Life is short, you need Python. This repository contains a curated list of awesome Python frameworks, libraries, software and resources. With over 80 categories ranging from Admin Panels to Web Framew...

Read more...

Databricks Opens Up Its Delta Lakehouse at Data + AI Summit

Databricks has open sourced most of the technology behind its Delta Lake, including APIs, with the launch of Delta Lake 2.0. The move towards open standards has been welcomed, as previously vendors ha...

Read more...

Zip() Function In Python - Usage & Examples

This tutorial explains the usage and working of the zip() function in Python. The zip() function helps us perform a parallel iteration over multiple iterables by taking iterables and iterating over th...

Read more...

Python Decorator Magic: Static Factory Methods And Private Constructors

In this article, Philip Klaus presents an alternative approach to creating static factory methods in Python by simulating the privacy behavior of constructors during runtime. He also shares a more det...

Read more...

Dotnet Microservices

Building a dotnet 5 microservices (service-oriented architecture) with implementations on microservices with .net tools on real-world e-commerce microservices project including Catalog, Basket, Discou...

Read more...

Harness your GRPC connection with deadlines and cancellation options

GPRC connections provide a fast, high throughput and performative way for microservices APIs to communicate. In this article, Yazan Ati discusses the importance of managing the connection properly usi...

Read more...

How to manage Many To Many relations in microservices architecture?

This article discusses how to manage many-to-many relations in microservices architecture. It suggests using integration events to update the data in each service and avoid putting data into the gatew...

Read more...

Making a Link Extractor In Python

Extract all links of a web page using Python. Learn how to build a link extractor tool in Python from scratch using requests and BeautifulSoup libraries. This tutorial is useful for web scrapers, SEO ...

Read more...

Microservice Governance & Deployment Patterns: Part 1

This blog post discusses microservice governance and deployment patterns. The article explains the concept of microservices and their benefits like scalability, resiliency, and flexibility. It delves ...

Read more...

Microservice Governance - Resilience Patterns - Part 1

In this article, we discuss how to govern microservice architecture with a focus on resilience patterns. Resilience patterns aim to prevent problems in a single service from cascading out to the consu...

Read more...