Skip to content

Instantly share code, notes, and snippets.

View ika18's full-sized avatar

Ika Wu ika18

View GitHub Profile
@ika18
ika18 / gist:2099371
Created March 19, 2012 06:43 — forked from wankdanker/gist:1377895
node 0.6.2 windows xp
=== debug test-c-ares ===
Path: simple/test-c-ares
C:\node\test\simple\test-c-ares.js:46
if (error) throw error;
^
Error: getaddrinfo ENOENT
at errnoException (dns.js:31:11)
at Object.onanswer [as oncomplete] (dns.js:140:16)
Command: C:\node\Debug\node.exe C:\node\test\simple\test-c-ares.js
=== debug test-child-process-double-pipe ===
@ika18
ika18 / gollum
Created November 13, 2012 10:23 — forked from anonymous/gollum
gollum
/*!
* Gollum - 1.0.0-2-g7afb5e9
* Copyright (c) 2012 Norman Xu <[email protected]>
* Licensed MIT
*/
/**
* @class Gollum
* Load script under sandboxed execution context to isolate unsafe code.
@ika18
ika18 / 01-setup-new-typescript-project.md
Created February 18, 2024 15:23 — forked from avermeulen/01-setup-new-typescript-project.md
TypeScript basics with Mocha setup - learn how to use interfaces

Setup a new TypeScript project with Mocha support

Ensure you have TypeScript installed globally using this command:

npm install -g typescript

This outlines how to setup a new TypeScript project with mocha support.