One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| <!-- Hiding Safari User Interface Components --> | |
| <meta name="apple-mobile-web-app-capable" content="yes" /> | |
| <!-- to set the viewport width to the width of the device, add this to your HTML file: --> | |
| <meta name="viewport" content="width=device-width"> | |
| <!-- to set the initial scale to 1.0, add this to your HTML file: --> | |
| <meta name="viewport" content="initial-scale=1.0"> | |
| <!-- to set the initial scale and to turn off user scaling, add this to your HTML file: --> |
| killall ssh-agent; eval `ssh-agent` |
| /* | |
| * Author: http://stuffandnonsense.co.uk/blog/about/hardboiled_css3_media_queries/ | |
| */ | |
| /* Smartphones (portrait and landscape) ----------- */ | |
| @media only screen | |
| and (min-device-width : 320px) | |
| and (max-device-width : 480px) { | |
| /* Styles */ | |
| } |
| <!DOCTYPE html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="author" content="Victor Stan"> | |
| <meta name="description" content="Get multiple video streams on one page. Adapted from code by Muaz Khan"> | |
| <title>Video Camera</title> | |
| <script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js" ></script> |
| // <![CDATA[ | |
| var langCodes = { | |
| "af": "Afrikaans", | |
| "sq": "Albanian", | |
| "ar": "Arabic (Standard)", | |
| "ar-dz": "Arabic (Algeria)", | |
| "ar-bh": "Arabic (Bahrain)", | |
| "ar-eg": "Arabic (Egypt)", | |
| "ar-iq": "Arabic (Iraq)", | |
| "ar-jo": "Arabic (Jordan)", |
| # From http://blog.kfish.org/2010/04/git-lola.html | |
| [alias] | |
| lol = log --graph --decorate --pretty=oneline --abbrev-commit | |
| lola = log --graph --decorate --pretty=oneline --abbrev-commit --all | |
| [color] | |
| branch = auto | |
| diff = auto | |
| interactive = auto | |
| status = auto |
| #!/bin/sh | |
| # System Update | |
| pacman --noconfirm -Syu | |
| #The essentials | |
| pacman --noconfirm -S base-devel vim git | |
| # Packer (AUR Helper) | |
| cd /tmp |
| # | |
| # A virtual host using mix of IP-, name-, and port-based configuration. | |
| # This is based on using Homebrew for OS X. You can use this in other | |
| # cases though, but you'll likely need to adjust some of the paths below. | |
| # | |
| server { | |
| # Replace this port with the right one for your requirements | |
| # listen 80 [default|default_server]; #could also be 1.2.3.4:80 |
| Thanks to: | |
| http://realityloop.com/blog/2012/07/03/nginx-mariadb-php-aegir-mac-os-x-optional-drush-5-works-mountain-lion | |
| and | |
| http://robots.thoughtbot.com/post/27985816073/the-hitchhikers-guide-to-riding-a-mountain-lion | |
| --Fresh install Mountain Lion. | |
| --Install XCode 4.4.2 | |
| --Install Command line utilities via Xcode | |
| --Install Homebrew |