bardonadam(25)•in #programming•2997 days agoWhat is Big O NotationWhen we talk about algorithms, we are interested in their performance. But instead of expressing an algorithm’s performance in seconds or minutes, we use the Bi...2bardonadam(25)•in programming•2997 days agoWhat is Big O NotationWhen we talk about algorithms, we are interested in their performance. But instead of expressing an algorithm’s performance in seconds or minutes, we use the Bi...2
bardonadam(25)•in #technology•3000 days agoWhat Is The Origin Of Foo And BarMuch like the "Hello World”, words “foo” and “bar” are used in computer programming examples. They are metasyntacic variables, or simply put, placeholders used ...2bardonadam(25)•in technology•3000 days agoWhat Is The Origin Of Foo And BarMuch like the "Hello World”, words “foo” and “bar” are used in computer programming examples. They are metasyntacic variables, or simply put, placeholders used ...2
bardonadam(25)•in #technology•3001 days agoHow Do Computers Keep Track Of Time?When you shut your computer off, or even disconnect it from power, it still knows the correct time next day. So how do computers keep track of time? https://you...5bardonadam(25)•in technology•3001 days agoHow Do Computers Keep Track Of Time?When you shut your computer off, or even disconnect it from power, it still knows the correct time next day. So how do computers keep track of time? https://you...5
bardonadam(25)•in #programming•3008 days agoLinked List Explained In 2 MinutesLinked list is simple and common data structure, which can be used to implement other data structures such as queue and stack. Let’s take a closer look at it. h...0bardonadam(25)•in programming•3008 days agoLinked List Explained In 2 MinutesLinked list is simple and common data structure, which can be used to implement other data structures such as queue and stack. Let’s take a closer look at it. h...0
bardonadam(25)•in #programming•3009 days agoArray Explained In 1 MinuteArray is fundamental data structure, used to implement more complex data structures like stacks or strings. Let’s take a closer look at it. https://www.youtube....0bardonadam(25)•in programming•3009 days agoArray Explained In 1 MinuteArray is fundamental data structure, used to implement more complex data structures like stacks or strings. Let’s take a closer look at it. https://www.youtube....0
bardonadam(25)•in #programming•3010 days agoHow Binary Tree Works | Binary Tree Explained In Under 3 MinutesBinary tree is a special kind of tree where every node has two children at most. Let’s take a closer look at it. https://www.youtube.com/watch?v=ykAbHA-bkKM Ple...1bardonadam(25)•in programming•3010 days agoHow Binary Tree Works | Binary Tree Explained In Under 3 MinutesBinary tree is a special kind of tree where every node has two children at most. Let’s take a closer look at it. https://www.youtube.com/watch?v=ykAbHA-bkKM Ple...1
bardonadam(25)•in #programming•3011 days agoWhat Is Recursion - Recursion Explained In 3 MinutesRecursion is a fundamental technique of Computer Science, which can be applied to solve many types of problems. Recursion can be applied whenever a problem can ...2bardonadam(25)•in programming•3011 days agoWhat Is Recursion - Recursion Explained In 3 MinutesRecursion is a fundamental technique of Computer Science, which can be applied to solve many types of problems. Recursion can be applied whenever a problem can ...2
bardonadam(25)•in #programming•3014 days agoWhat Is JSON | JSON Explained In 1 MinuteJSON is a compact and readable text format for structuring data. Here’s how it works. https://www.youtube.com/watch?v=7mj-p1Os6QA Please Like and Subscribe for ...0bardonadam(25)•in programming•3014 days agoWhat Is JSON | JSON Explained In 1 MinuteJSON is a compact and readable text format for structuring data. Here’s how it works. https://www.youtube.com/watch?v=7mj-p1Os6QA Please Like and Subscribe for ...0
bardonadam(25)•in #programming•3015 days agoTree Data Structure Explained In 2 MinutesTree is a very useful, non-linear data structure, which can be portrayed as an upside-down tree with its root at the top. Let’s take a closer look at it. https:...1bardonadam(25)•in programming•3015 days agoTree Data Structure Explained In 2 MinutesTree is a very useful, non-linear data structure, which can be portrayed as an upside-down tree with its root at the top. Let’s take a closer look at it. https:...1
bardonadam(25)•in #programming•3016 days agoWhat Happens When You Call sort()? | Introsort Algorithm ExplainedThere are a dozen sorting algorithms, so which one is actually used when you call sort()? Every sorting algorithm has its shortcomings. Because of that, we don’...2bardonadam(25)•in programming•3016 days agoWhat Happens When You Call sort()? | Introsort Algorithm ExplainedThere are a dozen sorting algorithms, so which one is actually used when you call sort()? Every sorting algorithm has its shortcomings. Because of that, we don’...2
bardonadam(25)•in #programming•3017 days agoQueue Data Structure Explained In Less Then 2 MinutesQueue data structure is like a queue in a real world. It's a linear collection of elements and is widely used in networking, for example, to handle client-serve...0bardonadam(25)•in programming•3017 days agoQueue Data Structure Explained In Less Then 2 MinutesQueue data structure is like a queue in a real world. It's a linear collection of elements and is widely used in networking, for example, to handle client-serve...0
bardonadam(25)•in #programming•3018 days agoThe Best Age To Start ProgrammingWith billions of computers, smartphones and other devices out there, computer programming is very useful skill to learn. But what is the best age to start progr...6bardonadam(25)•in programming•3018 days agoThe Best Age To Start ProgrammingWith billions of computers, smartphones and other devices out there, computer programming is very useful skill to learn. But what is the best age to start progr...6
bardonadam(25)•in #programming•3021 days agoStack Explained In Under 2 MinutesStack is very important and common data structure. Akin to linked list or array, stack is linear data structure which contains a group of elements. Those elemen...0bardonadam(25)•in programming•3021 days agoStack Explained In Under 2 MinutesStack is very important and common data structure. Akin to linked list or array, stack is linear data structure which contains a group of elements. Those elemen...0
bardonadam(25)•in #programming•3022 days agoWhat Is Object Oriented Programming? | OOP ExplainedEarly programs were expressed step by step as a list of instructions. While this approach, called structural or procedural, was good enough to write simple appl...20bardonadam(25)•in programming•3022 days agoWhat Is Object Oriented Programming? | OOP ExplainedEarly programs were expressed step by step as a list of instructions. While this approach, called structural or procedural, was good enough to write simple appl...20
bardonadam(25)•in #programming•3024 days agoHow GIF Works | GIF Compression Explained In 3 MinutesGIF is popular image format, used for small animations and low-resolution movie clips. GIF is a lossless format for bitmap images, where every pixel of the imag...0bardonadam(25)•in programming•3024 days agoHow GIF Works | GIF Compression Explained In 3 MinutesGIF is popular image format, used for small animations and low-resolution movie clips. GIF is a lossless format for bitmap images, where every pixel of the imag...0
bardonadam(25)•in #technology•3025 days agoHow a CPU Is MadeCPU is brain of our computers. It has billions of transistors. But how are they made? https://www.youtube.com/watch?v=S9ScFkeymSM Please Like and Subscribe for ...5bardonadam(25)•in technology•3025 days agoHow a CPU Is MadeCPU is brain of our computers. It has billions of transistors. But how are they made? https://www.youtube.com/watch?v=S9ScFkeymSM Please Like and Subscribe for ...5
bardonadam(25)•in #programming•3028 days agoArtificial Intelligence Explained In 2 MinutesArtificial intelligence or AI is intelligence displayed by machines such as computers, in a way similar to us, humans. It’s able to observe its environment, lea...3bardonadam(25)•in programming•3028 days agoArtificial Intelligence Explained In 2 MinutesArtificial intelligence or AI is intelligence displayed by machines such as computers, in a way similar to us, humans. It’s able to observe its environment, lea...3
bardonadam(25)•in #programming•3029 days ago7 Algorithms That Rule The WorldAlgorithms have been a part of human technology for centuries. When you tie your shoe laces or cook a meal from a recipe, you’re following an algorithm. Let’s c...2bardonadam(25)•in programming•3029 days ago7 Algorithms That Rule The WorldAlgorithms have been a part of human technology for centuries. When you tie your shoe laces or cook a meal from a recipe, you’re following an algorithm. Let’s c...2
bardonadam(25)•in #technology•3029 days agoHow To Choose Strong And Easy To Remember PasswordHow to choose a password which is strong and easy to remember? Let’s dive into it https://www.youtube.com/watch?v=h0tlsS0LnLY Generator: https://github.com/reda...0bardonadam(25)•in technology•3029 days agoHow To Choose Strong And Easy To Remember PasswordHow to choose a password which is strong and easy to remember? Let’s dive into it https://www.youtube.com/watch?v=h0tlsS0LnLY Generator: https://github.com/reda...0
bardonadam(25)•in #programming•3030 days agoMachine Learning Explained In 2 MinutesWhat is Machine Learning? Traditional programming requires human to define set of instructions which requires a tons of code and leave a plenty of room for erro...0bardonadam(25)•in programming•3030 days agoMachine Learning Explained In 2 MinutesWhat is Machine Learning? Traditional programming requires human to define set of instructions which requires a tons of code and leave a plenty of room for erro...0