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
import { marshall } from '@aws-sdk/util-dynamodb' | |
export { unmarshall } from '@aws-sdk/util-dynamodb' | |
import type { | |
NativeAttributeValue, | |
marshallOptions, | |
} from '@aws-sdk/util-dynamodb' | |
import type { AttributeValue } from '@aws-sdk/client-dynamodb' | |
import type { | |
QueryInput, |
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
--reporter spec | |
--require test/support/node | |
--recursive | |
--timeout 3000 |
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
#curl https://gist.githubusercontent.com/tyrsius/7324aaa515ade384cb1c/raw/927e4cd87d54a64c7a4ffc3b14739e5437346c35/node-and-npm-in-30-seconds.sh | sh | |
#echo 'export PATH=$PATH:$HOME/bin/node/bin' >> ~/.bashrc | |
. ~/.bashrc | |
mkdir bin -p | |
cd ~/bin | |
mkdir node -p | |
rm -rf install-node | |
mkdir install-node -p | |
cd install-node | |
curl https://nodejs.org/dist/v4.2.0/node-v4.2.0.tar.gz | tar xz --strip-components=1 |
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
#START http://boxstarter.org/package/nr/url?[URL] | |
Set-ExplorerOptions -showHidenFilesFoldersDrives -showFileExtensions | |
#choco install GoogleChrome | |
#choco install SublimeText3 | |
#choco install SublimeText3.PackageControl | |
choco install EthanBrown.ConEmuConfig | |
choco install ccleaner | |
#choco install putty |
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
#START http://boxstarter.org/package/url?https://gist.githubusercontent.com/tyrsius/d68433794768b7cdfaae/raw | |
Set-ExplorerOptions -EnableShowFileExtensions -EnableShowFullPathInTitleBar | |
#####Apps | |
cinst steam | |
cinst GoogleChrome | |
cinst sublimetext3.app | |
cinst greenshot |
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
require('colors'); | |
var path = require('path'), | |
fs = require('fs'), | |
Q = require('Q'), | |
readDir = Q.denodeify(fs.readdir), | |
stat = Q.denodeify(fs.stat), | |
rename = Q.denodeify(fs.rename); | |
var dirToRead = '$DIRNAME$', |
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
// Gruntfile with the configuration of grunt-express and grunt-open. No livereload yet! | |
module.exports = function(grunt) { | |
var port = 3000; | |
// Load Grunt tasks declared in the package.json file | |
require('matchdep').filterDev('grunt-*').forEach(grunt.loadNpmTasks); | |
// Configure Grunt | |
grunt.initConfig({ |
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
grunt.registerMultiTask('tests', 'Run PhantomJS Tests', function() { | |
var done = this.async(); | |
var childProcess = require('child_process'), | |
phantomjs = require('phantomjs'), | |
path = require('path'), | |
binPath = phantomjs.path; | |
var childArgs = [ |
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(grunt){ | |
require("matchdep").filterDev("grunt-*").forEach(grunt.loadNpmTasks); | |
var files = { | |
js: [ | |
'src/client/app/**/*.js', | |
'src/client/lib/durandal/js/plugins/{knockoutActivity,knockoutCommands,knockoutExtensions,qPatch,envPatch}.js' | |
], | |
jsExclude: ['src/client/app/main-built.js'], | |
htmlIndex: ['src/index.html'], |
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
// Knockout JavaScript library v3.0.0 | |
// (c) Steven Sanderson - http://knockoutjs.com/ | |
// License: MIT (http://www.opensource.org/licenses/mit-license.php) | |
(function() {(function(q){var y=this||(0,eval)("this"),w=y.document,K=y.navigator,u=y.jQuery,B=y.JSON;(function(q){"function"===typeof require&&"object"===typeof exports&&"object"===typeof module?q(module.exports||exports):"function"===typeof define&&define.amd?define(["exports"],q):q(y.ko={})})(function(F){function G(a,c){return null===a||typeof a in N?a===c:!1}function H(b,c,d,e){a.d[b]={init:function(b){a.a.f.set(b,L,{});return{controlsDescendantBindings:!0}},update:function(b,h,k,m,f){k=a.a.f.get(b,L);h=a.a.c(h()); | |
m=!d!==!h;var p=!k.ob;if(p||c||m!==k.Db)p&&(k.ob=a.a.Ya(a.e.childNodes(b),!0)),m?(p||a.e.S(b,a.a.Ya(k.ob)),a.Ta(e?e(f,h):f,b)):a.e.Z(b),k.Db=m}};a.g.Y[b]=!1;a.e.P[b]=!0}var a="undefined"!==typeof F?F:{};a.b=function(b,c){for(var d=b.split("."),e=a,g=0;g<d.length-1;g++)e=e[d[g]];e[d[d.length-1]]=c};a.s=function(a,c,d){a[c]=d};a.version="3.0. |
NewerOlder