Skip to content

Instantly share code, notes, and snippets.

@bitnetwork
bitnetwork / wget.js
Last active March 22, 2020 13:37 — forked from udawtr/wget.vbs
wget.js - similar to wget but written in jscript
//wget.js - similar to wget but written in vbscript
//based on a script by Chrissy LeMaire
//forked by Bit
var shell = new ActiveXObject("WScript.shell");
//Usage
if (WScript.Arguments.length < 1) {
shell.Popup("Usage: wget.js <url> (file)");
WScript.Quit();
class Pixel {
constructor(options = {}) {
this.character = options.character || null;
this.color = options.color || null;
this.background = options.background || null;
}
merge(pixel) {
if (pixel.character !== null) {
this.character = pixel.character;