- In a new directory, create a Devbot-Django Project
- In a new directory, create a Devbot-HTML Project
- Devbot-Django: Delete all things in /static
- Devbot-HTML > Devbot-Django: Copy all things in /src to /static
- Devbot-HTML > Devbot-Django: Copy /config.rb into the Devbot-Django project root
- Devbot-Django: Update new /config.rb, replace
src/withstatic/ - Devbot-Django: Update vagrant, fab css_watch task: see: https://gist.github.com/aubricus/72edfdba60c0a4b89d0c
- Devbot-Django: Index.html remove require include
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| p = subprocess.Popen(['pbcopy'], stdin=subprocess.PIPE) | |
| p.stdin.write('copy-text') | |
| p.stdin.close() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export WORKON_HOME=$HOME/.virtualenv | |
| export PIP_VIRTUALENV_BASE=$WORKON_HOME | |
| export PIP_REQUIRE_VIRTUALENV=true | |
| export PIP_RESPECT_VIRTUALENV=true | |
| # If virtualenv wrapper exists in these locations... | |
| venvwrappers[0]="/usr/local/share/python/virtualenvwrapper.sh" | |
| venvwrappers[1]="$HOME/.virtualenv/default/bin/virtualenvwrapper.sh" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <body> | |
| <!-- code removed for brevity --> | |
| <!-- require setup, do not delete --> | |
| <script src="{{STATIC_URL}}/js/vendor/require.js"></script> | |
| <script> | |
| require(['{{STATIC_URL}}/js/common.js'], function(){ | |
| require(['main']); | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # paths | |
| base_path = "./" | |
| config_path = "./config.rb" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| gem install bourbon -v 3.2.3 | |
| gem install neat -v 1.5.1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="page"> | |
| <header> | |
| <h1>Hello I'm The Header</h1> | |
| </header> | |
| <div class="hero"> | |
| <div class="one"> | |
| <h2>I'm by myself</h2> | |
| </div> | |
| <div class="two"> | |
| <div><h3>I'm 1</h3></div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @function get($dict, $key, $default: false) { | |
| /* a python-style "get" function to emulate dictionary access in scss | |
| param: $dict the dict you'd like to 'get' from | |
| param: $key the 'key' to access | |
| param: $default a default value to return should the 'get' fail | |
| see: | |
| - http://bit.ly/1cPvYXx | |
| - http://stackoverflow.com/a/11041421 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ---- | |
| // Sass (v3.4.12) | |
| // Compass (v1.0.3) | |
| // ---- | |
| @mixin foo($section){ | |
| .foo.#{$section} & { | |
| @content; | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * @name lazyImageLoader | |
| * @description A quick implementation of a lazy loading technique for images. | |
| * @returns object {"load": load} (see below) | |
| * | |
| * @param $imageList jquery selector List of images | |
| * @param options object Configuration options | |
| * - "queue_size" the size of the "queue" you'd like to load when loader.load() is called | |
| * - "data_attr" the name of the data-attribute on your image tag; ex: "<img data-src="http://placehold.it/10x10 />" | |
| */ |
OlderNewer