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
Debasish-Boses-MacBook-Pro:blog quantum19812001$ rails g hobo:migration | |
/Users/quantum19812001/Projects/ror-test/blog/vendor/plugins/hobo_fields/lib/hobo_fields/model.rb:95:in `belongs_to': undefined method `foreign_key' for #<ActiveRecord::Reflection::AssociationReflection:0x1023ea488> (NoMethodError) | |
from /Users/quantum19812001/Projects/ror-test/blog/app/models/order.rb:6 | |
from /Users/quantum19812001/.rvm/gems/ruby-1.8.7-p352@ror-test/gems/activesupport-3.0.3/lib/active_support/dependencies.rb:454:in `load' | |
from /Users/quantum19812001/.rvm/gems/ruby-1.8.7-p352@ror-test/gems/activesupport-3.0.3/lib/active_support/dependencies.rb:454:in `load_file' | |
from /Users/quantum19812001/.rvm/gems/ruby-1.8.7-p352@ror-test/gems/activesupport-3.0.3/lib/active_support/dependencies.rb:596:in `new_constants_in' | |
from /Users/quantum19812001/.rvm/gems/ruby-1.8.7-p352@ror-test/gems/activesupport-3.0.3/lib/active_support/dependencies.rb:453:in `load_file' | |
from /Users/quantum19812001/.rvm/gems/ruby-1.8.7-p352@ror-test/gems/act |
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
# http://www.thisisthegreenroom.com/2011/installing-python-numpy-scipy-matplotlib-and-ipython-on-lion/#homebrew | |
brew install python | |
brew install gfortran | |
# Error: Library not loaded: | |
sudo ln -s /opt/X11/lib/libpng14.14.dylib /opt/local/lib/libpng14.14.dylib | |
sudo ln -s /opt/X11/lib/libfreetype.6.dylib /opt/local/lib/libfreetype.6.dylib | |
git clone https://github.com/numpy/numpy.git numpy |
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
df$CLASSWKR_f <- factor(df$CLASSWKR, | |
levels=c(0,10,13,14,20,21,22,23,24,25,26,27,28,29,99), | |
labels=c("NIU", | |
"Self-employed", | |
"Self-employed, not incorporated", | |
"Self-employed, incorporated", | |
"Works for wages or salary", | |
"Wage/salary, private", | |
"Private, for profit", | |
"Private, nonprofit", |
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
const BTCMarkets = require('btc-markets') | |
const async = require('async') | |
const _ = require('lodash') | |
const schedule = require('node-schedule') | |
const winston = require('winston') | |
const os = require('os') | |
const log = winston.createLogger({ | |
transports: [ | |
new (winston.transports.File)({ |
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
import pandas as pd | |
import numpy as np | |
import matplotlib.pyplot as plt | |
from pandas_datareader import data as pdr | |
from datetime import datetime | |
import quandl | |
# Define the time range for data collection | |
start = datetime(2010, 1, 1) | |
end = datetime(2024, 1, 1) |