Skip to content

Instantly share code, notes, and snippets.

@klzns
klzns / fiddle.html
Last active August 29, 2015 14:00
Bar code scanner and credit card reader
<h1>Bar code scanner and credit card reader</h1>
<p id="barcode" style="display:none;"><strong>Bar code:</strong> <span></span></p>
<div id="card" style="display:none;">
<h3>Card</h3>
<p><strong>Number</strong></p>
<p id="card-number"></p>
<p><strong>Due Date</strong></p>
@klzns
klzns / killthis.sh
Created April 21, 2014 15:05
Kill a process by it's name or file name
#!/bin/sh
killthis() {
kill -9 `ps aux | grep $1 | awk '{print $2}'`
}