openssl genrsa -out server.key 2048
openssl req -new -x509 -key server.key -out server.pem -days 3650
| /* | |
| Copyright 2011 Martin Hawksey | |
| Licensed under the Apache License, Version 2.0 (the "License"); | |
| you may not use this file except in compliance with the License. | |
| You may obtain a copy of the License at | |
| http://www.apache.org/licenses/LICENSE-2.0 | |
| Unless required by applicable law or agreed to in writing, software |
| # Make ESC work right | |
| set -sg escape-time 0 | |
| # Make the colors work right | |
| set -g default-terminal "screen-256color" | |
| # set window and pane index to 1 (0 by default) | |
| set-option -g base-index 1 | |
| setw -g pane-base-index 1 |
by alexander white ©
| /* Set up Git Configuration */ | |
| git config --global user.email "[email protected]" | |
| git config --global user.name "Your Name" | |
| git config --global core.editor "vi" | |
| git config --global color.ui true |
| # Set variables in .bashrc file | |
| # don't forget to change your path correctly! | |
| export GOPATH=$HOME/golang | |
| export GOROOT=/usr/local/opt/go/libexec | |
| export PATH=$PATH:$GOPATH/bin | |
| export PATH=$PATH:$GOROOT/bin |
| 1) Install composer locally | |
| $ curl -s https://getcomposer.org/installer | php | |
| 2) Create a new Laravel project | |
| // create a new laravel project with latest stable inside of directory "myproject" | |
| $ composer create-project laravel/laravel myproject | |
| 3) Config |
Jake Archibald (@jaffathecake): The ServiceWorker is coming; look busy
https://speakerdeck.com/jaffathecake/the-serviceworker-is-coming-look-busy
https://github.com/jakearchibald/trained-to-thrill/
Hunter Loftis (@hunterloftis): We Will All Be Game Programmers
<slides missing>
CarterRabasa (@carterrabasa): A Community of People; Not Projects
https://github.com/crabasa/community-toolkit
| setp 1 : create laravel project | |
| composer create-project laravel/laravel --prefer-dist | |
| note: composer gives two options, --prefer-source and --prefer-dist when install packages | |
| the main difference between these two options ins that with the dist option, composer will favor stable releases and avoid downloading the entire git histroy if possible. | |
| setup 2: composer install |
| Laravel Homestead is an official, pre-packaged Vagrant "box" that provides you a wonderful development environment without requiring you to install PHP, a web server, and any other server software on your local machine. | |
| Pre Included Softwares | |
| Ubuntu 14.04 | |
| PHP 5.5 | |
| Nginx | |
| MySQL | |
| Postgres | |
| Node (With Bower, Grunt, and Gulp) |