I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
| <?php | |
| /** | |
| * Author: Derek Ellison | |
| * Date: 5/15/15 | |
| * | |
| * Copyright (c) 2015 Derek Ellison | |
| * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated | |
| * documentation files (the "Software"), to deal in the Software without restriction, including without limitation | |
| * the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and |
I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
| <?php | |
| /** | |
| * Author: Derek Ellison | |
| * Date: 5/15/15 | |
| * | |
| * Copyright (c) 2015 Derek Ellison | |
| * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated | |
| * documentation files (the "Software"), to deal in the Software without restriction, including without limitation | |
| * the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and |
| <?php | |
| /** | |
| * Portable UTF-8 | |
| * Lightweight Library for Unicode Handling in PHP | |
| * @details http://pageconfig.com/post/portable-utf8 | |
| * @demo http://pageconfig.com/post/portable-utf-8-demo | |
| * | |
| * @version 1.3 |
| public class ConsoleInputParse { | |
| private String[] wordList = {}; | |
| public ConsoleInputParse() {} | |
| public FlowPane parseInputToArray(String input) { | |
| wordList = input.trim().split("[ ]+"); | |
| return colorize(); |