Understanding the Distinctions between .txt and .bin Files for Data Storage and RetrievalHave you ever come across a file with a .bin extension? Did you try to open it with a text editor? I guess you had a similar output? When it comes to storing and retrieving data, there are two main options: text files .txtand binary files.bin. Thes...Mar 19, 2023·2 min read
Interplanetary File System(IPFS)- A GATEWAY TO A DECENTRALISED STORAGE SYSTEM.File sharing, therefore, is much more than a technical term: it is a linguistic and conceptual hinge that both locks together, and enables movement between, the technical, discursive, and institutional dimensions of contemporary digital culture. It i...May 11, 2022·6 min read
Understanding the concept of short-circuit evaluation in C++Exploring Short-circuiting in C++ makes your code clean and beautiful. Two situations show why it is important, consider the following: In the expression e1 && e2 both subexpressions e1 and e2 must be true for the overall expression to be true. Since...Mar 8, 2022·2 min read
The Anatomy of a C++ ProgramI could remember vividly some years ago when I started learning programming I really found it difficult to understand the structure and precedence behind programs but as time went by, I solidly gained my ground through thorough practice and mentorshi...Feb 26, 2022·3 min read
3 Programming errors every programmer should know!Beginners in programming make a lot of mistakes while writing programs because of inexperience in programming or because of unfamiliarity with the programming language. Well seasoned programmers make mistakes due to carelessness or because the propos...Feb 14, 2022·5 min read
The Need For Leveraging C++ As A “tool” For Embedded Systems.C++ evolved from C, which was developed by Bjarne Stroustrup in 1979 at Bell Laboratories. Originally called “C with classes”, it was renamed to C++ in the early 1980s. C++ provides additional features to most computers and it is hardware independent...Feb 1, 2022·3 min read