惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

T
The Blog of Author Tim Ferriss
Know Your Adversary
Know Your Adversary
P
Palo Alto Networks Blog
D
Darknet – Hacking Tools, Hacker News & Cyber Security
K
Kaspersky official blog
L
LINUX DO - 热门话题
P
Proofpoint News Feed
P
Privacy & Cybersecurity Law Blog
Google DeepMind News
Google DeepMind News
Attack and Defense Labs
Attack and Defense Labs
Cisco Talos Blog
Cisco Talos Blog
AI
AI
L
LINUX DO - 最新话题
H
Heimdal Security Blog
Hacker News: Ask HN
Hacker News: Ask HN
Webroot Blog
Webroot Blog
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
The GitHub Blog
The GitHub Blog
I
Intezer
Blog — PlanetScale
Blog — PlanetScale
有赞技术团队
有赞技术团队
S
Securelist
博客园_首页
IT之家
IT之家
Schneier on Security
Schneier on Security
博客园 - 叶小钗
罗磊的独立博客
WordPress大学
WordPress大学
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
MongoDB | Blog
MongoDB | Blog
P
Proofpoint News Feed
阮一峰的网络日志
阮一峰的网络日志
A
Arctic Wolf
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
W
WeLiveSecurity
The Register - Security
The Register - Security
D
DataBreaches.Net
S
Security @ Cisco Blogs
Security Archives - TechRepublic
Security Archives - TechRepublic
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
腾讯CDC
Recorded Future
Recorded Future
NISL@THU
NISL@THU
N
News and Events Feed by Topic
T
Tailwind CSS Blog
N
News and Events Feed by Topic
Cyberwarzone
Cyberwarzone
T
Tor Project blog
www.infosecurity-magazine.com
www.infosecurity-magazine.com

Emil Burzo

GPS spoofing teleported me to Peru, mid-flight Running Claude Code dangerously (safely) Reverse engineering the Nest home/away API Tracking down an old OkHttp regression Cum se plătesc impozitele PFA prin BT24 Work-around for when keyserver.ubuntu.com is down Creating a tailable cursor on MongoDB 3 with the Java driver API Quick fix for CVE-2015-1328 Analiza parcului auto din România Setting up gitolite on Ubuntu 12.04 LTS
What does StackOverflow's personalized prediction data think of you?
2016-06-21 · via Emil Burzo

While reading David’s “One year as a Data Scientist at Stack Overflow”, I’ve learned about one of their products: Providence (a system for matching users to jobs they’ll be interested in).

Not sure why I’ve never heard about it before, but anyway, I was curious to see what it learned about me.

Luckily that wasn’t very hard, since they offer a way to download your personal providence data.

You get a nice JSON file, with TagViews and InterestingTags being the interesting part with the technology/scores.

We could create a small app to parse and sort, but I’m lazy so here’s a quick bash one-liner for a top 10 for TagViews:

grep '^   \"' "Stack Exchange personalized prediction data 2016-06-21.json" | sort -nr -t ":" -k2 | head -n 10

And for InterestingTags:

grep '^    \"' "Stack Exchange personalized prediction data 2016-06-21.json" | sort -r -t ":" -k2 | head -n 10

For me, the results are pretty spot on.

"java": 214,  
"android": 88,  
"gwt": 87,  
"javascript": 43,  
"json": 26,  
"mongodb": 25,  
"linux": 24,  
"python": 22,  
"bash": 18,  
"jquery": 17,

and

"nginx": 0.529183447360992,  
"android": 0.402329504489899,  
"java": 0.278640985488892,  
"linux": 0.0971642881631851,  
"javascript": 0.0780074372887611,  
"networking": 0.0450629182159901,  
"jquery": 0.0448367521166801,  
"ubuntu": 0.0409384779632092,  
"html": 0.0403672903776169,  
"php": 0.0382767021656036,

Nice!