Skip to content

Instantly share code, notes, and snippets.

var terminal = require('child_process').spawn('cmd');
terminal.stdout.on('data', function (data) {
console.log('stdout: ' + data);
});
terminal.on('exit', function (code) {
console.log('child process exited with code ' + code);
});
var fs = require("fs"),
path = require("path"),
p = "/some-app/webapp/WEB-INF/jsp",
files,
result = {
"name": null,
"type": null,
"location": null
},
allResults = new Array();
report[toString] = function() {// do something toStringy
}
report.hasOwnProperty(toString)
true
// now when you inspect the report object
Object
function toString() { [native code] }: function () {// do something toStringy
}
name: "xyz"
Object
name: "xyz"
type: "settlement"
__proto__: Object
__defineGetter__: function __defineGetter__() { [native code] }
__defineSetter__: function __defineSetter__() { [native code] }
__lookupGetter__: function __lookupGetter__() { [native code] }
__lookupSetter__: function __lookupSetter__() { [native code] }
constructor: function Object() { [native code] }
hasOwnProperty: function hasOwnProperty() { [native code] }
var report = {
name: 'xyz',
type: 'monthly'
}
console.dir(report)
Object
name: "xyz"
type: "settlement"
__proto__: Object
angular.module('angularstruts').directive('hexadecimalColorValidation', [function(){
return {
restrict: 'A',
require: 'ngModel',
scope: {
},
link: function(scope, elem, attrs, ctrl) {
elem.on('blur', function(event) {
scope.$apply(function() {
var val, hexCodeRegex, validationResult=true;
<form name="gonebatty" ng-app="q.apApp" ng-controller='AppController' method="post" novalidate>
<label>Header Font Color:</label>
<input type="text" id="font-color" ng-model="homePageHeaderFontColor"
hexadecimal-color-validation={{homePageHeaderFontColor}}>
<span ng-show="gonebatty.homePageHeaderFontColor.$error.validHexColor" class="errorMessage" ng-cloak>
Invalid color code
</span>
@KazChe
KazChe / gist:9110375
Created February 20, 2014 10:02
blog snippet1
<html ng-app='q.apApp'>
@KazChe
KazChe / gist:6954708
Last active December 25, 2015 09:29
simple Object.observe() - run in Chrome Canary with experimental javascript flag enabled.
function ObserveMe() {
var x =
{
"thing":
{ "label": "party",
"value": "republican"
}
}
return x;
}
@KazChe
KazChe / gist:6930781
Created October 11, 2013 07:15
Checkin steps
git add .
git status
commit -m"blah blurb boop"
git push origin master