Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am neumark on github.
  • I am neumark (https://keybase.io/neumark) on keybase.
  • I have a public key ASBbVr-9dueWS476j0MIQC7qdarqdTM9SkkLqoVfTJdqqwo

To claim this, I am signing this object:

{
"_id": "5a8412bf547989001322ee04",
"name": "New Campaign 2018-02-14 11:43:07.643",
"suite_campaign_id": 100181917,
"subject": "New Campaign 2018-02-14 11:43:07.643",
"fromemail": "",
"fromname": "",
"unsubscribe": "n",
"browse": "n",
"preheader": "",
{
"_id": "5849438ca3034000113ba3d7",
"name": "test",
"customer_id": 1111111111111,
"suite_campaign_id": 1111,
"subject": "Test Subject",
"fromemail": "some@example.com",
"fromname": "John Doe",
"variables": {
"backgroundColor": "blue"
hostname
for i in `ps aux | grep -v grep | grep PepperService | awk -F' ' '{print $2}'`;
do echo $i
kill -9 $i
done
@neumark
neumark / Jakefile.js
Created January 16, 2012 11:03 — forked from garth/Jakefile.js
Example Jakefile from ViennaJS meetup
// Jake is like Rake for nodejs https://github.com/mde/jake
//
// Assumes that Jake will be run in the root of the web app with coffee files in /js/ and
// a single app.less file in /css/ that can include references to other .less files
//
//requires
var sys = require('util');
var execute = require('child_process').exec;
var fs = require('fs');