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
{ | |
"excludeFiles": ["node_modules/**", "bower_components/**"], | |
"requireCurlyBraces": [ | |
"if", | |
"else", | |
"for", | |
"while", | |
"do", | |
"try", |
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 gulp = require('gulp'); | |
var args = require('yargs').argv; | |
var config = require('./gulp.config')(); | |
var del = require('del'); | |
var iff = require('gulp-if'); | |
var jscs = require('gulp-jscs'); | |
var jshint = require('gulp-jshint'); | |
var sass = require('gulp-sass'); | |
var concat = require('gulp-concat'); | |
var sourcemaps = require('gulp-sourcemaps'); |
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(){ | |
'use strict'; | |
angular | |
.module('ARM') | |
.factory('LoansFactory', LoansFactory); | |
LoansFactory.$inject = ['$http', '$q', 'API_URL', 'AppFactory']; | |
/* @ngInject */ | |
function LoansFactory($http, $q, API_URL, AppFactory) { |
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
$users = App\User::with(['posts' => function ($query) { | |
$query->where('title', 'like', '%first%'); | |
}])->get(); |
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
SELECT F.id | |
, F.fsn | |
, F.owner | |
, F.county_id | |
, C.county | |
, C.state_id | |
, S.abr | |
, F.share_rent | |
, F.cash_rent | |
, F.dist_rent |
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
☁ jot-client [work] ⚡ gulp styles | |
[22:40:41] Using gulpfile ~/Projects/jot-client/gulpfile.js | |
[22:40:41] Starting 'styles'... | |
[22:40:41] Compiling Less --> CSS | |
[22:40:41] 'styles' errored after 223 ms | |
[22:40:41] TypeError: Object function (options) { | |
// Mixes in default options. | |
options = assign({}, { | |
compress: false, | |
paths: [] |
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
farms: [{ | |
id: "9", | |
loan_id: "1", | |
county_id: "1317", | |
fsn: "123", | |
owner: "John Doe", | |
perm_ins: "0", | |
share_rent: "20", | |
cash_rent: "0", | |
waived: "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
return '<div style="text-align:center !important;"><span class="pendicon glyphicon glyphicon-exclamation-sign" ng-class="{\'penOn\': params.context.pending_view, \'penOff\': !params.context.pending_view}" ng-click="alertIT()"></span></div>'; |
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 tooltip="Vote Needed" | |
tooltip-append-to-body="true" | |
tooltip-placement="bottom" | |
class="pendicon glyphicon glyphicon-exclamation-sign" | |
ng-class="{'cBlue': data.need_vote, 'cGray': !data.need_vote}"></span> | |
<span tooltip="Comments" | |
tooltip-append-to-body="true" | |
tooltip-placement="bottom" | |
class="pendicon glyphicon glyphicon-exclamation-sign" |
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
<!doctype html> | |
<html ng-app="example"> | |
<head> | |
<meta charset="utf-8"> | |
<script>document.write('<base href="' + document.location + '" />');</script> | |
<script src="bower_components/angular/angular.js"></script> | |
<script src="bower_components/ag-grid/dist/angular-grid.js"></script> | |
<link rel="stylesheet" type="text/css" href="css/bootstrap.css" /> | |
<link rel="stylesheet" type="text/css" href="bower_components/ag-grid/dist/angular-grid.css"> | |
<link rel="stylesheet" type="text/css" href="bower_components/ag-grid/dist/theme-fresh.css"> |