I hereby claim:
- I am sixlettervariables on github.
- I am watford (https://keybase.io/watford) on keybase.
- I have a public key whose fingerprint is 80A7 B35C 0E00 658A D9D9 8DB7 590D 18D1 7779 BB15
To claim this, I am signing this object:
% Example MATLAB/Octave Script to Read ELI 280 ECG XML Files | |
% | |
% [email protected] | |
% | |
% | |
% Written as a standalone script (i.e., not a function) | |
% | |
clear; |
// | |
// Quick and Dirty way to read ELI 280 XML Files | |
// [email protected] | |
// | |
// .NET 5.0 / C# 8.0 | |
// | |
using System; | |
using System.IO; | |
using System.Xml.Linq; |
using System; | |
using System.Collections.Immutable; | |
using System.ComponentModel.Composition; | |
using System.ComponentModel.Composition.Hosting; | |
using System.ComponentModel.Composition.Registration; | |
using System.IO; | |
using System.Threading; | |
using System.Threading.Tasks; | |
using Microsoft.CodeAnalysis; | |
using Microsoft.CodeAnalysis.Diagnostics; |
// <copyright file="RemovePublicKeyTokenProgram.cs"> | |
// Copyright (c) 2015 Christopher A. Watford ([email protected]) | |
// | |
// Permission is hereby granted, free of charge, to any person obtaining a copy | |
// of this software and associated documentation files (the "Software"), to deal | |
// in the Software without restriction, including without limitation the rights | |
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
// copies of the Software, and to permit persons to whom the Software is | |
// furnished to do so, subject to the following conditions: | |
// |
I hereby claim:
To claim this, I am signing this object:
"view engines": { | |
"js": { | |
"module": "engine-munger", | |
"renderer": { | |
"method": "js", | |
"arguments": [ | |
{ | |
"cache": true, | |
"helpers": [ | |
{ |
You may have seen the picture, purporting to have source from a Microsoft developer explaining why Windows had to be versioned 10. The punchline is that so many programmers rely on the version to begin with "Windows 9" if they are running on 95 or 98, that Windows 10 was the only logical choice:
if(version.StartsWith("Windows 9"))
{ /* 95 and 98 */
} else {
/** | |
* Rewrite of express-enrouten's directory handler to use 'routeify()' | |
* | |
*/ | |
'use strict'; | |
var path = require('path'); | |
var express = require('express'); |
'use strict'; | |
var fs = require('fs'); | |
var path = require('path'); | |
/* EXAMPLE: | |
* var routes = routeifyDirectory('./controllers'); | |
* Object.keys(routes).forEach(function (fn) { | |
* console.log('%s => %s', fn, routes[fn]); | |
* }); |
/** router-dump: Dump the current stack for an expressjs router built with express-enrouten. | |
* @author Christopher A. Watford <[email protected]> | |
*/ | |
'use strict'; | |
/* EXAMPLE OUTPUT | |
[router] GET /login/ (./controllers/login/index.js) | |
[router] POST /login/ (./controllers/login/index.js) | |
[router] GET /login/reset/ (./controllers/login/index.js) |