Infinite Redirect Loop in wp-admin

If you’re experiencing an “infinite redirect loop” when trying to access the /wp-admin section of your WordPress site, it is most likely because the files on your server were updated …

Binary Tree Implementation in Java

This is an implementation of a binary tree in Java. Binary Tree The following java class is the representation of a Binary Tree, which includes common methods such as insert(), …

Basic Programs Written in Scheme

I’ve recently been programming in Scheme which is a functional programming language. Scheme is a very minimalist language and doesn’t come with much functionality built in, but nonetheless is very …

Checking if a String is a Palindrome in Java

A palindrome is a string which, when reversed, is the same string. The following code contains two implementations of checking if a string is a palindrome: isPalindrome() works by iteratively …