create account

Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply by holger80

View this thread on: hive.blogpeakd.comecency.com
· @holger80 · (edited)
$71.86
Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply
![](https://cdn.steemitimages.com/DQmVhhf7x6ovMeN9qLV7HSPjNea7FM81rMB9Kkt7wu5sT9F/image.png)
## Repository
https://github.com/holgern/steembasicincome

## Blacklist database added
A new blacklist database with a `tags`, `apps` and `body` field was added.
![image.png](https://ipfs.busy.org/ipfs/QmWuD9S6E5HhoTxo4Tr5DkMX4tdi9cirEBikw7s2b1Yxa6)
The blacklisted tags,apps and keywords can be changed anytime directly in the database.

The fields are read out in `sbi_stream_post_comment.py` and three lists were build:
```
    blacklist = blacklistStorage.get()
    
    blacklist_tags = []
    for t in blacklist["tags"].split(","):
        blacklist_tags.append(t.strip())
    
    blacklist_apps = []
    for t in blacklist["apps"].split(","):
        blacklist_apps.append(t.strip())

    blacklist_body = []
    for t in blacklist["body"].split(","):
        blacklist_body.append(t.strip())
```

The tags from the posts are then checked of one is stored in `blacklist_tags`.
If a blacklisted tag was found, the post will be skipped.
```
for tag in c["tags"]:
    if tag is not None and tag.lower() in blacklist_tags:
        skip = True
```

In the next step the app, which was used to create the post, is extracted. As there are some different ways to store the app, the script is doing some checks first:

```
json_metadata = c.json_metadata
if isinstance(json_metadata, str):
    try:
        json_metadata = json.loads(json_metadata)
    except:
        json_metadata = {}
if "app" in json_metadata:
    app = json_metadata["app"]
    if isinstance(app, dict) and "name" in app:
        app = app["name"]
    if app is not None and isinstance(app, str) and app.find("/") > -1:
        app = app.split("/")[0]
    if app is not None and isinstance(app, str) and app.lower() in blacklist_apps:
        skip = True
```
Finally, the body is scanned for blacklisted words. This is useful for letting a member disabling upvotes for a specific comment, as it is not easily possible to attach tags to a comment (which could be used for disabling upvotes on the comment instead).
```
for s in blacklist_body:
    if c.body.find(s) > -1:
        skip = True
```

## Sending automatic enrollment transfer memos to new members

Enrollment to new member is now done automatically. A new database `transfer_memos` has been added, in which the memo text for the diffect memo transfer types `welcome` (is sent to new members), `sponsoring` (is sent to new sponsored members), `sp_delegation` (can be sent when a member is delegating SP), `update_rshares` (can be sent when a member increases their shares), `sponsoring_update_rshares` (can be sent when a member is sponsored and receive more shares).

![image.png](https://ipfs.busy.org/ipfs/QmPCFmfXjk38uSCQEK7s6GH9D8iohH3igjs8jkeEYmvftB)

For each type a new function was created:
```
def memo_sponsoring(transferMemos, memo_transfer_acc, s, sponsor):
    if "sponsoring" not in transferMemos:
        return
    if transferMemos["sponsoring"]["enabled"] == 0:
        return
    if memo_transfer_acc is None:
        return    
    try:
        if "%s" in transferMemos["sponsoring"]["memo"]:
            memo_text = transferMemos["sponsoring"]["memo"] % sponsor
        else:
            memo_text = transferMemos["sponsoring"]["memo"]
        memo_transfer_acc.transfer(s, 0.001, "STEEM", memo=memo_text)
    except:
        print("Could not sent 0.001 STEEM to %s" % s)
```
The try/except check prevents the script from crashing when for example the active key is wrong, not sufficient STEEM are left on the account or the RC is to low.

It is checked every 144 minutes in `sbi_update_member_db.py` if new members should be enrolled or if existing member are increasing their sbi units. It is now possible to send everytime a 0.001 STEEM memo with a configurable memo text (the sponsoring account name and the sbi units are added and a %s / %d placeholder is used. A memo is only sent when it is enabled by setting `enabled` to 1 in the database.

## Improved sbi status replies.
The reply of the `!sbi status` command has been enhanced. 
![image.png](https://ipfs.busy.org/ipfs/QmYCPXJGS9n65wTw9DbTN5ZrUqWBpHSzv9zZTwG3cqQiqz)

The percentage of `subscribed_rshares`, `delegation_rshares`, `curation_rshares` and `other_rshares` which build the total SBI upvote value is now shown in the reply to a comment containing `!sbi status`.

## Commits
### new sql table structure
* [commit b17de96](https://github.com/holgern/steembasicincome/commit/b17de9658b1b8ea4f1d6cc455299ba6c1d6f4d3e)
### Improve reply layout
* [commit f7b771e](https://github.com/holgern/steembasicincome/commit/f7b771e216da778f306134326eac8b2528d97017)
### Add transfer memo database and sending transfers to new members
* [commit 2b7bbcb](https://github.com/holgern/steembasicincome/commit/2b7bbcb131302a85f613e74d652bc8e6b5cba492)
* Add flag for transfer memo account
* Implement transfer memo functions for the different memo types (welcome, sponsoring, update_shares and sponsoring_update_shares)
### Add blacklist database
* [commit 2cedbb2](https://github.com/holgern/steembasicincome/commit/2cedbb2a58f38993217dfdd973b96e6a24216204)
* votes on posts with a blacklisted content word, a blacklisted tag or app are skipped
* sbi status reply improved, it is now shown from where the sbi upvote value is build

## GitHub Account
https://github.com/holgern
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 236 others
properties (23)
authorholger80
permlinkupdate-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply
categoryutopian-io
json_metadata"{"community": "busy", "app": "beempy/0.23.10", "format": "markdown", "tags": ["utopian-io", "development", "steembasicincome", "steemdev", "busy"], "users": [], "links": ["https://github.com/holgern/steembasicincome", "https://github.com/holgern/steembasicincome/commit/b17de9658b1b8ea4f1d6cc455299ba6c1d6f4d3e", "https://github.com/holgern/steembasicincome/commit/f7b771e216da778f306134326eac8b2528d97017", "https://github.com/holgern/steembasicincome/commit/2b7bbcb131302a85f613e74d652bc8e6b5cba492", "https://github.com/holgern/steembasicincome/commit/2cedbb2a58f38993217dfdd973b96e6a24216204", "https://github.com/holgern"], "image": ["https://cdn.steemitimages.com/DQmVhhf7x6ovMeN9qLV7HSPjNea7FM81rMB9Kkt7wu5sT9F/image.png", "https://ipfs.busy.org/ipfs/QmWuD9S6E5HhoTxo4Tr5DkMX4tdi9cirEBikw7s2b1Yxa6", "https://ipfs.busy.org/ipfs/QmPCFmfXjk38uSCQEK7s6GH9D8iohH3igjs8jkeEYmvftB", "https://ipfs.busy.org/ipfs/QmYCPXJGS9n65wTw9DbTN5ZrUqWBpHSzv9zZTwG3cqQiqz"], "canonical_url": "https://hive.blog/utopian-io/@holger80/update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply"}"
created2019-03-18 13:41:51
last_update2020-05-23 14:30:54
depth0
children48
last_payout2019-03-25 13:41:51
cashout_time1969-12-31 23:59:59
total_payout_value55.726 HBD
curator_payout_value16.134 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5,374
author_reputation358,857,509,568,825
root_title"Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,516,791
net_rshares107,094,044,671,299
author_curate_reward""
vote details (300)
@abitcoinskeptic ·
Always a pleasure having you around here.
!sbi status

Posted using [Partiko Android](https://partiko.app/referral/abitcoinskeptic)
properties (22)
authorabitcoinskeptic
permlinkabitcoinskeptic-re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t134949837z
categoryutopian-io
json_metadata{"app":"partiko","client":"android"}
created2019-03-18 13:50:21
last_update2019-03-18 13:50:21
depth1
children1
last_payout2019-03-25 13:50:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length131
author_reputation335,387,091,612,941
root_title"Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,517,223
net_rshares0
@sbi6 ·
$0.09
Hi @abitcoinskeptic!

* you have 60 units and 50 bonus units
* your rshares balance is 1394813989624 or 0.993 $
* your next SBI upvote is predicted to be 0.199 $


Structure of your total SBI vote value:
* 23.86 % has come from your subscription level
* 18.67 % has come from your bonus units
* 54.32 % has come from upvoting rewards
* 3.15 % has come from new account bonus or extra value from pre-automation rewards
<br>
Did you know Steem Basic Income has a [Quality Policy](https://steemit.com/steem/@steembasicincome/sbi-responsible-voting-and-following)?
πŸ‘  , , , , , , ,
properties (23)
authorsbi6
permlinkre-abitcoinskeptic-re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t134949837z-20190318t135126z
categoryutopian-io
json_metadata"{"app": "steembasicincome/0.1.2"}"
created2019-03-18 13:51:27
last_update2019-03-18 13:51:27
depth2
children0
last_payout2019-03-25 13:51:27
cashout_time1969-12-31 23:59:59
total_payout_value0.074 HBD
curator_payout_value0.015 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length560
author_reputation4,717,064,898,862
root_title"Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,517,281
net_rshares143,091,587,870
author_curate_reward""
vote details (8)
@acyaasd113 ·
Bitcoin is the biggest currency in cyberspace

Posted using [Partiko Android](https://partiko.app/referral/acyaasd113)
properties (22)
authoracyaasd113
permlinkacyaasd113-re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t140950737z
categoryutopian-io
json_metadata{"app":"partiko","client":"android"}
created2019-03-18 14:10:09
last_update2019-03-18 14:10:09
depth1
children0
last_payout2019-03-25 14:10:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length118
author_reputation-164,127,979,669
root_title"Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,518,184
net_rshares0
@amico ·
$0.04
Thanks for your efforts, @holger80!

!sbi-a status
!sbi status

Posted using [Partiko Android](https://partiko.app/referral/amico)
πŸ‘  
properties (23)
authoramico
permlinkamico-re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t135900110z
categoryutopian-io
json_metadata{"app":"partiko","client":"android"}
created2019-03-18 13:59:03
last_update2019-03-18 13:59:03
depth1
children8
last_payout2019-03-25 13:59:03
cashout_time1969-12-31 23:59:59
total_payout_value0.030 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length130
author_reputation51,076,240,298,517
root_title"Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,517,637
net_rshares60,584,474,934
author_curate_reward""
vote details (1)
@sbi9 ·
$0.09
Hi @amico!

* you have 156 units and 685 bonus units
* your rshares balance is 1458346260582 or 1.039 $
* as you did not write a post within the last 7 days, your comments will be upvoted.
* your next SBI upvote is predicted to be 0.042 $


Structure of your total SBI vote value:
* 8.63 % has come from your subscription level
* 83.76 % has come from your bonus units
* 7.05 % has come from upvoting rewards
* 0.56 % has come from new account bonus or extra value from pre-automation rewards
<br>
Did you know Steem Basic Income has a [Quality Policy](https://steemit.com/steem/@steembasicincome/sbi-responsible-voting-and-following)?
πŸ‘  , , , , , ,
properties (23)
authorsbi9
permlinkre-amico-re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t135900110z-20190318t140036z
categoryutopian-io
json_metadata"{"app": "steembasicincome/0.1.2"}"
created2019-03-18 14:00:36
last_update2019-03-18 14:00:36
depth2
children7
last_payout2019-03-25 14:00:36
cashout_time1969-12-31 23:59:59
total_payout_value0.066 HBD
curator_payout_value0.019 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length635
author_reputation4,798,471,463,422
root_title"Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,517,720
net_rshares128,681,699,219
author_curate_reward""
vote details (7)
@amico ·
$0.07
> - as you did not write a post within the last 7 days, your comments will be upvoted.

Is it a bug, @holger80?

Posted using [Partiko Android](https://partiko.app/referral/amico)
πŸ‘  ,
properties (23)
authoramico
permlinkamico-re-sbi9-re-amico-re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t140036z-20190318t141544669z
categoryutopian-io
json_metadata{"app":"partiko","client":"android"}
created2019-03-18 14:15:45
last_update2019-03-18 14:15:45
depth3
children6
last_payout2019-03-25 14:15:45
cashout_time1969-12-31 23:59:59
total_payout_value0.051 HBD
curator_payout_value0.016 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length179
author_reputation51,076,240,298,517
root_title"Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,518,460
net_rshares99,211,100,613
author_curate_reward""
vote details (2)
@art-universe ·
Ich versteh einfach immer nur Bahnhof wenn ich da reinlese... Mir ist zwar klar, dass es hauptsΓ€chlich WENN...DANN Funktionen sind, Ausnahmen gebildet werden, die StrΓ€nge in bestimmte Richtungen gelenkt werden und Logik die Basis, aber es ist halt doch eine Fremdsprache fΓΌr mich :-D

Wie lange machst du denn schon JS? Was schΓ€tzt du wie lange ein Neuling lernen muss, um solide was programmieren zu kΓΆnnen? Welche Umwege wΓΌrdest rΓΌckblickend vermeiden und welche Fragen sollte sich ein Neuling gleich zu Beginn stellen?

LG Martin
properties (22)
authorart-universe
permlinkre-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t224611655z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2019-03-18 22:46:12
last_update2019-03-18 22:46:12
depth1
children3
last_payout2019-03-25 22:46:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length532
author_reputation76,020,896,885,556
root_title"Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,541,251
net_rshares0
@holger80 ·
$0.03
Ich programmiere in Python seit 2015, habe aber vorher schon C/C++ programmiert. 
Die erste Frage, die man sich stellen sollte, ist in welcher Programmiersprache man loslegen will. Python oder JS. Ich würde den Ansatz learning by doing befolgen, dicke Programmierbücher zu lesen ist nur von beschrÀnken nutzen (und macht keinen Spaß). Am besten online tutorials:
https://www.learnpython.org/ oder https://www.learn-js.org/
πŸ‘  ,
properties (23)
authorholger80
permlinkre-art-universe-re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t225813144z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"steempeak","app":"steempeak/1.8.4b"}
created2019-03-18 22:58:15
last_update2019-03-18 22:58:15
depth2
children1
last_payout2019-03-25 22:58:15
cashout_time1969-12-31 23:59:59
total_payout_value0.028 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length423
author_reputation358,857,509,568,825
root_title"Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,541,698
net_rshares56,043,384,077
author_curate_reward""
vote details (2)
@art-universe · (edited)
Ok wow, dann bist du ja wirklich gut aufgestellt mit C, Python und JS. 

Witzig dass du es ansprichst, hab mit 16 Visual Basic angefangen und wollte auch C anfangen, aber genau die fetten BΓΌcher waren mir eben zu trocken, was mich abgeschreckt hat. Damals gabs ja nicht wirklich Seiten wie learnpython, was mir ΓΌbrigens kein Begriff war bis jetzt.

Naja damals gabs ja auch noch das gute alte technisch-singende Einwahlmodem :-D Hat sich schon viel verΓ€ndert. Was die nΓ€chsten 20 Jahre wohl so bringen unter der exponentiellen Entwicklung?

Manchmal reizt es mich schon noch sehr, was zu lernen in dem Bereich. Werd mir mal die empfohlenen Seiten anschauen. Danke dir fΓΌr die Antwort!
properties (22)
authorart-universe
permlinkre-holger80-re-art-universe-re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t230555915z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2019-03-18 23:05:54
last_update2019-03-18 23:16:27
depth3
children0
last_payout2019-03-25 23:05:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length684
author_reputation76,020,896,885,556
root_title"Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,542,004
net_rshares0
@holger80 ·
$0.04
Ach so, wichtig ist es ein konkretes Projekt zu haben, welches man unbedingt umsetzen will. Ansonsten verliert man schnell wieder die Lust... Ich denke, dass man mindestens ein halbes Jahr braucht um solide Programmieren zu lernen, wenn man tΓ€tlich sich damit beschΓ€ftigt.
πŸ‘  ,
properties (23)
authorholger80
permlinkre-art-universe-re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t230416360z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"steempeak","app":"steempeak/1.8.4b"}
created2019-03-18 23:04:18
last_update2019-03-18 23:04:18
depth2
children0
last_payout2019-03-25 23:04:18
cashout_time1969-12-31 23:59:59
total_payout_value0.028 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length272
author_reputation358,857,509,568,825
root_title"Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,541,942
net_rshares55,698,346,845
author_curate_reward""
vote details (2)
@barton26 ·
$0.04
!sbi status
πŸ‘  ,
properties (23)
authorbarton26
permlinkre-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t213222091z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2019-03-18 21:32:21
last_update2019-03-18 21:32:21
depth1
children1
last_payout2019-03-25 21:32:21
cashout_time1969-12-31 23:59:59
total_payout_value0.029 HBD
curator_payout_value0.009 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11
author_reputation3,089,378,353,442
root_title"Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,537,633
net_rshares58,856,236,448
author_curate_reward""
vote details (2)
@sbi7 ·
$0.08
Hi @barton26!

* you have 9 units and 0 bonus units
* your rshares balance is 1465003867019 or 1.027 $
* as you did not wrote a post within the last 7 days, your comments will be upvoted.
* your next SBI upvote is predicted to be 0.041 $


Structure of your total SBI vote value:
* 24.94 % has come from your subscription level
* 0.00 % has come from your bonus units
* 75.06 % has come from upvoting rewards
* 0.00 % has come from new account bonus or extra value from pre-automation rewards
<br>
Value % breakdowns are in beta and some oddities may appear. These % are historical and represent source of vote value pending *and* already delivered. Recent changes (increase in delegated SP, for example) may take time to noticeably change the % breakdown.
πŸ‘  , , , , , ,
properties (23)
authorsbi7
permlinkre-re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t213222091z-20190318t213424z
categoryutopian-io
json_metadata"{"app": "steembasicincome/0.1.2"}"
created2019-03-18 21:34:24
last_update2019-03-18 21:34:24
depth2
children0
last_payout2019-03-25 21:34:24
cashout_time1969-12-31 23:59:59
total_payout_value0.065 HBD
curator_payout_value0.019 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length756
author_reputation4,471,544,224,792
root_title"Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,537,712
net_rshares127,420,819,315
author_curate_reward""
vote details (7)
@bleujay ·
$1.33
!sbi status
πŸ‘  , ,
properties (23)
authorbleujay
permlinkre-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190321t131340228z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2019-03-21 14:12:42
last_update2019-03-21 14:12:42
depth1
children1
last_payout2019-03-28 14:12:42
cashout_time1969-12-31 23:59:59
total_payout_value0.998 HBD
curator_payout_value0.329 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11
author_reputation213,405,966,270,100
root_title"Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id81,681,521
net_rshares2,020,432,891,596
author_curate_reward""
vote details (3)
@sbi8 ·
$0.06
Hi @bleujay!

* you have 2 units and 0 bonus units
* your rshares balance is 85781171578 or 0.059 $
* your next SBI upvote is predicted to be 0.012 $


Structure of your total SBI vote value:
* 43.13 % has come from your subscription level
* 0.00 % has come from your bonus units
* 0.00 % has come from upvoting rewards
* 56.87 % has come from new account bonus or extra value from pre-automation rewards
<br>
Value % breakdowns are in beta and some oddities may appear. These % are historical and represent source of vote value pending *and* already delivered. Recent changes (increase in delegated SP, for example) may take time to noticeably change the % breakdown.
πŸ‘  , , , , , ,
properties (23)
authorsbi8
permlinkre-re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190321t131340228z-20190321t142122z
categoryutopian-io
json_metadata"{"app": "steembasicincome/0.1.2"}"
created2019-03-21 14:21:24
last_update2019-03-21 14:21:24
depth2
children0
last_payout2019-03-28 14:21:24
cashout_time1969-12-31 23:59:59
total_payout_value0.052 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length668
author_reputation4,058,369,038,924
root_title"Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,681,857
net_rshares106,625,867,316
author_curate_reward""
vote details (7)
@cryptocopy ·
!sbi status
properties (22)
authorcryptocopy
permlinkre-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190320t183847041z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"steempeak","app":"steempeak/1.8.4b"}
created2019-03-20 18:38:48
last_update2019-03-20 18:38:48
depth1
children1
last_payout2019-03-27 18:38:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11
author_reputation19,753,132,867,829
root_title"Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,634,759
net_rshares0
@sbi3 ·
$0.08
Hi @cryptocopy!

* you have 59 units and 75 bonus units
* your rshares balance is 831495253990 or 0.573 $
* your next SBI upvote is predicted to be 0.115 $


Structure of your total SBI vote value:
* 59.64 % has come from your subscription level
* 25.42 % has come from your bonus units
* 14.94 % has come from upvoting rewards
* 0.00 % has come from new account bonus or extra value from pre-automation rewards
<br>
Value % breakdowns are in beta and some oddities may appear. These % are historical and represent source of vote value pending *and* already delivered. Recent changes (increase in delegated SP, for example) may take time to noticeably change the % breakdown.
πŸ‘  , , , , , ,
properties (23)
authorsbi3
permlinkre-re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190320t183847041z-20190320t184025z
categoryutopian-io
json_metadata"{"app": "steembasicincome/0.1.2"}"
created2019-03-20 18:40:24
last_update2019-03-20 18:40:24
depth2
children0
last_payout2019-03-27 18:40:24
cashout_time1969-12-31 23:59:59
total_payout_value0.063 HBD
curator_payout_value0.019 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length675
author_reputation7,198,649,064,938
root_title"Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,634,808
net_rshares128,845,714,322
author_curate_reward""
vote details (7)
@darthgexe ·
!sbi status

properties (22)
authordarthgexe
permlinkre-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t145542753z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"steempeak","app":"steempeak/1.8.4b"}
created2019-03-18 14:55:36
last_update2019-03-18 14:55:36
depth1
children1
last_payout2019-03-25 14:55:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length13
author_reputation53,698,277,893,330
root_title"Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,520,334
net_rshares0
@sbi9 ·
$0.17
Hi @darthgexe!

* you have 64 units and 0 bonus units
* your rshares balance is 315107759274 or 0.224 $
* your next SBI upvote is predicted to be 0.045 $


Structure of your total SBI vote value:
* 99.35 % has come from your subscription level
* 0.00 % has come from your bonus units
* 0.65 % has come from upvoting rewards
* 0.00 % has come from new account bonus or extra value from pre-automation rewards
<br>
Value % breakdowns are in beta and some oddities may appear. These % are historical and represent source of vote value pending *and* already delivered. Recent changes (increase in delegated SP, for example) may take time to noticeably change the % breakdown.
πŸ‘  , , , , , , ,
properties (23)
authorsbi9
permlinkre-re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t145542753z-20190318t145649z
categoryutopian-io
json_metadata"{"app": "steembasicincome/0.1.2"}"
created2019-03-18 14:56:51
last_update2019-03-18 14:56:51
depth2
children0
last_payout2019-03-25 14:56:51
cashout_time1969-12-31 23:59:59
total_payout_value0.130 HBD
curator_payout_value0.039 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length671
author_reputation4,798,471,463,422
root_title"Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,520,405
net_rshares251,208,186,277
author_curate_reward""
vote details (8)
@emrebeyler ·
$11.85
properties (23)
authoremrebeyler
permlinkre-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t134259857z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2019-03-18 13:43:00
last_update2019-03-18 13:43:00
depth1
children2
last_payout2019-03-25 13:43:00
cashout_time1969-12-31 23:59:59
total_payout_value8.892 HBD
curator_payout_value2.962 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11
author_reputation448,535,049,068,622
root_title"Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,516,860
net_rshares17,092,874,018,276
author_curate_reward""
vote details (11)
@sbi9 ·
$0.09
Hi @emrebeyler!

* you have 37 units and 0 bonus units
* your rshares balance is 292751498756 or 0.209 $
* your next SBI upvote is predicted to be 0.042 $


Structure of your total SBI vote value:
* 48.62 % has come from your subscription level
* 34.31 % has come from your bonus units
* 17.08 % has come from upvoting rewards
* 0.00 % has come from new account bonus or extra value from pre-automation rewards
<br>
Did you know Steem Basic Income has a [Quality Policy](https://steemit.com/steem/@steembasicincome/sbi-responsible-voting-and-following)?
πŸ‘  , , , , , , ,
properties (23)
authorsbi9
permlinkre-re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t134259857z-20190318t134426z
categoryutopian-io
json_metadata"{"app": "steembasicincome/0.1.2"}"
created2019-03-18 13:44:27
last_update2019-03-18 13:44:27
depth2
children0
last_payout2019-03-25 13:44:27
cashout_time1969-12-31 23:59:59
total_payout_value0.068 HBD
curator_payout_value0.020 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length553
author_reputation4,798,471,463,422
root_title"Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,516,927
net_rshares132,979,027,090
author_curate_reward""
vote details (8)
@utopian-io ·
Thank you for your review, @emrebeyler! Keep up the good work!
properties (22)
authorutopian-io
permlinkre-re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t134259857z-20190321t130620z
categoryutopian-io
json_metadata"{"app": "beem/0.20.17"}"
created2019-03-21 13:06:21
last_update2019-03-21 13:06:21
depth2
children0
last_payout2019-03-28 13:06:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length62
author_reputation152,955,367,999,756
root_title"Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,678,016
net_rshares0
@emrebeyler ·
$0.15
Blacklisting via different options looks great!

It's a small thing but;


```
    blacklist = blacklistStorage.get()
    
    blacklist_tags = []
    for t in blacklist["tags"].split(","):
        blacklist_tags.append(t.strip())
    
    blacklist_apps = []
    for t in blacklist["apps"].split(","):
        blacklist_apps.append(t.strip())

    blacklist_body = []
    for t in blacklist["body"].split(","):
        blacklist_body.append(t.strip())
```

I would refactor this into sth like `parse_blacklist_items`.

```
def parse_blacklist_items(items):
    return [i.strip() for i in items.split(",")]

blacklisted_tags = parse_blacklist_items(...)
blacklisted_apps = parse_blacklist_items(...)
```
***
Your contribution has been evaluated according to [Utopian policies and guidelines](https://join.utopian.io/guidelines), as well as a predefined set of questions pertaining to the category.

To view those questions and the relevant answers related to your post, [click here](https://review.utopian.io/result/3/2-2-2-2-2-2-2-).

---- 
Need help? Chat with us on [Discord](https://discord.gg/uTyJkNm).

[[utopian-moderator]](https://join.uto
πŸ‘  , , , , , , , , , , , ,
properties (23)
authoremrebeyler
permlinkre-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t140907840z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["https://join.utopian.io/guidelines","https://review.utopian.io/result/3/2-2-2-2-2-2-2-","https://discord.gg/uTyJkNm","https://join.uto"],"app":"steemit/0.1"}
created2019-03-18 14:09:09
last_update2019-03-18 14:09:09
depth1
children0
last_payout2019-03-25 14:09:09
cashout_time1969-12-31 23:59:59
total_payout_value0.124 HBD
curator_payout_value0.024 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,147
author_reputation448,535,049,068,622
root_title"Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,518,133
net_rshares240,911,945,487
author_curate_reward""
vote details (13)
@gillianpearce ·
!sbi status
properties (22)
authorgillianpearce
permlinkre-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t135948122z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2019-03-18 13:59:48
last_update2019-03-18 13:59:48
depth1
children1
last_payout2019-03-25 13:59:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11
author_reputation59,897,988,417,078
root_title"Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,517,674
net_rshares0
@sbi8 ·
$0.09
Hi @gillianpearce!

* you have 44 units and 0 bonus units
* your rshares balance is 103358665732 or 0.074 $
* your next SBI upvote is predicted to be 0.015 $


Structure of your total SBI vote value:
* 88.03 % has come from your subscription level
* 0.00 % has come from your bonus units
* 1.58 % has come from upvoting rewards
* 10.39 % has come from new account bonus or extra value from pre-automation rewards
<br>
Did you know Steem Basic Income has a [Quality Policy](https://steemit.com/steem/@steembasicincome/sbi-responsible-voting-and-following)?
πŸ‘  , , , , , ,
properties (23)
authorsbi8
permlinkre-re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t135948122z-20190318t140209z
categoryutopian-io
json_metadata"{"app": "steembasicincome/0.1.2"}"
created2019-03-18 14:02:09
last_update2019-03-18 14:02:09
depth2
children0
last_payout2019-03-25 14:02:09
cashout_time1969-12-31 23:59:59
total_payout_value0.066 HBD
curator_payout_value0.019 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length555
author_reputation4,058,369,038,924
root_title"Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,517,803
net_rshares127,914,952,463
author_curate_reward""
vote details (7)
@gillianpearce ·
$0.02
Can you explain where the upvoting rewards come from please @holger80?

Thanks!
πŸ‘  
properties (23)
authorgillianpearce
permlinkre-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t144640179z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["holger80"],"app":"steemit/0.1"}
created2019-03-18 14:46:42
last_update2019-03-18 14:46:42
depth1
children2
last_payout2019-03-25 14:46:42
cashout_time1969-12-31 23:59:59
total_payout_value0.017 HBD
curator_payout_value0.001 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length79
author_reputation59,897,988,417,078
root_title"Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,519,978
net_rshares34,805,069,240
author_curate_reward""
vote details (1)
@josephsavage ·
$0.23
Upvoting rewards come from upvoting the SBI updates. This is explained in detail in the new FAQ:
https://steemit.com/steembasicincome/@steembasicincome/frequently-asked-questions
πŸ‘  , , ,
properties (23)
authorjosephsavage
permlinkre-gillianpearce-re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t145038162z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"steempeak","app":"steempeak/1.8.4b"}
created2019-03-18 14:50:39
last_update2019-03-18 14:50:39
depth2
children1
last_payout2019-03-25 14:50:39
cashout_time1969-12-31 23:59:59
total_payout_value0.179 HBD
curator_payout_value0.053 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length178
author_reputation40,261,303,801,256
root_title"Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,520,135
net_rshares346,180,860,829
author_curate_reward""
vote details (4)
@gillianpearce ·
$0.02
Thanks very much @josephsavage. I'll take a look. &#128522;
πŸ‘  ,
properties (23)
authorgillianpearce
permlinkre-josephsavage-re-gillianpearce-re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t145151255z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["josephsavage"],"app":"steemit/0.1"}
created2019-03-18 14:51:54
last_update2019-03-18 14:51:54
depth3
children0
last_payout2019-03-25 14:51:54
cashout_time1969-12-31 23:59:59
total_payout_value0.018 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length59
author_reputation59,897,988,417,078
root_title"Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,520,183
net_rshares36,925,242,932
author_curate_reward""
vote details (2)
@hatschi0773 ·
!sbi status
properties (22)
authorhatschi0773
permlinkqg305a
categoryutopian-io
json_metadata{"app":"hiveblog/0.1"}
created2020-09-03 12:03:12
last_update2020-09-03 12:03:12
depth1
children0
last_payout2020-09-10 12:03:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11
author_reputation18,297,746,895,704
root_title"Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id99,427,007
net_rshares0
@josephsavage ·
$0.21
Great work, as always! I'll tack some info into the memo footer that will add clarity until people get used to seeing this much information.
πŸ‘  , , ,
properties (23)
authorjosephsavage
permlinkre-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t140120904z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"steempeak","app":"steempeak/1.8.4b"}
created2019-03-18 14:01:30
last_update2019-03-18 14:01:30
depth1
children0
last_payout2019-03-25 14:01:30
cashout_time1969-12-31 23:59:59
total_payout_value0.158 HBD
curator_payout_value0.054 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length140
author_reputation40,261,303,801,256
root_title"Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply"
beneficiaries
0.
accountholger80
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,517,764
net_rshares337,620,705,011
author_curate_reward""
vote details (4)
@mattuk ·
!sbi status

Posted using [Partiko Android](https://partiko.app/referral/mattuk)
properties (22)
authormattuk
permlinkmattuk-re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t170014292z
categoryutopian-io
json_metadata{"app":"partiko","client":"android"}
created2019-03-18 17:00:18
last_update2019-03-18 17:00:18
depth1
children1
last_payout2019-03-25 17:00:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length80
author_reputation9,309,456,224,094
root_title"Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,526,287
net_rshares0
@sbi8 ·
$0.04
Hi @mattuk!

* you have 8 units and 0 bonus units
* your rshares balance is 121270778692 or 0.086 $
* your next SBI upvote is predicted to be 0.017 $


Structure of your total SBI vote value:
* 51.77 % has come from your subscription level
* 0.00 % has come from your bonus units
* 47.35 % has come from upvoting rewards
* 0.88 % has come from new account bonus or extra value from pre-automation rewards
<br>
Value % breakdowns are in beta and some oddities may appear. These % are historical and represent source of vote value pending *and* already delivered. Recent changes (increase in delegated SP, for example) may take time to noticeably change the % breakdown.
πŸ‘  , , , , , ,
properties (23)
authorsbi8
permlinkre-mattuk-re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t170014292z-20190318t170209z
categoryutopian-io
json_metadata"{"app": "steembasicincome/0.1.2"}"
created2019-03-18 17:02:09
last_update2019-03-18 17:02:09
depth2
children0
last_payout2019-03-25 17:02:09
cashout_time1969-12-31 23:59:59
total_payout_value0.030 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length668
author_reputation4,058,369,038,924
root_title"Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,526,382
net_rshares59,892,927,039
author_curate_reward""
vote details (7)
@partiko ·
Thank you so much for participating in the Partiko Delegation Plan Round 1! We really appreciate your support! As part of the delegation benefits, we just gave you a 3.00% upvote! Together, let’s change the world!
properties (22)
authorpartiko
permlinkre-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t143033
categoryutopian-io
json_metadata"{"app": "partiko"}"
created2019-03-18 14:30:36
last_update2019-03-18 14:30:36
depth1
children0
last_payout2019-03-25 14:30:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length213
author_reputation39,207,160,334,751
root_title"Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,519,233
net_rshares0
@pennsif ·
This post has been included in the latest edition of  [**SoS Daily News**](https://steemit.com/steem/@pennsif/sos-daily-news-news-about-the-state-of-steem-18-march-2019) - a digest of all the latest news on the Steem blockchain.
properties (22)
authorpennsif
permlinkre-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190320t052756652z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["https://steemit.com/steem/@pennsif/sos-daily-news-news-about-the-state-of-steem-18-march-2019"],"app":"steemit/0.1"}
created2019-03-20 05:27:57
last_update2019-03-20 05:27:57
depth1
children0
last_payout2019-03-27 05:27:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length228
author_reputation636,410,097,572,565
root_title"Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,607,625
net_rshares0
@reggaemuffin ·
$0.02
!sbi status
πŸ‘  ,
properties (23)
authorreggaemuffin
permlinkre-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t143521412z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"steempeak","app":"steempeak/1.8.4b"}
created2019-03-18 14:35:18
last_update2019-03-18 14:35:18
depth1
children1
last_payout2019-03-25 14:35:18
cashout_time1969-12-31 23:59:59
total_payout_value0.019 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11
author_reputation37,964,839,695,531
root_title"Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,519,452
net_rshares38,425,006,856
author_curate_reward""
vote details (2)
@sbi9 ·
$0.09
Hi @reggaemuffin!

* you have 201 units and 0 bonus units
* your rshares balance is 943162234318 or 0.672 $
* as you did not write a post within the last 7 days, your comments will be upvoted.
* your next SBI upvote is predicted to be 0.027 $


Structure of your total SBI vote value:
* 19.63 % has come from your subscription level
* 0.00 % has come from your bonus units
* 80.37 % has come from upvoting rewards
* 0.00 % has come from new account bonus or extra value from pre-automation rewards
<br>
Value % breakdowns are in beta and some oddities may appear. These % are historical and represent source of vote value pending *and* already delivered. Recent changes (increase in delegated SP, for example) may take time to noticeably change the % breakdown.
πŸ‘  , , , , , ,
properties (23)
authorsbi9
permlinkre-re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t143521412z-20190318t143722z
categoryutopian-io
json_metadata"{"app": "steembasicincome/0.1.2"}"
created2019-03-18 14:37:24
last_update2019-03-18 14:37:24
depth2
children0
last_payout2019-03-25 14:37:24
cashout_time1969-12-31 23:59:59
total_payout_value0.066 HBD
curator_payout_value0.019 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length761
author_reputation4,798,471,463,422
root_title"Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,519,556
net_rshares126,880,539,806
author_curate_reward""
vote details (7)
@steem-plus ·
SteemPlus upvote
Hi, @holger80!

You just got a **2.94%** upvote from SteemPlus!
To get higher upvotes, earn more SteemPlus Points (SPP). On your Steemit wallet, check your SPP balance and click on "How to earn SPP?" to find out all the ways to earn.
If you're not using SteemPlus yet, please check our last posts in [here](https://steemit.com/@steem-plus) to see the many ways in which SteemPlus can improve your Steem experience on Steemit and Busy.
properties (22)
authorsteem-plus
permlinkupdate-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply---vote-steemplus
categoryutopian-io
json_metadata{}
created2019-03-18 19:42:48
last_update2019-03-18 19:42:48
depth1
children0
last_payout2019-03-25 19:42:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length435
author_reputation247,952,188,232,400
root_title"Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,533,356
net_rshares0
@steem-ua ·
$0.02
#### Hi @holger80!

Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation!
Your post is eligible for our upvote, thanks to our collaboration with @utopian-io!
**Feel free to join our [@steem-ua Discord server](https://discord.gg/KpBNYGz)**
πŸ‘  
properties (23)
authorsteem-ua
permlinkre-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t144548z
categoryutopian-io
json_metadata"{"app": "beem/0.20.18"}"
created2019-03-18 14:45:48
last_update2019-03-18 14:45:48
depth1
children0
last_payout2019-03-25 14:45:48
cashout_time1969-12-31 23:59:59
total_payout_value0.017 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length287
author_reputation23,214,230,978,060
root_title"Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,519,952
net_rshares34,847,011,409
author_curate_reward""
vote details (1)
@steemitboard ·
Congratulations @holger80! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) :

<table><tr><td>https://steemitimages.com/60x70/http://steemitboard.com/@holger80/commented.png?201903180937</td><td>You got more than 700 replies. Your next target is to reach 800 replies.</td></tr>
<tr><td>https://steemitimages.com/60x70/http://steemitboard.com/@holger80/payout.png?201903181411</td><td>You received more than 9000 as payout for your posts. Your next target is to reach a total payout of 10000</td></tr>
</table>

<sub>_You can view [your badges on your Steem Board](https://steemitboard.com/@holger80) and compare to others on the [Steem Ranking](http://steemitboard.com/ranking/index.php?name=holger80)_</sub>
<sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub>


To support your work, I also upvoted your post!


**Do not miss the last post from @steemitboard:**
<table><tr><td><a href="https://steemit.com/drugwars/@steemitboard/drugwars-early-adopter"><img src="https://steemitimages.com/64x128/https://cdn.steemitimages.com/DQmYGN7R653u4hDFyq1hM7iuhr2bdAP1v2ApACDNtecJAZ5/image.png"></a></td><td><a href="https://steemit.com/drugwars/@steemitboard/drugwars-early-adopter">Are you a DrugWars early adopter? Benvenuto in famiglia!</a></td></tr></table>

###### [Vote for @Steemitboard as a witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1) to get one more award and increased upvotes!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-holger80-20190318t163535000z
categoryutopian-io
json_metadata{"image":["https://steemitboard.com/img/notify.png"]}
created2019-03-18 16:35:33
last_update2019-03-18 16:35:33
depth1
children0
last_payout2019-03-25 16:35:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,543
author_reputation38,975,615,169,260
root_title"Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,525,190
net_rshares0
@theb0red1 ·
!sbi status 

Posted using [Partiko iOS](https://partiko.app/referral/theb0red1)
properties (22)
authortheb0red1
permlinktheb0red1-re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t143305218z
categoryutopian-io
json_metadata{"app":"partiko","client":"ios"}
created2019-03-18 14:33:06
last_update2019-03-18 14:33:06
depth1
children1
last_payout2019-03-25 14:33:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length80
author_reputation65,303,778,429,147
root_title"Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,519,352
net_rshares0
@sbi6 ·
$0.09
Hi @theb0red1!

* you have 118 units and 501 bonus units
* your rshares balance is 1983085025077 or 1.412 $
* your next SBI upvote is predicted to be 0.282 $


Structure of your total SBI vote value:
* 47.79 % has come from your subscription level
* 50.99 % has come from your bonus units
* 1.21 % has come from upvoting rewards
* 0.00 % has come from new account bonus or extra value from pre-automation rewards
<br>
Value % breakdowns are in beta and some oddities may appear. These % are historical and represent source of vote value pending *and* already delivered. Recent changes (increase in delegated SP, for example) may take time to noticeably change the % breakdown.
πŸ‘  , , , , , ,
properties (23)
authorsbi6
permlinkre-theb0red1-re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t143305218z-20190318t143502z
categoryutopian-io
json_metadata"{"app": "steembasicincome/0.1.2"}"
created2019-03-18 14:35:03
last_update2019-03-18 14:35:03
depth2
children0
last_payout2019-03-25 14:35:03
cashout_time1969-12-31 23:59:59
total_payout_value0.066 HBD
curator_payout_value0.019 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length676
author_reputation4,717,064,898,862
root_title"Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,519,435
net_rshares128,493,746,279
author_curate_reward""
vote details (7)
@utopian-io ·
Hey, @holger80!

**Thanks for contributing on Utopian**.
We’re already looking forward to your next contribution!

**Get higher incentives and support Utopian.io!**
 Simply set @utopian.pay as a 5% (or higher) payout beneficiary on your contribution post (via [SteemPlus](https://chrome.google.com/webstore/detail/steemplus/mjbkjgcplmaneajhcbegoffkedeankaj?hl=en) or [Steeditor](https://steeditor.app)).

**Want to chat? Join us on Discord https://discord.gg/h52nFrV.**

<a href='https://steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1'>Vote for Utopian Witness!</a>
properties (22)
authorutopian-io
permlinkre-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190322t122955z
categoryutopian-io
json_metadata"{"app": "beem/0.20.17"}"
created2019-03-22 12:29:57
last_update2019-03-22 12:29:57
depth1
children0
last_payout2019-03-29 12:29:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length590
author_reputation152,955,367,999,756
root_title"Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,732,523
net_rshares0
@verifyme ·
@holger80 You have received a 100% upvote from @botreporter because this post did not use any bidbots and you have not used bidbots in the last 30 days!

Upvoting this comment will help keep this service running.
properties (22)
authorverifyme
permlinkre-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-holger80-verifyme-randomvote
categoryutopian-io
json_metadata{"tags":["verifyme","random-upvote"],"users":["holger80","botreporter"],"app":"null/null","format":"markdown"}
created2019-03-19 19:58:39
last_update2019-03-19 19:58:39
depth1
children0
last_payout2019-03-26 19:58:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length214
author_reputation-705,247,747,464
root_title"Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,587,149
net_rshares0