mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.5 KiB
55 lines
1.5 KiB
13 years ago
|
// happy xmas
|
||
|
var npm = require("./npm.js")
|
||
|
, log = require("./utils/log.js")
|
||
|
|
||
|
module.exports = function (args, cb) {
|
||
|
npm.config.set("loglevel", "win")
|
||
|
var s = process.platform === "win32" ? " *" : " \u2605"
|
||
|
, f = "\uFF0F"
|
||
|
, b = "\uFF3C"
|
||
|
, x = process.platform === "win32" ? " " : ""
|
||
|
, o = [ "\u0069" , "\u0020", "\u0020", "\u0020", "\u0020", "\u0020"
|
||
|
, "\u0020", "\u0020", "\u0020", "\u0020", "\u0020", "\u0020"
|
||
|
, "\u0020", "\u2E1B","\u2042","\u2E2E","&","@","\uFF61" ]
|
||
|
, oc = [21,33,34,35,36,37]
|
||
|
, l = "\u005e"
|
||
|
|
||
|
function w (s) { process.stderr.write(s) }
|
||
|
|
||
|
w("\n")
|
||
|
;(function T (H) {
|
||
|
for (var i = 0; i < H; i ++) w(" ")
|
||
|
w(x+"\033[33m"+s+"\n")
|
||
|
var M = H * 2 - 1
|
||
|
for (L = 1; L <= H; L ++) {
|
||
|
var O = L * 2 - 2
|
||
|
var S = (M - O) / 2
|
||
|
for (var i = 0; i < S; i ++) w(" ")
|
||
|
w(x+"\033[32m"+f)
|
||
|
for (var i = 0; i < O; i ++) w(
|
||
|
"\033["+oc[Math.floor(Math.random()*oc.length)]+"m"+
|
||
|
o[Math.floor(Math.random() * o.length)]
|
||
|
)
|
||
|
w(x+"\033[32m"+b+"\n")
|
||
|
}
|
||
|
w(" ")
|
||
|
for (var i = 1; i < H; i ++) w("\033[32m"+l)
|
||
|
w("| "+x+" |")
|
||
|
for (var i = 1; i < H; i ++) w("\033[32m"+l)
|
||
|
if (H > 10) {
|
||
|
w("\n ")
|
||
|
for (var i = 1; i < H; i ++) w(" ")
|
||
|
w("| "+x+" |")
|
||
|
for (var i = 1; i < H; i ++) w(" ")
|
||
|
}
|
||
|
})(20)
|
||
|
w("\n\n")
|
||
|
log.win("Happy Xmas, Noders!", "loves you", cb)
|
||
|
}
|
||
|
var dg=false
|
||
|
Object.defineProperty(module.exports, "usage", {get:function () {
|
||
|
if (dg) module.exports([], function () {})
|
||
|
dg = true
|
||
|
return " "
|
||
|
}})
|