Skip to content

Instantly share code, notes, and snippets.

View plroebuck's full-sized avatar

P. Roebuck plroebuck

View GitHub Profile
@plroebuck
plroebuck / mocha-issue-3818.md
Last active March 10, 2019 13:54
Custom Location is not working as expected for `mocha --config`

Issue: Custom Location is not working as expected for --config

PREREQUISITE: Instructions assume installation of Allure Framework completed and functioning.

Create parent folder

$ cd /var/tmp
$ mkdir git_test
@plroebuck
plroebuck / superagent_with_credentials.md
Last active March 9, 2019 16:05
SuperAgent & Mocha - external authorization credentials

"test/check-limits.spec.js"

const assert = require('assert');
const fs = require('fs');
const path = require('path');
const URL = require('url').URL;
const request = require('superagent');

const projdir = '..';
const CRLF = '\r\n';
@plroebuck
plroebuck / description
Last active December 19, 2018 23:21
Mocha PNG logo
URL links for various sizes
@plroebuck
plroebuck / svg2icns.bash
Last active January 23, 2024 07:03
Create ICNS file from SVG file (with ImageMagick)
#! /bin/bash
###
### svg2icns.bash
### Create ICNS file from SVG
###
### See also:
### <https://stackoverflow.com/questions/12306223/how-to-manually-create-icns-files-using-iconutil#39678276>
### <https://developer.apple.com/library/content/documentation/GraphicsAnimation/Conceptual/HighResolutionOSX/Optimizing/Optimizing.html>
###