Short micro-blog posts that are more akin to a rant from your conspiracy theory neighbor than they are thoughtful prose.
-
The Internet is Ruining Apps
Reading Time: 3 minutesThe internet is slowly ruining apps. It’s slowly forcing more and more of our lives into the hands of a small few companies. It’s slowly removing our ability to control our own data. And it looks like it’s here to stay.
-
Stacks, Queues, and Deques – Data Structures in PHP
Reading Time: 7 minutesIn my first post of this series on Singly Linked Lists, I mentioned that a list with the ability to add, get, or remove data from more than just the end of the list starts to behave more like a Deque. Then, I said I would cover those details in a later…
-
Doubly Linked Lists – Data Structures in PHP
Reading Time: 10 minutesRead the previous article on Singly Linked Lists in PHP here! Read the starting post of the series here! All code in this series can be found on Github Doubly Linked List Principles Available Methods I took a decent amount of time to read through various array and list methods available to…