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
#!/usr/bin/node | |
const fs = require('fs'); | |
const path = require('path'); | |
const shell = require('shelljs'); | |
const cp = require('child_process'); | |
const c_Usage = "USAGE: ./npm-global-install.js <path-to-package.json>"; | |
const c_start_time = new Date().getTime() / 1000; |
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
#!/bin/bash | |
# Compress web site | |
#-------------------------------------------------------------------------------------------------- | |
USAGE="Usage: ./compress-web.sh <source-dir> <destination-dir>" | |
SCRIPT_NAME=$(basename $0) | |
SCRIPT_PATH=$(dirname "$(readlink -f "$0")") |
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
@echo off | |
setlocal ENABLEDELAYEDEXPANSION | |
set p1=%1 | |
if "!p1!"=="" set "p1=x64" | |
REM #---------------------------------------------------------------- | |
REM # https://github.com/microsoft/winrtc | |
REM #---------------------------------------------------------------- | |
REM # RUN |
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
#!/usr/bin/env nodejs | |
//------------------------------------------------------------------------------------------------- | |
// Developer: Robert Umbehant | |
//------------------------------------------------------------------------------------------------- | |
// Splits the input file into words, filters the words, and outputs as a javascript / JSON friendly | |
// array of strings. | |
//------------------------------------------------------------------------------------------------- | |
var fs = require('fs'); |