I hereby claim:
- I am sifex on github.
- I am sifex (https://keybase.io/sifex) on keybase.
- I have a public key ASAtrUP6bwBAYptM8r0cXo2fyoMP36mhPlfgaf64qjAaQwo
To claim this, I am signing this object:
| <article> | |
| <section> | |
| <h1>General</h1> | |
| <p>Unit outline</p> | |
| <aside>Unit description<br />Learning outcomes</aside> | |
| <figure> | |
| <img src=" https://upload.wikimedia.org/wikipedia/commons/thumb/6/61/HTML5_logo_and_wordmark.svg/512px-HTML5_logo_and_wordmark.svg.png" /> | |
| <figcaption>Fig 1: An image.</figcaption> | |
| </figure> | |
| </section> |
I hereby claim:
To claim this, I am signing this object:
| @font-face { | |
| font-family: 'Futura'; | |
| src: url('futura.eot'); | |
| src: url('futura.eot?#iefix') format('embedded-opentype'), | |
| url('futura.woff') format('woff'), | |
| url('futura.ttf') format('truetype'), | |
| url('futura.svg#futura') format('svg'); | |
| font-weight: normal; | |
| font-style: normal; |
Go grab the installer from https://www.xamarin.com/download
If you don't already have Visual studio installed make sure to grab the version of the installer with Visual Studio Bundled
Just accept all the options when you install it for windows make sure you have the Android SDK (We'll be using API 23, which should be installed by default)
| packages: [ | |
| "atom-beautify" | |
| "autoclose-html" | |
| "code-peek" | |
| "color-picker" | |
| "double-tag" | |
| "emmet" | |
| "file-icons" | |
| "git-plus" | |
| "git-time-machine" |
| packages: [ | |
| "atom-beautify" | |
| "autoclose-html" | |
| "code-peek" | |
| "color-picker" | |
| "double-tag" | |
| "emmet" | |
| "file-icons" | |
| "git-plus" | |
| "git-time-machine" |
| <?php | |
| namespace League\Flysystem\Adapter; | |
| use ErrorException; | |
| use League\Flysystem\Adapter\Polyfill\StreamedCopyTrait; | |
| use League\Flysystem\AdapterInterface; | |
| use League\Flysystem\Config; | |
| use League\Flysystem\Util; | |
| use League\Flysystem\Util\MimeType; |
| sudo apt-get update | |
| sudo apt-get install -y vim curl python-software-properties | |
| sudo add-apt-repository -y ppa:ondrej/php5-5.6 | |
| sudo apt-get update | |
| sudo apt-get install -y php5 apache2 libapache2-mod-php5 php5-curl php5-gd php5-mcrypt php5-readline mysql-server-5.5 php5-mysql git-core php5-xdebug | |
| cat << EOF | sudo tee -a /etc/php5/mods-available/xdebug.ini |
| <VirtualHost *:80> | |
| ServerName www-dev.australianarmedforces.org | |
| DocumentRoot /var/www/australianarmedforces.org | |
| ServerAdmin chess2ryme@gmail.com | |
| <Directory "/var/www/australianarmedforces.org"> | |
| Options Indexes FollowSymLinks MultiViews Includes | |
| AllowOverride All |
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| # Vagrantfile API/syntax version. Don't touch unless you know what you're doing! | |
| VAGRANTFILE_API_VERSION = "2" | |
| Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
| config.vm.box = "trusty64" | |
| config.vm.box_url = "https://vagrantcloud.com/ubuntu/boxes/trusty64/versions/14.04/providers/virtualbox.box" | |
| config.vm.network :private_network, ip: "192.168.33.21" |