#Chrome Alexa Web developer toolbar Delicious Buffer App Clearly Cortext BuiltWith 1Password
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>fileTypes</key> | |
<array> | |
<string>feature</string> | |
</array> | |
<key>firstLineMatch</key> | |
<string>기능|機能|功能|フィーチャ|خاصية|תכונה|Функціонал|Функционалност|Функционал|Особина|Могућност|Özellik|Właściwość|Tính năng|Savybė|Požiadavka|Požadavek|Osobina|Ominaisuus|Omadus|OH HAI|Mogućnost|Mogucnost|Jellemző|Fīča|Funzionalità|Funktionalität|Funkcionalnost|Funkcionalitāte|Funcționalitate|Functionaliteit|Functionalitate|Funcionalitat|Funcionalidade|Fonctionnalité|Fitur|Feature|Egenskap|Egenskab|Crikey|Característica|Arwedd(.*)</string> |
http://img.anongallery.org/img/2/0/javascript-the-good-parts.jpg
- 1.0 in December 24, 2010
- Default in Rails 3.1
- Current version 1.1.2
- "It's just JavaScript"
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
# ::::::::: :::::::::: ::: ::: :::::::: | |
# :+: :+: :+: :+:+: :+:+: :+: :+: | |
# +:+ +:+ +:+ +:+ +:+:+ +:+ +:+ +:+ | |
# +#+ +:+ +#++:++# +#+ +:+ +#+ +#+ +:+ | |
# +#+ +#+ +#+ +#+ +#+ +#+ +#+ | |
# #+# #+# #+# #+# #+# #+# #+# | |
# ######### ########## ### ### ######## | |
# ::::::::::: ::::::::::: ::: ::: :::::::::: | |
# :+: :+: :+:+: :+:+: :+: | |
# +:+ +:+ +:+ +:+:+ +:+ +:+ |
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
# add all tracked files that have been changed. | |
git add -u | |
# choose which changes to commit. | |
git add -p path/to/file | |
# interactive mode | |
git add -i path/to/file | |
# delete a branch |
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
# Debug | |
## In a view | |
<%= debug @object %> | |
<%= debug 'string' %> | |
<%= 'string'.inspect %> | |
##In a controller / model | |
logger.debug "The object is #{@object}" | |
RAILS_DEFAULT_LOGGER.debug @object |
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
// Jasmine Cheatsheet | |
// Resources | |
https://github.com/pivotal/jasmine-ajax //make ajax testing fun | |
http://sinonjs.org/ //stubing framework | |
http://johnbintz.github.com/jasmine-headless-webkit/ //headless testing | |
https://github.com/creynders/grunt-jasmine-task //headless testing | |
// Use guard-jasmine | |
gem "guard" |
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
# Dev environment: cheatcheat | |
# POW | |
## Install POW | |
curl get.pow.cx | sh | |
## Rbenv | |
## In ~/.powconfig | |
PATH="/Users/matthieuaussaguel/.rbenv/shims:/Users/matthieuaussaguel/.rbenv/bin:$PATH" |
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
# RSpec: Cheatsheet | |
INSTALL | |
======= | |
$ gem install rspec | |
RSPEC-RAILS | |
=========== |
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
Capybara | |
======== | |
Webrat alternative which aims to support all browser simulators. | |
API | |
=== | |
Navigating | |
---------- |
OlderNewer