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
☁ 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
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
$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
(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
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
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
{ | |
"bitwise": true, | |
"curly": true, | |
"eqeqeq": true, | |
"es3": false, | |
"forin": false, | |
"freeze": true, | |
"immed": true, | |
"indent": 4, | |
"latedef": "nofunc", |
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() { | |
var config = { | |
temp: './.tmp/', | |
index: './index.html', | |
alljs: [ | |
'./app/**/*.js', | |
'./*.js' | |
], |
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'); |