This file contains 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
Failures: | |
1) PostMover move_posts successfully moved to a new topic works correctly | |
Failure/Error: p2.topic_links.first.topic_id.should == new_topic.id | |
NoMethodError: | |
undefined method `topic_id' for nil:NilClass | |
# ./spec/models/post_mover_spec.rb:82:in `block (5 levels) in <top (required)>' | |
2) TopicLink external links works | |
Failure/Error: @topic.topic_links.count.should == 4 |
This file contains 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
1) ListController indexes allows users to filter on a set of topic ids | |
Failure/Error: parsed["topic_list"]["topics"].length.should == 1 | |
expected: 1 | |
got: 0 (using ==) | |
# ./spec/controllers/list_controller_spec.rb:35:in `block (3 levels) in <top (required)>' | |
2) Site omits categories users can not write to from the category list | |
Failure/Error: Site.new(Guardian.new(user)).categories.count.should == 2 | |
expected: 2 | |
got: 1 (using ==) |
This file contains 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
~/Poetry/fast_stack (master) → ber compile | |
mkdir -p lib/fast_stack | |
mkdir -p tmp/x86_64-darwin12.3.0/fast_stack/2.0.0 | |
cd tmp/x86_64-darwin12.3.0/fast_stack/2.0.0 | |
/Users/regis/.rvm/rubies/ruby-2.0.0-p195/bin/ruby -I. ../../../../ext/fast_stack/extconf.rb | |
creating Makefile | |
cd - | |
cd tmp/x86_64-darwin12.3.0/fast_stack/2.0.0 | |
make | |
compiling ../../../../ext/fast_stack/fast_stack.c |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.2/jquery.min.js"></script> | |
<script src="http://cdnjs.cloudflare.com/ajax/libs/handlebars.js/1.0.0-rc.4/handlebars.min.js"></script> | |
<script src="http://cdnjs.cloudflare.com/ajax/libs/ember.js/1.0.0-rc.4/ember.min.js"></script> | |
</head> | |
<style> | |
.rating { | |
unicode-bidi: bidi-override; |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.2/jquery.min.js"></script> | |
<script src="http://cdnjs.cloudflare.com/ajax/libs/handlebars.js/1.0.0-rc.4/handlebars.min.js"></script> | |
<script src="http://cdnjs.cloudflare.com/ajax/libs/ember.js/1.0.0-rc.4/ember.min.js"></script> | |
</head> | |
<body> | |
<script type="text/x-handlebars"> | |
{{outlet}} |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="//code.jquery.com/jquery-1.9.1.min.js"></script> | |
<script src="//cdnjs.cloudflare.com/ajax/libs/handlebars.js/1.0.0-rc.3/handlebars.js"></script> | |
<script src="//cdnjs.cloudflare.com/ajax/libs/ember.js/1.0.0-rc.3/ember.js"></script> | |
<script src="//maps.googleapis.com/maps/api/js?sensor=false"></script> | |
</head> | |
<body> | |
<script> |
This file contains 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 | |
# -*- coding: utf-8 -*- | |
import sys | |
import serial | |
import re | |
from datetime import datetime | |
import requests | |
temp = re.compile('<tmpr>(.+)</tmpr>') |
NewerOlder