© 2022 Hashnode
#patterns
We have talked about microservices being smaller, but what does that really mean? Consider for a moment how you decompose a problem when writing a piece of software. You don't cram everything into a s…
Intent Define a family of algorithms, encapsulate each one and make them interchangeable. Strategy lets the algorithm vary independently from clients that use them. Strategy pattern is also known as p…
Code 1 #include<iostream> using namespace std; int main(){ int n; cout<<"Enter the rows for Cube: "; cin>>n; for (int i=0;i<n;i++){ for (int j=0;j<n;j++){ cout<<"*…
Process create a file named hollow_diamond.ex write the code pyramid = fn number -> for i <- 1..number do # for printing spaces spaces = for j when j <= number - i <- 1..number do …
Relationship matters First decision to make as a single man & woman is your Salvation. Second decision is who you spend your life with, who you spend your life with determines your relationship with G…
Originally posted at Serverless on September 15th, 2016 Microservices and the Serverless Architecture have changed the way we think about web applications and partitioning logic. In this post, we’ll s…
Context I'm a fan of Microsoft Planner. It's easy to use, flexible, and the UI/UX is rock solid. The tie-in with O365 Groups and Teams is a strong selling point, as well. Now, Planner isn't the perfec…
Introduction Hey folks 👋! In this article, we will master a trick with which you can solve most of the pattern problems very easily. In pattern problems, the programmer has to print a pattern. Patte…
Defining your future When starting a project we should take into consideration several factors before determining an architecture, standard or rite for our project. Everything we take as true at this …