Some time ago, I’ve written an article about analyzing disk space using Excel and Powershell. While these tools are very easy to use and very flexible, that requires some organization: you must…
Category: English
Posts in English/Posts em inglês
Minifying and Formatting JSON data with C#
Nowadays it’s very common to receive JSON data from many sources and to process it in our programs. I have the same problem and, sometimes, I also have to debug the received…
Implementing IEnumerable in the Data Structures
After finishing the series of articles about data structures (see here, here, here and here) I started to think about the GetItems method I had implemented in the Linked List and in…
Data structures in C# – Part 4 – Trees
Posts in this Series: Linked Lists Stacks Queues Trees (this post) To conclude the data structures shown in this series, we will show the tree. The tree will store organized data –…
Data structures in C# – Part 3 – Queues
Posts in this Series: Linked Lists Stacks Queues (this post) Trees In the last post, I’ve talked about stacks, a LIFO (Last In – First out) data structure. In this post, I…
Data structures in C# – Part 2 – Stacks
Posts in this Series: Linked Lists Stacks (this post) Queues Trees In the last post I’ve talked about one of the most basic data structures, the linked list. In this post we…
Data structures in C# – Part 1 – Linked lists
Posts in this Series: Linked Lists (this post) Stacks Queues Trees Although we use data structures daily in our programs, sometimes we forget the theory behind them. So, I decided to create…
Using sensors in Windows 10 with Delphi
The new Windows 10 2-em-1 devices have a lot of sensors, which you can use to enhance the user experience in your programs. With Delphi, you can use these sensors in your…
Showing desktop context menu in Windows 10 Build 10547
After showing the desktop icons (see my last post), I right clicked the desktop and hid again the desktop icons. That way I’ve missed the context menu again (If you are running…
Restoring from Safe Mode in Windows 10
I am running Windows 10, build 10547, and I was having a strange problem: I had disabled my icons in the desktop and the right click wasn’t working in the desktop -…