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 Promise = require('bluebird'); | |
| var Feedbin = Promise.promisifyAll(require('feedbinjs')); | |
| var _ = require('lodash'); | |
| var r = require('rethinkdb'); | |
| var connection = null; | |
| var fb = null; | |
| r.connect({host: 'localhost', port: 28015}) | |
| .then(function(conn) { connection = conn; }) | 
  
    
      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
    
  
  
    
  | <system.net> | |
| <mailSettings> | |
| <smtp deliveryMethod="SpecifiedPickupDirectory"> | |
| <specifiedPickupDirectory pickupDirectoryLocation="c:\temp\"></specifiedPickupDirectory> | |
| </smtp> | |
| </mailSettings> | |
| </system.net> | |
  
    
      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
    
  
  
    
  | fib = [1,2] | |
| begin | |
| fib.push(fib[fib.length-1]+fib[fib.length-2]) | |
| end while fib[fib.length-1]<4000000 | |
| puts "size: #{fib.length}" | |
| fib.each do |f| | |
| puts f if f%2==0 |