Skip to content

Instantly share code, notes, and snippets.

@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 / 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 / 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 / fit-map.js
Created June 2, 2016 13:07
Make google maps fit a radius and pos - based on http://www.movable-type.co.uk/scripts/latlong.html
function toRad(num) {
return num * Math.PI / 180;
},
function toDeg(num) {
return num * 180 / Math.PI;
},
function destinationPoint(LatLng, bearingDegrees, radiusMeters) {
dist = radiusMeters / 1000 // convert to KM
@jonniedarko
jonniedarko / WebstormTweak
Created August 10, 2016 15:18 — forked from abhisheksliam/WebstormTweak
Speed up WebStorm
Here is my recipe how to speed up WebStorm:
Go to Preferences and do next:
Appearance & Behaviour > System Settings > Updates: disable auto update
Appearance & Behaviour > System Settings > Using Statistics: Uncheck allowing sending data
Editor > Live Templates: disable all, leave only what you are really use
Editor > Emmet: disable all emmets
Editor > Intentions: I leave only: CSS, Declaration, JavaScript and Language Injection
Plugins: leave only next (* - can be also disabled in case don't need them):
CoffeeScript *
@jonniedarko
jonniedarko / jio_cloudwatch_utilities.sh
Last active July 5, 2018 20:25
AWS Cloud watch utiliy script
#!/bin/bash
#
# functions to help with cloudwatch set up
# based on https://github.com/swoodford/aws
#
# Trying to mostly conform to Google's style guide:
# https://google.github.io/styleguide/shell.xml
#################################################
# CONSTANTS & DEFAULTS
@jonniedarko
jonniedarko / Material.module.ts
Created October 6, 2016 14:00
Angular2-material Module wrapper
import { NgModule } from '@angular/core';
// Material
import { MdCardModule } from '@angular2-material/card';
import { MdButtonModule } from '@angular2-material/button';
import { MdInputModule } from '@angular2-material/input';
import { MdToolbarModule } from '@angular2-material/toolbar';
import { MdListModule } from '@angular2-material/list';
import { MdIconModule, MdIconRegistry } from '@angular2-material/icon';

Let's say you make a filter that can replace things with regular expressions:

myApp.filter("regexReplace", function() { // register new filter

  return function(input, searchRegex, replaceRegex) { // filter arguments

    return input.replace(RegExp(searchRegex), replaceRegex); // implementation

  };
});
@jonniedarko
jonniedarko / one-liners.sh
Created December 11, 2016 17:53
Usefull Terminal one liners
# allows more powerful pattern matching e.g. `mv !(some_folder) some_folder` to disable use `-u` option instead
shopt -s extglob
@jonniedarko
jonniedarko / Rubyhello.rb
Created March 21, 2017 15:50
Ruby Hello world
puts "hello World"