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
[{ | |
"Item_No": "SG800-4030", | |
"ShortDescription": "This is a Bottom Bracket Kit W/ Bolts", | |
"LongDescription": "Here are excruciating details about the Bottom Bracket Kit W/ Bolts and \n newlines", | |
"Price": "43.29", | |
"UOM": "EA" | |
}] |
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
Imports System | |
''' <summary> | |
''' Return false to cause default code for event to not execute. | |
''' </summary> | |
''' <remarks></remarks> | |
Public Class Global_asax | |
Function ShouldMapRoute(Name as string) as boolean | |
Return False |
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
/* global require */ | |
/* global process */ | |
/* global __dirname */ | |
/* jshint strict: true */ | |
var gulp = require('gulp'); | |
require('gulp-load')(gulp); | |
var merge = require('merge-stream'); | |
var fs = require('fs'); |
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
(DS.Tables(0).Columns(0).ColumnName & ": '" & DS.Tables(0).Rows(0).Item(0).ToString() ) & "\n" & (DS.Tables(0).Columns(1).ColumnName & ": '" & DS.Tables(0).Rows(0).Item(1).ToString() ) & "\n" & (DS.Tables(0).Columns(2).ColumnName & ": '" & DS.Tables(0).Rows(0).Item(2).ToString() ) & "\n" & (DS.Tables(0).Columns(3).ColumnName & ": '" & DS.Tables(0).Rows(0).Item(3).ToString() ) & "\n" & (DS.Tables(0).Columns(4).ColumnName & ": '" & DS.Tables(0).Rows(0).Item(4).ToString() ) & "\n" & (DS.Tables(0).Columns(5).ColumnName & ": '" & DS.Tables(0).Rows(0).Item(5).ToString() ) & "\n" & (DS.Tables(0).Columns(6).ColumnName & ": '" & DS.Tables(0).Rows(0).Item(6).ToString() ) & "\n" & (DS.Tables(0).Columns(7).ColumnName & ": '" & DS.Tables(0).Rows(0).Item(7).ToString() ) & "\n" & (DS.Tables(0).Columns(8).ColumnName & ": '" & DS.Tables(0).Rows(0).Item(8).ToString() ) & "\n" & (DS.Tables(0).Columns(9).ColumnName & ": '" & DS.Tables(0).Rows(0).Item(9).ToString() ) & "\n" & (DS.Tables(0).Columns(10).ColumnName & ": '" & DS.Tabl |
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 _ = require('lodash'); | |
var argv = require('yargs').argv; | |
var exec = require('child_process').exec; | |
module.exports = function(gulp) { | |
gulp.task('mercurial-tag', function(done) { | |
var buildLabel = argv.build_label; | |
if (_.isUndefined(buildLabel)) { | |
throw 'label is required for versioning'; | |
} |
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
node .\node_modules\gulp\\bin\gulp.js %* | |
pause |
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
# PULL | |
1x5 Deadlifts | |
3x5 Rows | |
3x8-12 Pulldowns OR Pullups | |
3x8-12 Chinups | |
4x8-12 Hammer curls | |
4x8-12 Dumbbell curls | |
3x8-12 Shrugs | |
# PUSH |
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
Swap center console with http://www.mossmiata.com/Shop/ViewProducts.aspx?PlateIndexID=78101 | |
New shifter knob | |
De-rust and paint rusted parts | |
New top | |
Performance brakes | |
Suspension | |
Sway bar | |
LSD | |
Racing Clutch | |
Turbo |
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
hg log --rev 'merge()' --template '{node}\n' ` | |
| foreach-object { @{ 'id' = $_; 'files' = hg log --rev $_ --template '{files}'; } } ` | |
| Where-Object { $_.files -eq $null } | ForEach-Object { $_.id } |
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
CREATE TABLE POSDrawers ( | |
[ID] uniqueidentifier NOT NULL PRIMARY KEY, | |
[Description] [varchar] (100) , | |
[Status] [varchar] (50) , | |
[Created] [int] , | |
[LastActivity] [datetime] , | |
[InitialBalance] [int] , | |
[Stage] [int]) |