Skip to content

Instantly share code, notes, and snippets.

@jonniedarko
jonniedarko / index.html
Created May 21, 2016 17:21 — forked from knownasilya/index.html
Google Maps Advanced Drawing
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="UTF-8">
<title>Drawing Tools</title>
<script type="text/javascript"
src="http://maps.google.com/maps/api/js?sensor=false&libraries=drawing"></script>
<style type="text/css">
#map, html, body {
@jonniedarko
jonniedarko / nginx.conf
Created April 25, 2016 13:11 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048
@jonniedarko
jonniedarko / babel-plugin-project-relative-import.js
Last active February 26, 2016 13:44
Allows us to reference files relative to our JS_DIR wthing our imports using '~' e.g. `'~/main.js'` would import the file `JS_DIR + '/main.js'`
/**
* Allows us to referece files relative to our JS_DIR wthing our imports uing '~'
*
* e.g. '~/main.js' would import the file JS_DIR +'/main.js'
*/
var Path = require('path')
var JS_DIR = '/app/js';
/*
// For referece : Babel 5 version
module.exports = function (babel) {
@jonniedarko
jonniedarko / excel-functions.js
Created February 24, 2016 15:34
Math Functions
//
/**
* Returns the inverse of the standard normal cumulative distribution.
* The distribution has a mean of zero and a standard deviation of one.
* Based on: https://github.com/liorzoue/js-normal-inverse
* @param Number
*/
function normsInv(x){
if(isNaN(x)){
throw new TypeError('normsInv requires a parameter of type Number');
[alias]
ca = !sh -c 'git add -A && git commit -m \"$1\"'
@jonniedarko
jonniedarko / memReport.py
Created January 28, 2016 13:57
reports on memory of system
#!/usr/bin/python
# src: http://apple.stackexchange.com/questions/4286/is-there-a-mac-os-x-terminal-version-of-the-free-command-in-linux-systems
import subprocess
import re
# Get process info
ps = subprocess.Popen(['ps', '-caxm', '-orss,comm'], stdout=subprocess.PIPE).communicate()[0]
vm = subprocess.Popen(['vm_stat'], stdout=subprocess.PIPE).communicate()[0]
# Iterate processes
@jonniedarko
jonniedarko / index.html
Last active January 14, 2016 17:25
Symbol in HTML Input
<style>
.input-symbol{
position:relative;
}
.input-symbol span{
position: absolute;
transform: translate(0,-50%);
top:50%;
pointer-events:none;
@jonniedarko
jonniedarko / dev functions
Created January 7, 2016 14:30
Useful console functions
var localStorageToJSON = function localStorageToJSONFn(obj){
var storage = {};
for(var item in obj){
try{
json = JSON.parse(obj[item]);
storage[item] = json;
} catch(err){
storage[item] = obj[item]
}
}
If the forward-delete key just keeps inputting a '~' when pressed, instead of deleting the next character there is an easy solution.
In Terminal Preferences, click `profiles > Keyboard and + (Add)`
Double-click on the `del (forward delete)` key.
In the window that pops open, in the input box just below "Action."Type:
`Control-Option-D`
you should see '\004' in the box. Click OK, close the Terminal Inpsector window, and you should now have a working forward-delete key.
Yay!
# for changes to file
alias reloadBash='source ~/.bash_profile'
alias editBash='subl ~/.bash_profile'
#mongo
alias mongod='mongod --dbpath ~/data/db'
# open in chrome
alias chrome='open -a "Google Chrome"'
#alias cp='cp -iv' # Preferred 'cp' implementation
alias mv='mv -iv' # Preferred 'mv' implementation