This file contains 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
var lib_net = require("net"); | |
var lib_chalk = require("chalk"); | |
var clients = {}; | |
var lastId = -1; | |
function cleanInput(data) { | |
return data.toString().replace(/(\r\n|\n|\r)/gm,""); | |
} |
This file contains 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
#include <iostream> | |
#include <fstream> | |
#include <stdio.h> | |
#include <string.h> | |
#include <unistd.h> | |
#include <stdlib.h> | |
using namespace std; | |
int main(int argLen, char * argVec[]) { | |
if (argLen <= 1 or strcmp(argVec[1], "--help") == 0) { |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name='viewport' content='width=device-width'> | |
<style> | |
body { | |
height: 100%; | |
width: 100%; | |
} |
This file contains 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
//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(); |
NewerOlder