Dashboard: Hacker News Jobs
This report answers the following questions:
- How many jobs have been posted in the last 10 days?
 - Which roles and technologies have been mentioned in recent jobs?
 - What are the details of each job?
 
This dashboard contains 1 table.
Usage
Install the mod:
mkdir dashboardscd dashboardspowerpipe mod initpowerpipe mod install github.com/turbot/steampipe-mod-hackernews-insightsStart the Powerpipe server:
steampipe service startpowerpipe serverOpen http://localhost:9033 in your browser and select Hacker News Jobs dashboard.
You could also snapshot and share results via Turbot Pipes:
powerpipe loginpowerpipe dashboard run hackernews_insights.dashboard.hackernews_jobs --shareQueries
This dashboard uses the the following queries:
select  to_char(time::timestamptz, 'YYYY-MM-DD') as day,  count(*)from  hackernews_jobwhere  time::timestamptz > now() - interval '10 day'group by  dayorder by  day;