Skip to content

Instantly share code, notes, and snippets.

@thejimnicholson
thejimnicholson / kill_process.sh
Last active October 5, 2020 21:34
Kill processes by name/path
for pid in $(ps -ef | grep "path-match-here" | awk '{print $2}'); do kill -9 $pid; done
### Keybase proof
I hereby claim:
* I am thejimnicholson on github.
* I am thejimnicholson (https://keybase.io/thejimnicholson) on keybase.
* I have a public key ASC3VXabiBf_zRXZnZXGrjKSdBZ4YLEHSia7oDD7yh5MTgo
To claim this, I am signing this object:
@thejimnicholson
thejimnicholson / dabblet.css
Created February 18, 2013 16:54
radiator_logo
/** radiator_logo
* The first commented line is your dabblet’s title
*/
body {
padding: 0px;
margin: 0px;
}
div.row {
@thejimnicholson
thejimnicholson / dabblet.css
Created February 18, 2013 05:24
radiator_logo
/** radiator_logo
* The first commented line is your dabblet’s title
*/
div.row {
background: #f06;
background: linear-gradient(120deg, silver, grey);
min-height: 50px;
width: 3px;
height: 90px;
/** Sploon
* The first commented line is your dabblet’s title
*/
color: #FEFEF0;
background: #375720;
background: linear-gradient(320deg, #070783, #10FEF0);
min-height: 100%;
font-family: verdana, arial, helvetica, sans-serif;
text-shadow: 3px 3px #BEBEB0;
-webkit-box-shadow: 3px 3px 10px 3px rgba(00, 00, 00, 1);