Skip to content

Instantly share code, notes, and snippets.

@jumbojett
jumbojett / docker-compose.yml
Last active August 19, 2022 07:44 — forked from slowprog/docker-compose.yml
Docker-compose for rancher, nginx and let's encrypt
version: '2'
services:
nginx-proxy:
image: jwilder/nginx-proxy
container_name: nginx-proxy
ports:
- "80:80"
- "443:443"
volumes:
@jumbojett
jumbojett / new_css.js
Created February 8, 2017 13:59
Inject New CSS Bookmarklet
javascript:(function(){var newcss=window.prompt("new css rule:");if("\v"=="v"){document.createStyleSheet().cssText=newcss}else{var tag=document.createElement("style");tag.type="text/css";document.getElementsByTagName("head")[0].appendChild(tag);tag[(typeof document.body.style.WebkitAppearance=="string")?"innerText":"innerHTML"]=newcss}})();
#!/bin/bash
#
# Upgrades or Installs Xdebug on Mac OSX (Tested with Yosemite) YMMV
# @author Michael Jett
# @requires brew
#
# curl -kL http://git.io/vBGmR | bash
#
@jumbojett
jumbojett / javascriptnested.md
Last active August 29, 2015 14:07
javascript test for existence of nested object key and assign it

Sometimes you need to check for a nested object value and assign it if it exists.

Please note the following ugly code.

var assign_to_this;
if(test.level1 && test.level1.level2 && test.level1.level2.level3) {
    assign_to_this = test.level1.level2.level3;
}
@jumbojett
jumbojett / example.html
Last active November 21, 2018 12:05
AngularJS: Infinite Scrolling Directive
<div on-scroll="loadMore()">
<!-- content -->
</div>
// Facebook SDK
angular.module('facebook', [])
.directive('fb', ['$FB', function($FB) {
return {
restrict: "E",
replace: true,
template: "<div id='fb-root'></div>",
compile: function(tElem, tAttrs) {
return {
post: function(scope, iElem, iAttrs, controller) {
@jumbojett
jumbojett / recipe.md
Last active December 11, 2015 21:48
Ultimate Macaroni & Cheese Recipe

What you'll need:

  • 2 1/2 Cups macaroni pasta
  • 8 oz finely shredded sharp cheddar
  • 16 oz cottage cheese
  • 8 oz sour cream (daisy brand is the best b/c very creamy)
  • 1/2 cup of milk
  • 2 eggs beaten
  • 1/2 teaspoon salt