##Setup Textmate for Rails Dev on OS X
##File/Folder Patterns
Wouldn't it be nice to be able to see hidden files and folders when working on a project in Textmate? As it turns out, it's built right in! Modify a few regex details with the tips below.
| // make sure this executes at the end of your page | |
| // and note that this is the recommended way because you dont want to clog the thread | |
| // (all browsers are single threaded, except for chrome where each tab is a single process) and you'll have a frozen webpage. | |
| <script type="text/javascript" charset="utf-8"> | |
| $(document).ready(function() | |
| { | |
| setInterval(function(){ | |
| $('#additionalthumb1 a').Chocolat(); | |
| },1000); // set a value for this in milliseconds. | |
| }); |
| //VARS | |
| var _stage, | |
| _lineGroup, | |
| _lineHolder, | |
| _stats, | |
| _camera, | |
| _scene, | |
| _renderer, | |
| _mouseX = 0, | |
| _mouseY = 0, |
| #include <math.h> | |
| void setup() | |
| { | |
| pinMode(11, OUTPUT); | |
| } | |
| void loop() | |
| { | |
| float val = (exp(sin(millis()/2000.0*PI)) - 0.36787944)*108.0; |
| class Foo | |
| include Mongoid::Document | |
| field :bar | |
| end | |
| foo = Foo.new(:bar => "baz") | |
| foo.to_json # => { _id: "(some uuid)", bar: "baz" } |
Saturday 9:00pm until 4:00am
577 Great Northern Way, Vancouver, BC
There are several ways to get tickets!
Online at: http://northerntickets.com/events.php?s=wavelength Paper tickets available at High Life on Commercial Drive and Red Cat on Main Street Or, you can contact Chelsea or Ben who also have paper tickets available!
| <div id="container"> | |
| <ul> | |
| <li data-row="1" data-col="1" data-sizex="1" data-sizey="1"></li> | |
| <li data-row="1" data-col="2" data-sizex="1" data-sizey="1"></li> | |
| <li data-row="1" data-col="3" data-sizex="1" data-sizey="1"></li> | |
| <li data-row="1" data-col="4" data-sizex="1" data-sizey="1"></li> | |
| <li data-row="1" data-col="5" data-sizex="1" data-sizey="1"></li> | |
| </ul> | |
| </div> |
| class Namespace.Views.View extends Backbone.View | |
| gridster: null | |
| initialize: -> | |
| @render() | |
| render: => | |
| $(@el).html JST['templates/page'](key: 'value') | |
| @loadGridster() |
| # flyingoctoApps is the only official directory | |
| !flyingoctoApps/ | |
| # ignore bin folders' contents, except data folder therein | |
| /flyingoctoApps/*/bin/* | |
| !/flyingoctoApps/*/bin/data/ | |
| /flyingoctoApps/*/.cproject | |
| /flyingoctoApps/*/.project | |
| /flyingoctoApps/*/.settings/ |
| ######################### | |
| # .gitignore file for Xcode4 / OS X Source projects | |
| # | |
| # NB: if you are storing "built" products, this WILL NOT WORK, | |
| # and you should use a different .gitignore (or none at all) | |
| # This file is for SOURCE projects, where there are many extra | |
| # files that we want to exclude | |
| # | |
| # For updates, see: http://stackoverflow.com/questions/49478/git-ignore-file-for-xcode-projects | |
| ######################### |