This was taken from http://rxwiki.wikidot.com/101samples, because I wanted to be able to read it more comfortable with syntax highlighting.
Here's the unedited original, translated to Github Markdown glory:
"Walking on water and developing software from a specification are easy if both are frozen." | |
- Edward V Berard | |
"Computer science education cannot make anybody an expert programmer any more than studying brushes and pigment can make somebody an expert painter." | |
- Eric S. Raymond | |
"Talk is cheap. Show me the code." | |
- Linus Torvalds | |
"In God we trust. All others must bring data." |
This was taken from http://rxwiki.wikidot.com/101samples, because I wanted to be able to read it more comfortable with syntax highlighting.
Here's the unedited original, translated to Github Markdown glory:
Branch | Name | Notes |
---|---|---|
Stable | master | Accepts merges from Release and Hotfix branches only. |
Development | develop | Accepts merges from Feature/Bugfix, Release and Hotfix |
Features/Bugfix | feat-* / bug-* | Always branch off HEAD of develop |
Hotfix | hotfix-* | Always branch off master. Merges back into master and develop. |
No, seriously, don't. You're probably reading this because you've asked what VPN service to use, and this is the answer.
Note: The content in this post does not apply to using VPN for their intended purpose; that is, as a virtual private (internal) network. It only applies to using it as a glorified proxy, which is what every third-party "VPN provider" does.
// Reference: http://stackoverflow.com/questions/4822471/count-number-of-lines-in-a-git-repository | |
$ git ls-files | xargs wc -l |
So this is a guide for how to use XAMPP to test any PHP website on your own computer. Well, actually, it's more a guide of guides than an actual guide. I personally didn't find the process to be bad, but it also wasn't straightforward, and it involved a lot of googling separate problems. There was no One Guide for the Entire Process, but a bunch of separate things.
So I decided to put everything together. Here are the steps:
Step 1: Install XAMPP. Download from here.
Step 2: Set up XAMPP. Follow instructions here.
Step 3: Go to PhpMyAdmin and create any relevant MySQL tables, if any.
git shortlog -e -s -n |