Steemit Wechat Group Ranking Statistics Update and API - SteemIt 好友微信群排行榜 支持显示数据统计和API了!

I have added an API to display the statistics for the members in the Steemit Wechat Group. The statistics are updated daily, and the data is returned as JSON.

https://uploadbeta.com/api/steemit/wechat/?cached

It will return something like this:

{“count”:175,”sbd”:{“max”:13327.625,”min”:0,”mean”:221.31464,”median”:8.81,”std”:1087.9571619885,”modes”:[0]},”sp”:{“max”:66844.898,”min”:0.5,”mean”:1551.9490628571,”median”:58.482,”std”:5946.6024767058,”modes”:[0]},”esp”:{“max”:847966.12199099,”min”:5.303,”mean”:18298.378448611,”median”:67.646634050596,”std”:98480.071820979,”modes”:[15]},”steem”:{“max”:1322.117,”min”:0,”mean”:19.082971428571,”median”:0,”std”:118.73648608133,”modes”:[0]},”value”:{“max”:106878.11127504,”min”:0.6997085,”mean”:2419.843576324,”median”:112.805610783,”std”:9297.029245956,”modes”:[0]},”age”:{“max”:502,”min”:3,”mean”:108.37714285714,”median”:53,”std”:132.00162571664,”modes”:[46]},”vp”:{“max”:100,”min”:9.94,”mean”:82.775542857143,”median”:95.75,”std”:22.0472821679,”modes”:[98]},”rep”:{“max”:74.83,”min”:3.52,”mean”:48.6112,”median”:50.83,”std”:13.473083102033,”modes”:[25]}}

And it is also updated daily on the web UI: https://helloacm.com/tools/steemit/wechat-ranking/

上两篇帖子讲了根据这个API

https://uploadbeta.com/api/steemit/wechat/?cached

来获得每天中文区微信成员的数据(等级,SP,投票能量等),然后进行初步数据统计:

这些数据如果直接放到网页版该多好啊!于是说到做到:

先加一个API 是个好习惯,因为这能让逻辑和表现层分开,可扩展性较强。

统计数据:https://uploadbeta.com/api/steemit/wechat/stats/?cached

同样支持日期参数,比如看 2017-08-31日的统计数据:

统计数据:https://uploadbeta.com/api/steemit/wechat/stats/?cached&date=2017-08-31

这API会返回JSON格式,也就是以下表(在网页端呈现 https://helloacm.com/tools/steemit/wechat/

加了一个最大,最小值 ,还有一个频率出现最多的 Mode, 比如帐号年龄在46天的最多,那天估计是被大哥给安利来的吧?

最后,再广告一下:

  1. SteemIt 好友微信群排行榜 需要入群者 请联系 @tumutanzi 或者 @rivalhw 谢谢。
  2. SteemIt 好友微信群文章列表 RSS Feed
  3. SteemIt 编程 Geek 微信群,请联系 @justyy 让我拉你入群。


Originally published at https://steemit.com Thank you for reading my post, feel free to Follow, Upvote, Reply, ReSteem (repost) @justyy which motivates me to create more quality posts.

原文首发于 https://Steemit.com 首发。感谢阅读,如有可能,欢迎Follow, Upvote, Reply, ReSteem (repost) @justyy 激励我创作更多更好的内容。

// Later, it will be reposted to my blogs: justyy.com, helloacm.com and codingforspeed.com 稍后同步到我的中文博客和英文计算机博客

近期热贴

Recent Popular Posts


Tags: cn cn-programming steemdev steemstem wechat


This page is synchronized from the post: Steemit Wechat Group Ranking Statistics Update and API - SteemIt 好友微信群排行榜 支持显示数据统计和API了!

The Average, Median, STD of SteemIt Wechat Group 数据初步分析系列 STEEM中文微信群排行榜单 - 中位数,平均,和标准方差


Image Credit SteemWhales.com

Abstract: I have improved this NodeJs script to compute the Median and STD for the members in the Steemit-Wechat Group. It reflects the fact that: the most wealth is posseseed by a few huge whales.

I am planning to put these statistists on the Daily SteemIt Wechat Group Ranking table. The median values help better understand where you are in the big pond (are you really a minnow?)

昨天半夜写的帖子目的是小试 NodeJs 牛刀, @rivalhw 和 @dapeng 给了非常好的建议: 平均值不太适合看大众水平,因为:贫富差距在 STEEM的世界里也是非常的明显,目测10%大鱼们掌握了90%的财富,所以如果取平均的话,指标都会偏高,不能反映实际情况。

是不是有很多歌唱比赛评委给分之后,选手的最终得分都得先“去掉一个最高分,去掉一个最低分”?不过在这里,你去掉一个最高最低也没有啥卵用,因为富得流油的远不止一个,穷得只剩下小裤衩的也有很多。

中位数

数学中的中位数(Median)指的是把所有需要统计的数值排序,然后取最中间那个(如果有奇数个数值),如果有偶数个,则取中间两个数来取平均。这个相对能反映出大众水平。

标准方差

标准方差 STD 反映了数据波动的情况,比如如果财富值的标准方差越大,则表示贫富差距大(离平均水平的波动区别)

NodeJs 程序 + SteemIt Wechat API

有了API,我们用 Node.Js 来跑跑,看看什么结果。 首先我们通过 prototype 的方式给 Javascript 中的数组来定义以上几个指标:
Let’s define these measured by extending Array’s prototype in Javascript:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Array.prototype.median = function() {
var arr = [...this];
var len = arr.length;
if (0 == len) {
return NaN;
}
arr.sort();
var mid = Math.floor(len / 2);
if ((len % 2) == 0) {
return (arr[mid] + arr[mid - 1]) * 0.5;
}
return arr[mid];
}

Array.prototype.mean = function() {
var total = 0;
for (var i = this.length - 1; i >= 0; -- i){
total += this[i];
}
return total / this.length;
}

Array.prototype.STD = function() {
var mean = this.mean();
var diff = [];
for (var j = this.length - 1; j >= 0; -- j){
diff.push(Math.pow((this[j] - mean), 2));
}
return (Math.sqrt(diff.reduce((a, b) => a + b) / this.length));
}

然后一样的套路:Then we just need to fetch the ranking table via the handy API.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// @justyy
var request = require("request")
var url = "https://uploadbeta.com/api/steemit/wechat/?cached";
request({
url: url,
json: true
}, function (error, response, body) {
if (!error && response.statusCode === 200) {
var total_rep = [];
var total_sbd = [];
var total_steem = [];
var total_value = [];
var total_esp = [];
var total_vp = [];
var total_sp = [];
body.forEach(function(member) {
total_rep.push(member['rep']);
total_sbd.push(member['sbd']);
total_steem.push(member['steem']);
total_value.push(member['value']);
total_esp.push(member['esp']);
total_vp.push(member['vp']);
total_sp.push(member['sp']);
});

console.log("----Median----");
console.log("Total Members = " + total_rep.length);
console.log("Median Reputation = " + Math.round(total_rep.median() * 100) / 100);
console.log("Median SBD = " + Math.round(total_sbd.median() * 100) / 100);
console.log("Median Steem = " + Math.round(total_steem.median() * 100) / 100);
console.log("Median Effective SP = " + Math.round(total_esp.median() * 100) / 100);
console.log("Median SP = " + Math.round(total_sp.median() * 100) / 100);
console.log("Median Voting Power = " + Math.round(total_vp.median() * 100) / 100);
console.log("Median Account Value = " + Math.round(total_value.median() * 100) / 100);

console.log("----Mean----");
console.log("Mean Reputation = " + Math.round(total_rep.mean() * 100) / 100);
console.log("Mean SBD = " + Math.round(total_sbd.mean() * 100) / 100);
console.log("Mean Steem = " + Math.round(total_steem.mean() * 100) / 100);
console.log("Mean Effective SP = " + Math.round(total_esp.mean() * 100) / 100);
console.log("Mean SP = " + Math.round(total_sp.mean() * 100) / 100);
console.log("Mean Voting Power = " + Math.round(total_vp.mean() * 100) / 100);
console.log("Mean Account Value = " + Math.round(total_value.mean() * 100) / 100);

console.log("----STD----");
console.log("STD Reputation = " + Math.round(total_rep.STD() * 100) / 100);
console.log("STD SBD = " + Math.round(total_sbd.STD() * 100) / 100);
console.log("STD Steem = " + Math.round(total_steem.STD() * 100) / 100);
console.log("STD Effective SP = " + Math.round(total_esp.STD() * 100) / 100);
console.log("STD SP = " + Math.round(total_sp.STD() * 100) / 100);
console.log("STD Voting Power = " + Math.round(total_vp.STD() * 100) / 100);
console.log("STD Account Value = " + Math.round(total_value.STD() * 100) / 100);
}
})

然后这是结果:And the results come out pretty quickly using NodeJs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
----Median----
Total Members = 173
Median Reputation = 50.83
Median SBD = 154.62
Median Steem = 0
Median Effective SP = 28.15
Median SP = 201.16
Median Voting Power = 93.72
Median Account Value = 2040.61
----Mean----
Mean Reputation = 48.56
Mean SBD = 224.75
Mean Steem = 18.99
Mean Effective SP = 18503.56
Mean SP = 1561.65
Mean Voting Power = 83.07
Mean Account Value = 2436.73
----STD----
STD Reputation = 13.5
STD SBD = 1093.16
STD Steem = 118.9
STD Effective SP = 99019.55
STD SP = 5977.72
STD Voting Power = 21.61
STD Account Value = 9344.65

简单来说:“大众”等级是 50.83,“大众” SP 是201.16,“大众”帐号估值是 2040.61
通过STD我们可以看到,SP,ESP,还有帐号估值的贫富差距还是挺大的。

最后,再广告一下:

  1. SteemIt 好友微信群排行榜
  2. SteemIt 好友微信群文章列表 RSS Feed
  3. SteemIt 编程 Geek 微信群,请联系 @justyy 让我拉你入群。

需要入群者 请联系 @tumutanzi 或者 @rivalhw 谢谢。


Originally published at https://steemit.com Thank you for reading my post, feel free to Follow, Upvote, Reply, ReSteem (repost) @justyy which motivates me to create more quality posts.

原文首发于 https://Steemit.com 首发。感谢阅读,如有可能,欢迎Follow, Upvote, Reply, ReSteem (repost) @justyy 激励我创作更多更好的内容。

// Later, it will be reposted to my blogs: justyy.com, helloacm.com and codingforspeed.com 稍后同步到我的中文博客和英文计算机博客

近期热贴

Recent Popular Posts


Tags: cn cn-programming steemit-api steemstem wechat


This page is synchronized from the post: The Average, Median, STD of SteemIt Wechat Group 数据初步分析系列 STEEM中文微信群排行榜单 - 中位数,平均,和标准方差

Daily Top 30 Authors in [CN] 每日cn社区之【优质内容机器人点赞记录】【请再给我一次机会】【过去7天潜在收益排行榜】 (2017-09-08)

数据来源: steemsql.com
生成时间: 2017-09-08 11:11:07 (UTC)
报告时间: 2017-09-04 11:11:07 (UTC) to 2017-09-05 11:11:07 (UTC)

2017-09-08 每日cn社区之 请再给我一次机会


(图片来源于网络)
| | 作者 Author| 文章 Post|
|———-|:————-:|:——|
| 1 | @demotruk | Translation of EOS Statement on Chinese ICO Situation |
| 2 | @yanes94 | Anime Character Drawing Challenge / 動漫人物畫畫比賽 |
| 3 | @shenchensucc | 我的上一个十年,14岁到24岁 |
| 4 | @bring | 故事新编 Old Tales Retold |
| 5 | @nationalpark | 欧洲签证的遭遇 The Nightmare of European Visa Application |
| 6 | @ivanshah | Defining Bitcoin User: Ignore Biased Online Surveys, Look at Bitcoin ATM Market |
| 7 | @superhardness | 世间百态–情怀与虚荣 |
| 8 | @angelababy | 动漫人物画画比赛 Anime Character Drawing Challenge |
| 9 | @initnas | 【Bon voyage】法国诺曼底,二战盟军登陆的地方 |
| 10 | @chl | Please attention:Don’t use blocktrades.us to sell your Steem Dollars |
符合条件的文章总数: 27

2017-09-08 Daily Authors in [CN] (Last 7 Days) 每日cn社区之 过去7天潜在收益排行榜

The following is the list of top 30 daily authors in [CN] in the last 7 days sorted by potential payout. See the SQL for more details.
这是根据这篇的SQL - 经少量修改和调整统计出过去7天作者的潜在收益排行。
| 排名 Rank| 作者 Author| 发贴数 Posts| 点赞数 Votes| 潜在收益 Pending Payout| 平均每贴收益 Average Pending Payout Per Post|
|–:|–:|–:|–:|—:|—:|
| 1| @oflyhigh | 6 | 2418 | 1771.70 |295.28 |
| 2| @deanliu | 7 | 1825 | 1585.00 |226.43 |
| 3| @rivalhw | 6 | 1249 | 1375.23 |229.20 |
| 4| @linuslee0216 | 8 | 1387 | 1333.85 |166.73 |
| 5| @htliao | 7 | 1447 | 1250.80 |178.69 |
| 6| @sweetsssj | 2 | 3095 | 1187.32 |593.66 |
| 7| @blackbunny | 7 | 956 | 1150.70 |164.39 |
| 8| @stacee | 6 | 1030 | 1123.89 |187.32 |
| 9| @myfirst | 5 | 892 | 965.96 |193.19 |
| 10| @tumutanzi | 6 | 1081 | 938.69 |156.45 |
| 11| @twinkledrop | 7 | 780 | 914.58 |130.65 |
| 12| @justyy | 19 | 1768 | 908.61 |47.82 |
| 13| @kitcat | 9 | 1095 | 891.63 |99.07 |
| 14| @elfkitchen | 6 | 1100 | 878.52 |146.42 |
| 15| @guyverckw | 8 | 990 | 832.82 |104.10 |
| 16| @birds90 | 7 | 936 | 768.69 |109.81 |
| 17| @jubi | 8 | 912 | 764.18 |95.52 |
| 18| @joythewanderer | 7 | 914 | 760.75 |108.68 |
| 19| @btsabc | 6 | 632 | 735.37 |122.56 |
| 20| @amylee | 4 | 419 | 652.74 |163.18 |
| 21| @jademont | 3 | 656 | 636.61 |212.20 |
| 22| @wilkinshui | 6 | 746 | 629.34 |104.89 |
| 23| @dapeng | 9 | 707 | 628.20 |69.80 |
| 24| @travelgirl | 14 | 1118 | 597.99 |42.71 |
| 25| @ace108 | 30 | 2720 | 583.72 |19.46 |
| 26| @krischy | 4 | 846 | 577.24 |144.31 |
| 27| @ygern | 2 | 521 | 548.99 |274.49 |
| 28| @nicolemoker | 3 | 704 | 547.20 |182.40 |
| 29| @aaronli | 6 | 784 | 517.32 |86.22 |
| 30| @liflorence | 7 | 654 | 494.49 |70.64 |

以上收益包括75%的作者收益(Author Rewards)和25%的点赞收益(Curation Rewards)。
@dailystats 提供过去7天全网潜在收益前30名的排名
check @dailystats for top 30 daily authors in the last 7 days sorted by potential payout

CN 区优质内容点赞机器人每天会为这30名作者点赞!
CN Good-Content-Body will upvote these authors every day!

近期机器人点赞记录 Recent Quality-Content-Upvote-Bot Upvoting History

这个机器人很善良,只想激励CN社区产生更多的优质内容。当然别忘记了,我本人人工也是会对未上榜的优质作者进行点赞的哟~
The quality-content-upvoting-bot motivates for more good contents in [CN], however, I will also upvote other authors if good content are produced.

2017-09-08 10:00:47 @justyy upvotes @liflorence/9cw0edzw (23.152469447011548%) with VP = 66.14991270574728%
2017-09-08 10:24:27 @justyy upvotes @jubi/4pnxy (35.66505296903837%) with VP = 64.84555085279703%
2017-09-08 11:24:39 @justyy upvotes @ace108/20170905-or-cjk-top-pending-payout-post-since-20170905-by-ace108 (29.48505580250913%) with VP = 65.52234622779807%
2017-09-08 11:30:21 @justyy upvotes @justyy/daily-top-30-authors-in-cn-cn7-2017-09-08 (42.17760879092423%) with VP = 64.8886289091142%
2017-09-08 11:31:02 @justyy upvotes @travelgirl/bwphotocontest-theme-food-1-osaka-japan-or-1 (28.952196226169765%) with VP = 64.3382138359328%
2017-09-08 11:36:12 @justyy upvotes @blackbunny/7gspqw (48.02257541793347%) with VP = 64.03010055724462%
2017-09-08 12:30:14 @justyy upvotes @oflyhigh/or-6 (51.3203990384458%) with VP = 64.15049879805724%
2017-09-08 13:30:53 @justyy upvotes @aaronli: @aaronli/hong-kong-snapshot-20-with-video-temple-street-a-place-of-enjoyment-and-also-signing-and-sobbing-1-20-1 (22.51%) with VP = 64.31%
2017-09-08 13:49:28 @justyy upvotes @ace108: @ace108/street-photography-contest-week-06-3-entries-catching-motions-or-3-by-ace108 (22.35%) with VP = 63.86%
2017-09-08 14:00:19 @justyy upvotes @stacee: @stacee/a-weekday-lunch-at-cafeteria (47.78%) with VP = 63.71%
2017-09-08 14:06:57 @justyy upvotes @wilkinshui: @wilkinshui/6w2s9x (28.44%) with VP = 63.19%
2017-09-08 14:26:01 @justyy upvotes @birds90: @birds90/my-photography-the-beautiful-cockscomb-flower-original (28.39%) with VP = 63.09%
2017-09-08 15:24:23 @justyy upvotes @elfkitchen: @elfkitchen/countryside-cuisine-big-steamed-dumplings (40.47%) with VP = 62.27%
2017-09-08 15:37:10 @justyy upvotes @btsabc: @btsabc/2017-9-5 (27.87%) with VP = 61.93%
2017-09-08 16:18:54 @justyy upvotes @ace108: @ace108/6-or-walkwithme-in-japanese-garden-by-ace108 (21.75%) with VP = 62.15%
2017-09-08 17:07:16 @justyy upvotes @ace108: @ace108/artchallenge-20-i-m-too-sexy-by-ace108 (21.89%) with VP = 62.53%
2017-09-08 17:30:28 @justyy upvotes @rivalhw: @rivalhw/chapter-79 (50.06%) with VP = 62.57%
2017-09-08 18:06:18 @justyy upvotes @tumutanzi: @tumutanzi/2oavyo (46.83%) with VP = 62.44%
2017-09-08 21:48:37 @justyy upvotes @justyy: @justyy/steemit-wechat-group-ranking-statistics-update-and-api-steemit-api (100.00%) with VP = 62.01%
2017-09-08 22:00:41 @justyy upvotes @joythewanderer: @joythewanderer/funfair-is-in-town-market-squares-full-of-rides-and-sweets (27.44%) with VP = 60.97%
2017-09-08 22:18:18 @justyy upvotes @kitcat: @kitcat/2br4gd (33.57%) with VP = 61.04%

每日’请再给我一次机会’ 排行榜几点说明:

  • 虽然现在是人工查询,但不排除以后使用机器人 或者一半机器人一半人工的方式生成报表。
  • 取的是发贴在3 到4天前的 10个较少收益(较少被关注)的帖子。
  • 为了避嫌,生成的结果去掉了 我自己的帖子 @justyy
  • 为了壮大 cn 社区,只选择 第一个标签为 cn 的文章。
  • 有可能会微调参数让结果更合理。
  • 查询SQL语句和参数暂时不公开,因为这样会更公平一些。
  • 以后可能会在每日榜单里加入一些其它的有意思的排行榜。
  • 这个不是荣誉榜!但希望这能帮到你!

这个报告的年龄为: 14天。 i.e. 发布的第一天, 发布的第二天
为什么要有这个报告?
欢迎 @justyy 如果您有好的建议或者想看哪些榜单却找不到。
Tags: #cn


This page is synchronized from the post: Daily Top 30 Authors in [CN] 每日cn社区之【优质内容机器人点赞记录】【请再给我一次机会】【过去7天潜在收益排行榜】 (2017-09-08)

你给SteemIt中文微信群拖后腿了么? Simple NodeJS Example to Show Average Scores in the Steemit-Wechat Group

I have shown a simple NodeJS example that calls the SteemIt Wechat API to get the daily ranking table e.g. @dailystats . The average scores for Reputation, Steem Power, Steem, Effective SP, Voting Power, SBD and Account values are calculated.

这年头不缺算法,就缺数据。这两天花了很多时间在整API上,整完之后自己用了一下还觉得真是挺方便的。今天就突然想看一看自己是否给大家拖后腿了,于是调用每日中文区微信群排行榜单的API,刷刷拿着 NodeJs 练手:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// @justyy
var request = require("request")
var url = "https://uploadbeta.com/api/steemit/wechat/?cached";

request({
url: url,
json: true
}, function (error, response, body) {
if (!error && response.statusCode === 200) {
var total = 0;
var total_rep = 0;
var total_sbd = 0;
var total_steem = 0;
var total_value = 0;
var total_esp = 0;
var total_vp = 0;
var total_sp = 0;
body.forEach(function(member) {
total ++;
total_rep += member['rep'];
total_sbd += member['sbd'];
total_steem += member['steem'];
total_value += member['value'];
total_esp += member['esp'];
total_vp += member['vp'];
total_sp += member['sp'];
});
console.log("Total Members = " + total);
console.log("Average Reputation = " + Math.round(total_rep / total * 100) / 100);
console.log("Average SBD = " + Math.round(total_sbd / total * 100) / 100);
console.log("Average Steem = " + Math.round(total_steem / total * 100) / 100);
console.log("Average Effective SP = " + Math.round(total_esp / total * 100) / 100);
console.log("Average SP = " + Math.round(total_sp / total * 100) / 100);
console.log("Average Voting Power = " + Math.round(total_vp / total * 100) / 100);
console.log("Average Account Value = " + Math.round(total_value / total * 100) / 100);
}
})

I use the NodeJs + sublime text 3 on windows to run the above Javascript code.

我是在WINDOWS 下用 sublime text 3 然后下载最新版的 NodeJS 来编写的。NodeJS 虽然是服务端的Javascript, 但是硬生生的被我拿来写些客户端的一些脚本。

需要使用 npm install request 来安装 request 包,代码很清楚 不需要我再过多的解释了。直接出结果:

你拖后腿了么?CN区一下子多了好多大鱼(包括代理SP),一下子把ESP平均指标给拉了上去。

最后,再广告一下:

  1. SteemIt 好友微信群排行榜
  2. SteemIt 好友微信群文章列表 RSS Feed
  3. SteemIt 编程 Geek 微信群,请联系 @justyy 让我拉你入群。

需要入群者 请联系 @tumutanzi 或者 @rivalhw 谢谢。


Originally published at https://steemit.com Thank you for reading my post, feel free to Follow, Upvote, Reply, ReSteem (repost) @justyy which motivates me to create more quality posts.

原文首发于 https://Steemit.com 首发。感谢阅读,如有可能,欢迎Follow, Upvote, Reply, ReSteem (repost) @justyy 激励我创作更多更好的内容。

// Later, it will be reposted to my blogs: justyy.com, helloacm.com and codingforspeed.com 稍后同步到我的中文博客和英文计算机博客

近期热贴

Recent Popular Posts


Tags: cn cn-programming steemit-api nodejs


This page is synchronized from the post: 你给SteemIt中文微信群拖后腿了么? Simple NodeJS Example to Show Average Scores in the Steemit-Wechat Group

今天用了机器人给经理请了假 The Zenefit Bot on Slack

I used the Zenefit Bot on Slack today to apply for a day off work. It is not a real bot as it does not fully understand input other than pre-defined patterns. However, I still like this idea because it is convenient.

公司内部聊天工具是 Slack ,功能非常强大,曾一度差点被微软收购,这聊天工具的强大之处就在于开放接口,可以很方便的整合第三方的工具,比如 IFTTT、GOOGLE DRIVE、 DROPBOX等。之前通过IFTTT把SLACKSTEEM 钱包的更新结合起来很方便的在SLACK上得到了消息推送。今天我又发现一好玩的,就是整合公司请假申请 用的系统 Zenefit。

之前请假都得二步验证登陆网页系统很不方便,现在可以直接在Slack上和 Zenefit 聊天,比如说 request time off 就可以开启请假的步骤,一步一步机器人会问你请假理由(事假病假还是在家办公),然后你可以很人性的说我下周五请假,在最后面会让你确认之后就会发给你的经理。

当然这货在回答问题的时候并不智能,可以理解为并不是一个真正意义上的机器人,只是一个检测输入然后做相应事情的程序,比如我临时改变主意了却不能中途取消。

一旦开始,就不能结束,非得让你把“请假”的流程走完,还好最后面可以取消发送。

这“机器人”别说有心了,连脑子都没有,不过我还是挺喜欢它的,因为请假的确省事了不少。


Originally published at https://steemit.com Thank you for reading my post, feel free to Follow, Upvote, Reply, ReSteem (repost) @justyy which motivates me to create more quality posts.

原文首发于 https://Steemit.com 首发。感谢阅读,如有可能,欢迎Follow, Upvote, Reply, ReSteem (repost) @justyy 激励我创作更多更好的内容。

// Later, it will be reposted to my blogs: justyy.com, helloacm.com and codingforspeed.com 稍后同步到我的中文博客和英文计算机博客

近期热贴

Recent Popular Posts


Tags: cn slack zenefit


This page is synchronized from the post: 今天用了机器人给经理请了假 The Zenefit Bot on Slack

Daily Top 30 Authors in [CN] 每日cn社区之【请再给我一次机会】+【过去7天潜在收益排行榜】 (2017-09-07)

数据来源: steemsql.com
生成时间: 2017-09-07 11:11:07 (UTC)
报告时间: 2017-09-03 11:11:07 (UTC) to 2017-09-04 11:11:07 (UTC)

2017-09-07 每日cn社区之 请再给我一次机会


(图片来源于网络)
| | 作者 Author| 文章 Post|
|———-|:————-:|:——|
| 1 | @susanli3769 | 学画- 窗帘和皱褶的画法 |
| 2 | @nationalpark | 现代聊斋之三:前生今世 ?? |
| 3 | @incrediblesnow | 4/9/2017 Cn-abuse 的报告 ( Report for Cn-abuse on 4/9/2017) |
| 4 | @michellelee | Travel to Japan #2 - Tokyo Disneyland 2-2 |
| 5 | @cain1914 | 給你一點困難去贏 |
| 6 | @sdd | Guide to the best tourist spots in Seoul - South Korea 首爾 - 韓國最佳旅遊景點指南 إلى أفضل الأماكن السياحية في سيول – كوريا الجنوبية |
| 7 | @hannahwu | 活出自我,活出精彩 《玩具总动员》电影点名 #5 |
| 8 | @travel-addict | Art or Science? Why not both?@Singapore Art Science Museum艺术与科学不能并存?@新加坡艺术科学博物馆 |
| 9 | @xuran | Steemit FAQ 中文翻译(11)Blockchain 区块链 |
| 10 | @sphenix | 馬國放假 #2:伊斯兰教日历的第一天的假期。。。是的又在假期…..稍微会”肮脏”面 |
符合条件的文章总数: 13

2017-09-07 Daily Authors in [CN] (Last 7 Days) 每日cn社区之 过去7天潜在收益排行榜

The following is the list of top 30 daily authors in [CN] in the last 7 days sorted by potential payout. See the SQL for more details.
这是根据这篇的SQL - 经少量修改和调整统计出过去7天作者的潜在收益排行。
| 排名 Rank| 作者 Author| 发贴数 Posts| 点赞数 Votes| 潜在收益 Pending Payout| 平均每贴收益 Average Pending Payout Per Post|
|–:|–:|–:|–:|—:|—:|
| 1| @oflyhigh | 7 | 2725 | 1895.38 |270.77 |
| 2| @rivalhw | 8 | 1702 | 1812.16 |226.52 |
| 3| @deanliu | 7 | 1788 | 1430.33 |204.33 |
| 4| @blackbunny | 8 | 1012 | 1265.47 |158.18 |
| 5| @htliao | 7 | 1364 | 1163.14 |166.16 |
| 6| @linuslee0216 | 7 | 1198 | 1138.10 |162.59 |
| 7| @stacee | 6 | 1005 | 1068.49 |178.08 |
| 8| @sweetsssj | 2 | 2833 | 1063.11 |531.56 |
| 9| @elfkitchen | 8 | 1204 | 1041.86 |130.23 |
| 10| @tumutanzi | 7 | 1200 | 1028.60 |146.94 |
| 11| @twinkledrop | 7 | 829 | 962.05 |137.44 |
| 12| @kitcat | 9 | 1050 | 892.10 |99.12 |
| 13| @justyy | 18 | 1633 | 849.11 |47.17 |
| 14| @btsabc | 6 | 632 | 752.10 |125.35 |
| 15| @myfirst | 4 | 728 | 748.97 |187.24 |
| 16| @joythewanderer | 7 | 890 | 714.57 |102.08 |
| 17| @jubi | 7 | 832 | 694.86 |99.27 |
| 18| @guyverckw | 7 | 857 | 694.42 |99.20 |
| 19| @birds90 | 6 | 801 | 652.07 |108.68 |
| 20| @someone | 3 | 704 | 639.02 |213.01 |
| 21| @travelgirl | 14 | 1160 | 635.32 |45.38 |
| 22| @jademont | 3 | 591 | 610.67 |203.56 |
| 23| @aaronli | 7 | 887 | 609.67 |87.10 |
| 24| @bxt | 5 | 585 | 598.62 |119.72 |
| 25| @krischy | 4 | 835 | 544.24 |136.06 |
| 26| @liflorence | 7 | 648 | 542.64 |77.52 |
| 27| @rea | 2 | 746 | 536.39 |268.19 |
| 28| @wilkinshui | 5 | 621 | 523.04 |104.61 |
| 29| @victorier | 5 | 600 | 513.56 |102.71 |
| 30| @ygern | 2 | 485 | 511.54 |255.77 |

以上收益包括75%的作者收益(Author Rewards)和25%的点赞收益(Curation Rewards)。
@dailystats 提供过去7天全网潜在收益前30名的排名
check @dailystats for top 30 daily authors in the last 7 days sorted by potential payout

CN 区优质内容点赞机器人每天会为这30名作者点赞!
CN Good-Content-Body will upvote these authors every day!

每日’请再给我一次机会’ 排行榜几点说明:

  • 虽然现在是人工查询,但不排除以后使用机器人 或者一半机器人一半人工的方式生成报表。
  • 取的是发贴在3 到4天前的 10个较少收益(较少被关注)的帖子。
  • 为了避嫌,生成的结果去掉了 我自己的帖子 @justyy
  • 为了壮大 cn 社区,只选择 第一个标签为 cn 的文章。
  • 有可能会微调参数让结果更合理。
  • 查询SQL语句和参数暂时不公开,因为这样会更公平一些。
  • 以后可能会在每日榜单里加入一些其它的有意思的排行榜。
  • 这个不是荣誉榜!但希望这能帮到你!

这个报告的年龄为: 13天。 i.e. 发布的第一天, 发布的第二天
为什么要有这个报告?
欢迎 @justyy 如果您有好的建议或者想看哪些榜单却找不到。
Tags: #cn


This page is synchronized from the post: Daily Top 30 Authors in [CN] 每日cn社区之【请再给我一次机会】+【过去7天潜在收益排行榜】 (2017-09-07)

Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×