AWS Fundamentals: Migrating to the Cloud
Hi, this is part 3 in AWS Fundamentals, this majorly contains migrations to the cloud.
Read More AWS Fundamentals: Migrating to the CloudJust a journey of an ungrad student in the journey to find his Degree.
Hi, this is part 3 in AWS Fundamentals, this majorly contains migrations to the cloud.
Read More AWS Fundamentals: Migrating to the CloudHi, this is part 2 in AWS fundamentals. It is majorly focused on Security and improvising your current AWS Infrastructure.
Read More AWS Fundamentals: Addressing Security RiskI took this course, https://www.coursera.org/learn/aws-fundamentals-going-cloud-native. And i ended up writing a blog to help me and the community to better understand Cloud Native.
Read More AWS Fundamentals: AWS Cloud-NativeHi, so during this COVID-19 pandemic, i though of learning positive psychology, here is a blog to help you in a big or a small way.
Read More Positive psychologyDo you get git ? , if not then this might be really helpful for you . Q1.Why know version control ? It’s super important to have detailed historical information for your organization’s configuration files and automation code. This let’s the administrators see what was modified and when, which can be critical to troubleshooting. It […]
Read More GIT IT ?An assembly language is the most basic programming language available for any processor. With assembly language, a programmer works only with operations that are implemented directly on the physical CPU. It makes possible to manipulate hardware directly, address critical issues concerning performance and also provide access to special instructions for processors. Uses of assembly language […]
Read More Assembly LanguageGeneral format of writing the program. under .model define the model you will be using such as small ,medium or large under.data initialize the variables and constants under.code write the code for particular task To exit the file we use ,mov ah,4ch ,int 21h end our code with , end . A.Code to accept a […]
Read More Assembly Codepicture credits :http://turnoff.us/image/en/binary-tree.png So we have binary tree , but it was not sorted in a way . So difference between a binary tree , So we follow the nomenclature used below , Our class will look like, 1.Create: Same as Binary Tree , except we don’t give user the choice to select position in […]
Read More Binary Search Treepicture credits :http://turnoff.us/image/en/binary-tree.png There are three types of trees we will be discussing , General Trees : A tree is a finite set of nodes with one specially designated node called the root and the remaining notes are partitioned into n>=0 disjoint sets T1 and Tn where each of those sets is a tree.T1 to […]
Read More Trees to Binary TreesA linked list may be defined if all the block are linked to each other ,using address of the blocks . It’s different from an array , as an array is a collection of simultaneous boxes , where as list is collection of boxes which are connected by a string . An Example of Linked […]
Read More Linked List