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
| 'use strict'; | |
| var gulp = require('gulp'); | |
| var sass = require('gulp-sass'); | |
| gulp.task('sass', function () { | |
| return gulp.src('./styles/bootstrap.scss') | |
| .pipe(sass().on('error', sass.logError)) | |
| .pipe(gulp.dest('./public/css')); | |
| }); |
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
| import { Component, OnInit, ElementRef, Input } from 'angular2/core'; | |
| import { NgControl, ControlValueAccessor } from 'angular2/common'; | |
| import "jquery"; | |
| import "jquery-ui"; | |
| declare var jQuery: any; | |
| @Component({ | |
| selector: '.datepicker', |
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
Show hidden characters
| { | |
| "version": "1.6.2", | |
| "compilerOptions": { | |
| "target": "es6", | |
| "module": "commonjs", | |
| "declaration": false, | |
| "noImplicitAny": false, | |
| "removeComments": true, | |
| "noLib": false, | |
| "emitDecoratorMetadata": true, |
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) { | |
| // show elapsed time at the end | |
| require('time-grunt')(grunt); | |
| // load all grunt tasks | |
| require('load-grunt-tasks')(grunt); | |
| //MODIFIED: add require for connect-modewrite | |
| var modRewrite = require('connect-modrewrite'); | |
| grunt.initConfig({ |
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
| span monitors:i:1 | |
| screen mode id:i:1 | |
| use multimon:i:1 | |
| desktopwidth:i:1920 | |
| desktopheight:i:1080 | |
| session bpp:i:32 | |
| winposstr:s:0,1,2066,89,2866,689 | |
| compression:i:1 | |
| keyboardhook:i:2 | |
| audiocapturemode:i:0 |
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 | |
| ###################################################### | |
| # # | |
| # Forms To Go 4.5.4 # | |
| # http://www.bebosoft.com/ # | |
| # # | |
| ###################################################### | |
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 | |
| ###################################################### | |
| # # | |
| # Forms To Go 4.5.4 # | |
| # http://www.bebosoft.com/ # | |
| # # | |
| ###################################################### | |
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
| In the .zshrc you need to select the theme blinks | |
| SH_THEME="blinks" | |
| You can find this here: | |
| https://gist.github.com/gmann1982/9981379 | |
| this will need to go in the file |
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
| function _prompt_char() { | |
| if $(git rev-parse --is-inside-work-tree >/dev/null 2>&1); then | |
| echo "%{%F{blue}%}±%{%f%k%b%}" | |
| else | |
| echo ' ' | |
| fi | |
| } | |
| # This theme works with both the "dark" and "light" variants of the | |
| # Solarized color schema. Set the SOLARIZED_THEME variable to one of |
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
| if(! ('ace' in window) ) window['ace'] = {} | |
| jQuery(function($) { | |
| //at some places we try to use 'tap' event instead of 'click' if jquery mobile plugin is available | |
| window['ace'].clickOrTap = $.fn.tap ? "tap" : "click"; | |
| }); | |
| jQuery(function($) { | |
| ace.sidebarHandler(jQuery); |
NewerOlder