- 1/4 cup of butter
- 2 large baking potatoes
- 1 lb. ground sausage
- 1/2 medium onion, diced
- 1 4.5oz. can of green chiles
- 1 cup shredded sharp cheddar cheese
- 8 eggs
- 1 cup of milk
import argparse, sys | |
from lxml import etree | |
class PMDTransformer(object): | |
def __init__(self): | |
self.etree = None | |
self.args = None | |
self.violations = None | |
def parse(self): |
var cltnc = (function() { | |
return { | |
CardDeck: function(ary) { | |
if ("string" == typeof(ary)) { | |
this.ary = ary.split(""); | |
} else { | |
this.ary = ary; | |
} | |
this.remaining = ary.length; |
I hereby claim:
- I am colezlaw on github.
- I am cfa (https://keybase.io/cfa) on keybase.
- I have a public key whose fingerprint is 5B22 34AF 738D 4736 3F27 8122 74E1 51C7 F60C 1753
To claim this, I am signing this object:
A couple of folks have asked for an example of what Google Apps Script is useful for. The things I've done so far are pretty specific applications, so not useful to the general public. I decided to put together a simple script which may (or may not) be more generally useful, but still shows off some of the coolness of Google Apps Script.
If you're a tactile learner like I am, I encourage you to actually type in the samples rather than copy/pasting them. I don't learn anything by using copy/paste.
I generally work from home, so when I do go into the office, there are usually a number of coworkers there who also generally work from home. We try to schedule a lunch during the day, but when the time comes to get into cars, it's a long and painful process of trying to decide where to eat. I guess none of us has an alpha personality, so we each are trying to please the others. The goal of this script is to narrow down the selection process using a more alpha personality - a PRNG.
The workflow work
2017-04-11 12:39:40,158 org.owasp.dependencycheck.utils.Settings:562 | |
DEBUG - Setting: data.directory='/usr/local/Cellar/dependency-check/1.4.5/libexec/data' | |
2017-04-11 12:39:40,162 org.owasp.dependencycheck.utils.Settings:562 | |
DEBUG - Setting: autoupdate='true' | |
2017-04-11 12:39:40,162 org.owasp.dependencycheck.utils.Settings:562 | |
DEBUG - Setting: analyzer.experimental.enabled='false' | |
2017-04-11 12:39:40,162 org.owasp.dependencycheck.utils.Settings:562 | |
DEBUG - Setting: analyzer.jar.enabled='true' | |
2017-04-11 12:39:40,162 org.owasp.dependencycheck.utils.Settings:562 | |
DEBUG - Setting: analyzer.archive.enabled='true' |
#!/bin/bash | |
# | |
BASE=/tmp | |
PID=$BASE/app.pid | |
LOG=$BASE/app.log | |
ERROR=$BASE/app-error.log | |
PORT=11211 | |
LISTEN_IP='0.0.0.0' | |
MEM_SIZE=4 |