What is Hacktoberfest ? Hacktoberfest is a month long event conducted by DigitalOcean every year to encourage everyone to contribute to open source projects. As...
Introduction PostgreSQL and MySQL are widely used databases by major companies across multiple projects, given the amount of scale and performance these databases can handle....
The moment Google open-sourced Carbon programming language with a goal to become a successor to C++, it brought a huge attention among Rust language communities...
Google introduced Carbon language as the next generation programming language with a goal to replace C++ as a successor. It’s an open source project still...
Google introduced Carbon programming language with a modern language syntax to become a successor to C++. One of the challenges many beginner developers are facing...
Carbon language memory safety for secure memory management Google open sourced Carbon language with a goal become a successor of C++. In the previous post,...
dbt (data build tool) has become one of the most used developmental frameworks for Data transformation. However most people don’t actually get What, Why and...
When writing blog posts or news articles, Markdown language provides a simple syntax for a novice blogger to add styles to their content. Most blogging...
When I first started playing around with dbt (data build tool), being a traditional MySQL developer, the first thing that came to my mind is Can we connect dbt with...
Disjoint Sets with Arrays. ```java class DSU { int[] parent; public DSU() { parent = new int[10001]; for (int i = 0; i <= 10000; ++i) parent[i] = i; }...
Dequeue is a data structure similar to queue with one modification. Normal queue allows us to enqueue elements at the tail of the queue and deque elements from the head...
One of the most frequently asked coding interview questions for FAANG companies [Facebook (FB), Amazon (AMZN), Apple (AAPL), Netflix (NFLX); and Alphabet (GOOG) (formerly known as Google).] include Tries. Trie...