Author: Oz

Iterable to Collection or List

See entire Stack Overflow Topic: Easy way to convert Iterable to Collection //… public static <T> List<T> convertToList(final Iterable<T> iterable) { return StreamSupport.stream(iterable.spliterator(), false)...

Read More

Let’s Encrypt SSL on Amazon AMI

Implemented: I decided to try Let’s Encrypt on several of my sites after reading the following: https://letsencrypt.org/ http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/SSL-on-an-instance.html...

Read More

Upgrading Server to PHP7

In-Progress: I read a great article on the performance gains of PHP 7 and WordPress 4.x , What is PHP 7 and How to Start Using it With WordPress? Convinced me… so I updated my AWS EC2 server to PHP 7. Back to...

Read More

Sample Complex SQL Query

In-Progress: Here is a working sample of a complex SQL statement I use to present data from my osTicket database using MySQL. I customized the osTicket application using the extent of their administrative UI to allow me populate...

Read More
  • 1
  • 2