Understanding Data-Flow.
(dry run on notebook)
Follow 90-10% teaching technique.
(let's say you're building a project, watching a YouTube tutorial or doing coding along someone at college, you won't...
Looking to get started with Zed Editor for beginners? In this guide, we’ll explore what is Zed Editor, its key features, and a step-by-step Zed Editor tutorial on how to use Zed Editor effectively. ...
Written code!!
⛶import java.util.Scanner;
public class Main
{
public static int fact(int num){
if(num!=1){
return num*fact(num-1);
}
return 1;
}
publi...
Project management is about transforming ideas into successful, measurable results, not merely about overseeing chores. Effective project management is crucial for reaching objectives on schedule, wi...
This post explores one of computer science's most beautiful data structures—the Fibonacci Heap.The Fibonacci Heap is a specialized priority queue data structure consisting of a collection of heap-or...
Getting web development clients can be tough, but remember that over 35% of businesses still lack a website. Here’s a quick overview of how to tap into that market:
Create a Portfolio Website: Show...
Serialisation
Serialisation is just like taking different pieces of information (like notes) and putting them together to make them easy to store or send to a friend.Serialisation is the proc...
What is SSRF
When developing networked software, it's common to make requests to external servers. Developers often use these requests to fetch remote resources like software updates or impor...
Types
Relative vs Absolute Pathing
Relative Pathing:
Locates files based on the current directory.
Example: include('./folder/file.php') (file is inside folder in the same dir...