Nov 26, 2022

Detecting scroll direction with JavaScript

Want to hide navigation bar when user scrolls down, and then again show it when user scrolls up? This is where you'd want to detect the scroll direction using JavaScript.
Feb 13, 2022

Implementing a linked list in C

Linked list is one of the most simplest and most common data structures out there. Implementing linked lists in C is easy by using structs and pointers.