We've already seen how to setup Neo4j on a public EC2 instance using the community edition AMI, but what if you want to run on Docker? Neo4j also
How to Setup Neo4j on AWS EC2
Neo4j is one of the world's leading graph database management systems, with support for the AWS, Azure, and Google Cloud platforms. In this
How to List AWS S3 Bucket Names and Prefixes
If you need more information about the objects and buckets in your S3 data lake, the quickest solution is likely to be the SDK and AWS CLI. In this
Amazon Redshift Tutorial (AWS)
Amazon Redshift Data Warehouse Step 1: Create an AWS Account Step 2: Setup Billing Alarms Step 3: Create a Redshift Cluster Step 4:
Big O: How to Calculate Time and Space Complexity
What is Big O? Big O notation is used to quantify how quickly runtime or memory utilization will grow when an algorithm runs, in a worst-case
Linked Lists Data Structure Guide
What is a Linked List? A linked list is a series of nodes linked together in a linear sequence. Linked lists are a null-terminated data structure,
Arrays Data Structure Guide
What is an Array? An array is a data structure that contains a group of equally-sized elements, organized sequentially in a contiguous area of
Binary Heap Data Structure Guide
What is a Binary Heap? A binary heap is a complete binary tree, where the root is either the minimum value (min-heap) or the maximum value
Graphs Data Structure Guide
What is a Graph? A graph is an ordered set of paired vertices and a set of edges, used to create an interconnected network. Edges can be directed