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
| https://kickass.to/the-troll-hunter-i1740707/ | |
| https://kickass.to/the-innkeepers-i1594562/ | |
| https://kickass.to/sinister-i1922777/ | |
| https://kickass.to/the-evil-dead-i0083907/ | |
| https://kickass.to/v-h-s-i2105044/ | |
| https://kickass.to/the-descent-i0435625/ | |
| https://kickass.to/splinter-i1031280/ | |
| https://kickass.to/el-espinazo-del-diablo-i0256009/ | |
| https://kickass.to/paranormal-activity-i1179904/ | |
| https://kickass.to/the-pact-i2040560/ |
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
| ENV['RAILS_ENV'] = 'test' | |
| require './config/environment' | |
| require 'rspec/rails' | |
| require 'capybara-webkit' | |
| require 'vcr' | |
| VCR.configure do |c| | |
| c.cassette_library_dir = 'fixtures/vcr_cassettes' | |
| c.hook_into :webmock |
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
| describe Woman do | |
| its(:mood) { should == [':)', ':(', ':***', ':|', ':__(', ':__)', ':/', ':-)', ':*', ':@'].choice } | |
| 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
| <r:children:slice slices="2"> | |
| <ul> | |
| <r:each> | |
| <li><r:title /></li> | |
| </r:each> | |
| </ul> | |
| </r:children:slice> |
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
| ca: | |
| errors: | |
| messages: | |
| not_found: "no s'ha trobat" | |
| already_confirmed: "ja està confirmat" | |
| not_locked: "no està bloquejat" | |
| devise: | |
| sessions: | |
| link: 'Iniciar sessió' |
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 it to your local vimrc | |
| " Toggle it with Shift+n | |
| let g:numberlock = 0 | |
| " Tried with inoremap 1 <S-1> but it wasn't working, so we'll have to set different layouts | |
| " Anyone knows how to fix it? | |
| let g:numberlock_layout = 'us' | |
| nnoremap <silent><F4> :call NumberLock()<CR> | |
| function! NumberLock() |
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
| # coding: utf-8 | |
| require 'rubygems' | |
| require 'nokogiri' | |
| require 'open-uri' | |
| require 'cgi' | |
| class Goear | |
| def self.find(song) | |
| puts "Searching for #{song}" | |
| url = "http://www.goear.com/search.php?q=#{CGI.escape(song)}" |
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
| http://wiki.github.com/aslakhellesoy/cucumber/ | |
| GET /aslakhellesoy/cucumber/ HTTP/1.1 | |
| Host: wiki.github.com | |
| HTTP/1.1 302 Found | |
| Server: nginx/0.7.67 | |
| Date: Wed, 03 Nov 2010 10:45:11 GMT | |
| Content-Type: text/html; charset=utf-8 |
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
| convert file.jpg -format %c -colors 8 -depth 24 histogram:info:- | sort -r -k 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
| Scenario: failing test when a helper has a class inside a module | |
| Given a file named "spec/helpers/with_class_helper_spec.rb" with: | |
| """ | |
| require "spec_helper" | |
| describe WithClassHelper do | |
| describe FooClass do | |
| it 'works' do | |
| helper.works.should be_true | |
| end |
OlderNewer