| ⌘T | go to file |
| ⌘⌃P | go to project |
| ⌘R | go to methods |
| ⌃G | go to line |
| ⌘KB | toggle side bar |
| ⌘⇧P | command prompt |
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
| <head> | |
| <title>meteor_servercall</title> | |
| </head> | |
| <body> | |
| {{> simple}} | |
| {{> passData}} | |
| </body> | |
| <template name="simple"> |
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
| OS: Debian 6.0 | |
| Software Versions: Git 1.7.9.1, Ruby 1.9.3-p125, Rails 3.2.1, RubyGems 1.8.17, Git Apache2, | |
| Debian updates | |
| - | |
| sudo apt-get update | |
| sudo apt-get upgrade | |
| sudo apt-get install build-essential | |
| sudo apt-get install python-software-properties | |
| sudo apt-get install libssl-dev libreadline-dev |
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
Show hidden characters
| { | |
| // visuals | |
| "theme": "Soda Light.sublime-theme", | |
| "color_scheme": "Packages/User/Espresso Soda.tmTheme", | |
| "font_face": "Menlo", | |
| "font_size": 13, | |
| "line_padding_bottom": 1, | |
| "line_padding_top": 1, | |
| "highlight_line": true, | |
| "rulers": [80], |
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
| group :assets do | |
| gem 'compass-rails','~> 1.0.0.rc.2' | |
| gem 'compass-colors' | |
| gem 'sassy-buttons' | |
| gem 'sass-rails', '~> 3.2.3' | |
| # non-compass gems omitted for brevity | |
| end |
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
| require "open3" | |
| def readfile(file) | |
| f = File.open(file) | |
| lines = f.readlines("\n\n\n\n") | |
| lines.each do |line| | |
| fields = line.scan(/\s+Date:\s([^\n]+)$\s+Topic:\s([^\n]+)\n(.*)/m) | |
| date = fields[0][0].strip |
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
| // $('img.photo',this).imagesLoaded(myFunction) | |
| // execute a callback when all images have loaded. | |
| // needed because .load() doesn't work on cached images | |
| // Modified with a two-pass approach to changing image | |
| // src. First, the proxy imagedata is set, which leads | |
| // to the first callback being triggered, which resets | |
| // imagedata to the original src, which fires the final, | |
| // user defined callback. |
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
| #!/usr/bin/env python | |
| __title__ = 'Google Beatbox GUI' | |
| __version__ = 0.1 | |
| """ | |
| This program provides a simple GUI interface to create Google Beatbox beats. | |
| Original idea here: http://news.ycombinator.com/item?id=1952356 | |
| Drum Sounds defined: http://news.ycombinator.com/item?id=1952531 | |
| """ |
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
| var express = require('express'), | |
| request = require('request'), | |
| BufferList = require('bufferlist').BufferList, | |
| sys = require('sys'); | |
| var app = express.createServer( | |
| express.logger(), | |
| express.bodyDecoder() | |
| ); |
NewerOlder