This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$objPHPExcel = new PHPExcel(); | |
// Set properties | |
$objPHPExcel->getProperties()->setCreator("Quid"); | |
$objPHPExcel->getProperties()->setLastModifiedBy("Quid"); | |
$objPHPExcel->getProperties()->setTitle("Office 2003 XLS Test Document"); | |
$objPHPExcel->getProperties()->setSubject("Office 2003 XLS Test Document"); | |
$objPHPExcel->getProperties()->setDescription("Test document for Office 2007 XLS, generated using PHP classes."); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
return array( | |
/* | |
|-------------------------------------------------------------------------- | |
| Assets Folder Base Path | |
|-------------------------------------------------------------------------- | |
| | |
| This is where you can specify a custom path to your assets |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = function (grunt) { | |
// Initialize configuration object | |
grunt.initConfig({ | |
// Read in project settings | |
pkg: grunt.file.readJSON('package.json'), | |
// User editable project settings & variables | |
options: { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
return array( | |
/* | |
|-------------------------------------------------------------------------- | |
| Assets Folder Base Path | |
|-------------------------------------------------------------------------- | |
| | |
| This is where you can specify a custom path to your assets |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gulp.task('styles', function () { | |
gulp.src('less/main.less') | |
.pipe(less(function () { | |
this.emit("error", new Error("Something happend: Error message!")) | |
})) | |
.on("error", notify.onError(function (error) { | |
return "Message to the notifier: " + error.message; | |
})) | |
.pipe(gulp.dest('css')) | |
.pipe(livereload()); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Module install command: npm install gulp-less gulp-livereload gulp-imagemin gulp-uglify gulp-minify-css gulp-rename gulp-notify --save | |
// Get modules | |
var gulp = require('gulp'); | |
// Task boilerplate | |
gulp.task('taskname', function() { | |
}); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
ip: "192.168.10.10" | |
memory: 2048 | |
cpus: 2 | |
authorize: ~/.ssh/id_rsa.pub | |
keys: | |
- ~/.ssh/id_rsa |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
ip: "192.168.10.10" | |
memory: 2048 | |
cpus: 2 | |
authorize: ~/.ssh/id_rsa.pub | |
keys: | |
- ~/.ssh/id_rsa |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** @jsx React.DOM */ | |
var React = require('react/addons'); | |
var Timer = React.createFactory(require('./Timer.js').Timer); | |
var ReactApp = React.createClass({ | |
componentDidMount: function () { | |
console.log(fakeData); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var elixir = require('laravel-elixir'); | |
require('laravel-elixir-imagemin'); | |
elixir.config.js.browserify.transformers.push({ | |
name: 'vueify' | |
}); | |
elixir.config.js.browserify.transformers.push({ | |
name: 'babelify', | |
options: {stage: 0} |
OlderNewer