Skip to content

Instantly share code, notes, and snippets.

View gmmorris's full-sized avatar

Gidi Meir Morris gmmorris

View GitHub Profile
@gmmorris
gmmorris / Document level ommunication
Created August 29, 2015 14:39
Gists for my article on the LH rewrite
var StateController = new function(){
this.GetState = function(){
$(document).trigger('navestate:giveMeTheState',this)
};
this.hereYouGo = function(navState){
// Do something with navState
};
};
var NavState = new function(){
@gmmorris
gmmorris / dom_for_selectors.html
Created July 26, 2015 15:00
Example for article on Medium.com about Simmerjs
<div id="new_panel">
<div>
Lorem ipsum...
</div>
<div class="blurb">
<div>
Lorem ipsum...
<div>
<em>This is what we're doing!</em>
</div>
@gmmorris
gmmorris / index.html
Last active August 29, 2015 13:56 — forked from webapprentice/tutorial_39_example_1.html
Small snippet for a fullscreen mode utility
<div id='container'>
<img src='assets/slideshow_3.png' id='myimage' />
</div>
<p style='text-align: center'>
Click the image to expand - Hit the ESC key to collapse
</p>
<style type="text/css">
@gmmorris
gmmorris / .bash_profile
Last active April 11, 2020 10:24
My .bash_profile file
# Add ll like linux
alias ll='ls -l'
# type 'srv' in any folder to open a web browser and chrome
alias srv='python -m SimpleHTTPServer 8000'
export NVM_DIR=~/.nvm
source $(brew --prefix nvm)/nvm.sh
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*
@gmmorris
gmmorris / index.html
Created February 5, 2014 23:59
Logo Image Replacement
<h1 class="ir-logo">
<span>My Site</span>
</h1>