This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace ArchFizz\Http; | |
final class Headers | |
{ | |
const HTTP_ACCEPT = 'Accept'; | |
const HTTP_ACCEPT_CHARSET = 'Accept-Charset'; | |
const HTTP_ACCEPT_ENCODING = 'Accept-Encoding'; | |
const HTTP_ACCEPT_LANGUAGE = 'Accept-Language'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
### | |
### One assumes OS X Mavericks (10.9) is installed. | |
### | |
### By the way, don't rely too heavily on this Gist, this was | |
### written mostly for myself. For me, it was a way of note-taking. | |
### However, eventually I'll have this complete and working. | |
### to be used by others. | |
### |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# ./Vagrantfile | |
Vagrant.configure("2") do |config| | |
config.vm.box = "saucy64" | |
config.vm.box_url = "http://cloud-images.ubuntu.com/vagrant/saucy/current/saucy-server-cloudimg-amd64-vagrant-disk1.box" | |
config.vm.network :forwarded_port, guest: 80, host: 8090 |
NewerOlder