$ brew install autoconf automake gmp bison27 gd freetype t1lib gettext zlib mcrypt
$ git clone --depth=1 https://github.com/php/php-src.git
$ cd php-src
class penguin | |
{ | |
} |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<!-- Make a DNS handshake with a foreign domain, so the connection goes faster when the user eventually needs to access it. This works well for loading in assets (like images) from another domain, or a JavaScript library from a CDN. --> | |
<link rel="dns-prefetch" href="//ajax.googleapis.com" /> | |
<link rel="dns-prefetch" href="//s3.amazonaws.com" /> | |
<!-- Make sure the latest version of IE is used --> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> |
#!/bin/sh | |
sudo easy_install pip | |
sudo pip install ansible |
#!/bin/sh | |
# We use `--ignore-errors` on rerun to skip existing roles. | |
ansible-galaxy install -r $(PWD)/requirements.yml -p $(PWD)/roles/ --ignore-errors |
#!/bin/sh | |
echo 'You successfully added this git submodule to your project using gsm (Git Submodule Manager)' |
If you haven't already set your NPM author info, now you should:
npm set init.author.name "Your Name"
npm set init.author.email "[email protected]"
npm set init.author.url "http://yourblog.com"
npm adduser
[user] | |
name = Pavan Kumar Sunkara | |
email = [email protected] | |
[core] | |
editor = vim | |
whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol | |
excludesfile = ~/.gitignore | |
[sendemail] | |
smtpencryption = tls | |
smtpserver = smtp.gmail.com |
#!/bin/bash | |
# Stop all containers. | |
docker stop $(docker ps -a -q) | |
# Delete all containers. | |
docker rm $(docker ps -a -q) | |
# Delete all images. | |
docker rmi --force $(docker images -q) |