A Ruby library for analyizing software technology trends from Hacker News whoishiring posts. Created by Ryan Williams (@ryanwi)
This is a personal development project, in particular for exploring redis. You are welcome to use, modify, etc. and I welcome any feedback or questions.
- Ruby (developed and tested on 2.1.1-p76)
- Redis
Install via RubyGems:
gem install hiringtrends
With a command line
[terminal window 1 - start redis server]
$ redis-server
[terminal window 2]
$ irb
require 'hiringtrends'
hn = HiringTrends::Program.new
hn.get_submissions
hn.get_comments_for_submissions
hn.analyze_submissions("https://gist.githubusercontent.com/ryanwi/6135845/raw/480a543d752285410fadc562346279a820c0b234/software-terms.dic")
hn.publish("June", "2014", "Tuesday", "3", 20)Ryan Williams