I hereby claim:
- I am harmoniemand on github.
- I am harmoniemand (https://keybase.io/harmoniemand) on keybase.
- I have a public key whose fingerprint is 6E22 29B9 5E5A 153C 5397 BF77 1916 1109 E88F 3339
To claim this, I am signing this object:
using System; | |
using System.Linq; | |
using System.Linq.Expressions; | |
public static class QuerySearchExtensions | |
{ | |
private static Expression<Func<T, bool>> BuildSearchExpression<T>(string search) | |
{ | |
Expression baseExpression = null; // Expression.Constant(true); |
I hereby claim:
To claim this, I am signing this object:
function convertArrayBufferToHexaDecimal(buffer) { | |
var data_view = new DataView(buffer); | |
var iii, len, hex = "", c; | |
for ((iii = 0), (len = data_view.byteLength); iii < len; iii += 1) { | |
c = data_view.getUint8(iii).toString(16); | |
if (c.length < 2) c = "0" + c; | |
hex += c; | |
} |
angular.module('myApp') | |
.directive('dateValidation', [function () { | |
'use strict'; | |
return { | |
restrict: 'EA', | |
replace: true, | |
require: 'ngModel', | |
link: function (scope, element, attrs, ngModel) { |
/** | |
* Update a json node of an object | |
* Could create needed nodes, if path not exists | |
* @param {object} obj - the object that should be updated | |
* @param {string} path - the path of the node that should be updated | |
* @param value - the new value for the node | |
* @param {bool} createNodes - if true, the missing nodes will be created - if false, a error will be thrown if any of the nodes in the path is missing | |
*/ | |
var updateJson = function (obj, path, value, createNodes) { | |
if (obj === undefined) { obj = {}; } |
# Count Lines | |
(dir -include *.cs -recurse | select-string "^(\s*)//" -notMatch | select-string "^(\s*)$" -notMatch).Count | |
# Search String | |
$search = "focusSearchInputfield"; | |
Get-ChildItem -Recurse | Where { ! $_.PSIsContainer } | Select-String $search | select LineNumber, Path, Filename |Format-List | |
(dir -include * -recurse | select-string "_recurse") | |
# Count all Files |