Creating a new PHPExcel Object.
$this->PHPExcel = new PHPExcel();
Creating a new sheet:
| // Lefalet shortcuts for common tile providers - is it worth adding such 1.5kb to Leaflet core? | |
| L.TileLayer.Common = L.TileLayer.extend({ | |
| initialize: function (options) { | |
| L.TileLayer.prototype.initialize.call(this, this.url, options); | |
| } | |
| }); | |
| (function () { | |
| #!/usr/bin/env bash | |
| echo ">>> Starting Install Script" | |
| # Update | |
| sudo apt-get update | |
| # Install MySQL without prompt | |
| sudo debconf-set-selections <<< 'mysql-server mysql-server/root_password password root' | |
| sudo debconf-set-selections <<< 'mysql-server mysql-server/root_password_again password root' |
| # to generate your dhparam.pem file, run in the terminal | |
| openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
This gist assumes:
| Specifically, this gruntfile will perform the following. | |
| - CSS: | |
| -- Compile SCSS | |
| -- Add vendor prefixes for the last 10 browser versions | |
| - JS: | |
| -- Run scripts through jshint to detect errors and potential problems in code. | |
| -- Compile scripts to your destination folder in their original state. Use these in development environments as they'll be easier to debug with as their code doesn't exist on 1 line, nor is it obfuscated. | |
| -- Minify and concatenate scripts into one all.min.js. Uglify will also obfuscate code if you set mangle to true, leave as false if using AngularJS. |
| #!/bin/bash | |
| now=`date +"%Y-%m-%d" -d "05/06/2012"` | |
| end=`date +"%Y-%m-%d" -d "05/23/2012"` | |
| while [ "$now" != "$end" ] ; | |
| do | |
| now=`date +"%Y-%m-%d" -d "$now + 1 day"`; | |
| echo $now | |
| done |
| git branch -m old_branch new_branch # Rename branch locally | |
| git push origin :old_branch # Delete the old branch | |
| git push --set-upstream origin new_branch # Push the new branch, set local branch to track the new remote |