 ## Repository https://github.com/holgern/steembasicincome ## Blacklist database added A new blacklist database with a `tags`, `apps` and `body` field was added.  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).  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.  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
author | holger80 |
---|---|
permlink | update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply |
category | utopian-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"}" |
created | 2019-03-18 13:41:51 |
last_update | 2020-05-23 14:30:54 |
depth | 0 |
children | 48 |
last_payout | 2019-03-25 13:41:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 55.726 HBD |
curator_payout_value | 16.134 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 5,374 |
author_reputation | 358,857,509,568,825 |
root_title | "Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,516,791 |
net_rshares | 107,094,044,671,299 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fminerten | 0 | 5,030,193,216,562 | 100% | ||
steempty | 0 | 5,789,408,527,400 | 100% | ||
tombstone | 0 | 4,175,153,607,618 | 17.42% | ||
thecryptodrive | 0 | 299,851,746,956 | 30% | ||
fulltimegeek | 0 | 1,673,663,281,438 | 100% | ||
snwolak | 0 | 5,141,034,524 | 90% | ||
rufans | 0 | 30,462,837,437 | 100% | ||
theb0red1 | 0 | 3,260,244,748 | 12% | ||
stevescoins | 0 | 92,152,638,747 | 75% | ||
krnel | 0 | 372,821,801,734 | 25% | ||
uwelang | 0 | 135,102,547,104 | 15% | ||
abh12345 | 0 | 61,400,777,852 | 10% | ||
bleujay | 0 | 159,703,609,198 | 10% | ||
busy.pay | 0 | 1,334,760,975,813 | 6.43% | ||
techslut | 0 | 85,080,020,145 | 20% | ||
barton26 | 0 | 9,152,447,946 | 100% | ||
minersean | 0 | 6,823,978,924 | 75% | ||
yadamaniart | 0 | 483,215,183 | 1.09% | ||
delso | 0 | 1,430,933,474,690 | 100% | ||
erikaflynn | 0 | 15,909,791,077 | 35% | ||
steemitboard | 0 | 10,995,468,654 | 1% | ||
sn0n | 0 | 135,855,600 | 1% | ||
alexis555 | 0 | 1,546,805,968,284 | 21% | ||
borislavzlatanov | 0 | 103,993,633,624 | 100% | ||
freebornsociety | 0 | 5,578,603,091 | 10% | ||
jakipatryk | 0 | 14,961,881,180 | 50% | ||
reggaemuffin | 0 | 8,886,697,327,804 | 100% | ||
jga | 0 | 2,588,314,144 | 21.77% | ||
helo | 0 | 158,570,743,215 | 70.96% | ||
walnut1 | 0 | 40,251,218,843 | 21.77% | ||
robofox | 0 | 3,375,227,315 | 100% | ||
lorenzor | 0 | 1,167,890,275 | 10.88% | ||
pennsif | 0 | 17,735,683,320 | 7% | ||
ewkaw | 0 | 9,696,223,566 | 20% | ||
art-universe | 0 | 9,973,185,703 | 51% | ||
jayna | 0 | 226,133,840 | 0.32% | ||
ew-and-patterns | 0 | 350,255,103,655 | 35% | ||
changeangels | 0 | 29,421,869 | 100% | ||
suesa | 0 | 100,283,075,132 | 25% | ||
swedishdragon | 0 | 211,221,154,153 | 85% | ||
warfeed | 0 | 277,534,296 | 37.5% | ||
erickpinos | 0 | 12,272,602,549 | 100% | ||
mcoinz79 | 0 | 3,530,092,068 | 1% | ||
jacekw | 0 | 11,077,905,905 | 50% | ||
codingdefined | 0 | 102,545,826,168 | 70.96% | ||
tsoldovieri | 0 | 1,582,202,430 | 10.88% | ||
abigail-dantes | 0 | 859,524,470,738 | 50% | ||
tykee | 0 | 11,987,176,293 | 21.77% | ||
upgoat | 0 | 1,752,892,257 | 100% | ||
resheep | 0 | 433,949,659 | 100% | ||
upcroak | 0 | 153,954,276 | 100% | ||
glitterbooster | 0 | 3,032,741,908 | 30% | ||
jasonbu | 0 | 12,764,198,080 | 30% | ||
iamphysical | 0 | 14,366,023,081 | 90% | ||
felixrodriguez | 0 | 812,212,341 | 7.61% | ||
azulear | 0 | 448,710,898 | 100% | ||
rehan12 | 0 | 60,643,630,841 | 20% | ||
silviu93 | 0 | 5,597,379,046 | 21.77% | ||
badham | 0 | 1,188,889,714 | 50% | ||
make-a-whale | 0 | 44,494,913,338 | 7% | ||
dakeshi | 0 | 1,138,946,320 | 21.77% | ||
crokkon | 0 | 128,578,228,047 | 100% | ||
accelerator | 0 | 12,753,846,323 | 0.81% | ||
kamikaze | 0 | 42,823,528,824 | 15% | ||
eastmael | 0 | 7,687,107,972 | 50% | ||
revisesociology | 0 | 68,477,852,746 | 20% | ||
espoem | 0 | 201,364,294,187 | 100% | ||
mcfarhat | 0 | 53,944,437,746 | 28.38% | ||
feedyourminnows | 0 | 8,813,794,334 | 8% | ||
isnochys | 0 | 8,993,510,248 | 13% | ||
vishalsingh4997 | 0 | 187,643,596 | 21.77% | ||
qurator | 0 | 138,648,569,870 | 2.19% | ||
emdesan | 0 | 139,497,449 | 10% | ||
loshcat | 0 | 2,558,825,157 | 100% | ||
steem-plus | 0 | 45,079,061,910 | 2.94% | ||
pataty69 | 0 | 12,485,531,587 | 20% | ||
elear | 0 | 6,942,717,800 | 43.55% | ||
jesusj1 | 0 | 76,015,197 | 99% | ||
zoneboy | 0 | 18,983,245,021 | 100% | ||
carloserp-2000 | 0 | 30,185,577,794 | 100% | ||
carlos84 | 0 | 1,140,271,750 | 21.77% | ||
der-prophet | 0 | 2,434,092,223 | 20% | ||
che-shyr | 0 | 661,734,957 | 50% | ||
utopian-io | 0 | 55,540,804,851,898 | 43.55% | ||
shammi | 0 | 2,150,869,327 | 35% | ||
jaff8 | 0 | 165,032,463,615 | 70.95% | ||
emrebeyler | 0 | 192,723,047,380 | 31% | ||
newsrx | 0 | 195,928,841 | 12.46% | ||
mytechtrail | 0 | 1,472,310,846 | 50% | ||
amestyj | 0 | 478,857,120 | 10.88% | ||
skycae | 0 | 159,406,813 | 1.53% | ||
ajayyy | 0 | 561,064,012 | 10.88% | ||
bubbleburst | 0 | 7,190,486,197 | 100% | ||
idikuci | 0 | 54,369,761,329 | 50% | ||
mcyusuf | 0 | 3,148,607,951 | 21.77% | ||
alexs1320 | 0 | 18,207,576,236 | 10% | ||
gentleshaid | 0 | 34,725,959,648 | 43.55% | ||
steembasicincome | 0 | 1,602,482,388,322 | 100% | ||
thomasgift | 0 | 2,124,639,226 | 50% | ||
ivymalifred | 0 | 330,009,387 | 10.88% | ||
bitfiend | 0 | 6,551,958,650 | 20% | ||
aussieninja | 0 | 8,635,165,510 | 21.77% | ||
abitcoinskeptic | 0 | 53,529,765,094 | 35% | ||
ennyta | 0 | 134,387,216 | 10.88% | ||
vjap55 | 0 | 755,606,646 | 100% | ||
amosbastian | 0 | 238,623,608,857 | 70.96% | ||
eliaschess333 | 0 | 1,867,859,160 | 10.88% | ||
tdre | 0 | 81,271,190,523 | 100% | ||
gillianpearce | 0 | 6,318,994,318 | 5% | ||
asaj | 0 | 18,510,076,463 | 100% | ||
smjn | 0 | 290,593,324,297 | 50% | ||
scienceangel | 0 | 64,840,559,216 | 50% | ||
jjay | 0 | 501,276,448 | 100% | ||
neokuduk | 0 | 5,437,646,012 | 100% | ||
sargoon | 0 | 2,285,546,364 | 50% | ||
lukasmining | 0 | 2,699,763,148 | 50% | ||
tobias-g | 0 | 35,161,896,276 | 10% | ||
literaturk | 0 | 387,510,118 | 100% | ||
lanzjoseg | 0 | 15,488,468,804 | 50% | ||
miguelangel2801 | 0 | 122,888,061 | 10.88% | ||
didic | 0 | 30,474,296,545 | 25% | ||
michaelizer | 0 | 257,586,707 | 100% | ||
emiliomoron | 0 | 727,335,989 | 10.88% | ||
sudefteri | 0 | 5,717,933,270 | 100% | ||
nwjordan | 0 | 186,049,282 | 1.64% | ||
verhp11 | 0 | 116,171,746 | 1% | ||
maxpatternman | 0 | 42,086,761,764 | 100% | ||
condeas | 0 | 17,178,418,619 | 50% | ||
sashas | 0 | 3,226,766,627 | 100% | ||
flugschwein | 0 | 18,377,513,743 | 75% | ||
arac | 0 | 922,027,071 | 100% | ||
akifane | 0 | 691,434,620 | 100% | ||
rasit | 0 | 407,435,975 | 100% | ||
mindtrap | 0 | 85,703,020,346 | 20% | ||
endopediatria | 0 | 112,212,838 | 4.35% | ||
themuffinman | 0 | 72,862,165 | 100% | ||
backinblackdevil | 0 | 93,958,624,192 | 15% | ||
redheadpei | 0 | 414,298,936 | 5% | ||
reazuliqbal | 0 | 42,604,947,864 | 25% | ||
maveraunnehr | 0 | 402,154,151 | 100% | ||
satren | 0 | 47,926,574,804 | 25% | ||
lauchmelder | 0 | 10,088,319,471 | 25% | ||
amico | 0 | 154,576,937,544 | 75% | ||
tomastonyperez | 0 | 2,245,395,992 | 10.88% | ||
elvigia | 0 | 1,923,794,289 | 10.88% | ||
schlafhacking | 0 | 216,848,300,272 | 100% | ||
thefunfactory | 0 | 72,795,873 | 100% | ||
someonefun | 0 | 72,795,226 | 100% | ||
funbox | 0 | 72,795,223 | 100% | ||
funlands | 0 | 412,434,431 | 100% | ||
funanime | 0 | 72,795,211 | 100% | ||
funkyfun | 0 | 72,795,201 | 100% | ||
funnyfun | 0 | 72,795,199 | 100% | ||
dmonia | 0 | 72,795,197 | 100% | ||
goldrym | 0 | 72,794,503 | 100% | ||
qeoddrir | 0 | 72,794,491 | 100% | ||
dodrorth | 0 | 72,794,485 | 100% | ||
iedot | 0 | 72,794,474 | 100% | ||
sbi2 | 0 | 700,914,913,056 | 100% | ||
zcool | 0 | 188,457,725 | 10% | ||
ezravandi | 0 | 3,735,874,313 | 1% | ||
dera123 | 0 | 11,645,881,275 | 5% | ||
hackerzizon | 0 | 960,561,967 | 15% | ||
luiscd8a | 0 | 1,525,716,222 | 80% | ||
elleok | 0 | 11,431,305,496 | 34% | ||
alitavirgen | 0 | 7,793,135,764 | 5% | ||
eniolw | 0 | 7,814,208,959 | 100% | ||
geadriana | 0 | 84,502,615 | 3.26% | ||
josedelacruz | 0 | 987,761,036 | 10.88% | ||
joseangelvs | 0 | 396,573,633 | 21.77% | ||
viannis | 0 | 288,153,341 | 10.88% | ||
feronio | 0 | 936,669,360 | 100% | ||
flores39 | 0 | 377,074,680 | 100% | ||
sbi3 | 0 | 507,890,325,716 | 100% | ||
comedyopenmic | 0 | 440,987,386,715 | 50% | ||
ryuna.siege | 0 | 208,697,419 | 100% | ||
sbi4 | 0 | 374,389,146,660 | 100% | ||
ikarus56 | 0 | 775,952,958 | 5% | ||
carlpei | 0 | 227,105,455,692 | 100% | ||
crypto.piotr | 0 | 25,941,415,586 | 7% | ||
linnyplant | 0 | 37,942,275,118 | 100% | ||
commonlaw | 0 | 3,967,748,662 | 35% | ||
shahabudin | 0 | 40,417,100 | 50% | ||
soundworks | 0 | 1,985,034,515 | 100% | ||
anaestrada12 | 0 | 3,380,385,890 | 21.77% | ||
allancovelli | 0 | 332,550,856 | 100% | ||
jordonemmer | 0 | 109,943,667 | 100% | ||
charitacaruso | 0 | 107,312,664 | 100% | ||
ilonavandam | 0 | 1,077,208,018 | 100% | ||
jonasalt | 0 | 923,665,960 | 100% | ||
zandrachilcote | 0 | 802,833,598 | 100% | ||
bertahessler | 0 | 1,429,720,717 | 100% | ||
voneller | 0 | 1,552,080,292 | 100% | ||
osvaldolemke | 0 | 2,274,890,220 | 100% | ||
kiaracardoza | 0 | 2,496,172,300 | 100% | ||
oniecannady | 0 | 2,470,672,748 | 100% | ||
libbychoate | 0 | 2,445,969,003 | 100% | ||
arleansantacruz | 0 | 2,420,400,625 | 100% | ||
asiatucci | 0 | 1,213,740,334 | 100% | ||
sbi5 | 0 | 276,268,013,414 | 100% | ||
cryptocopy | 0 | 6,773,520,379 | 100% | ||
joelsegovia | 0 | 688,461,693 | 10.88% | ||
sbi6 | 0 | 188,536,584,072 | 100% | ||
arsadulislam | 0 | 221,328,909 | 45% | ||
botreporter | 0 | 8,697,324,390 | 100% | ||
jesusfl17 | 0 | 374,513,866 | 100% | ||
partiko | 0 | 286,898,912,510 | 3% | ||
esteliopadilla | 0 | 4,614,518,136 | 100% | ||
ubaldonet | 0 | 3,229,458,503 | 70% | ||
alfcogecar | 0 | 550,208,243 | 100% | ||
verifyme | 0 | 580,692,223 | 10% | ||
dalz | 0 | 5,150,615,006 | 17.42% | ||
ulockblock | 0 | 154,454,926,149 | 50% | ||
wstanley226 | 0 | 67,240,707 | 50% | ||
amart29 | 0 | 414,114,067 | 5.44% | ||
jk6276 | 0 | 6,620,653,285 | 21.77% | ||
reinaseq | 0 | 1,299,271,764 | 21.77% | ||
spero2711 | 0 | 72,076,674 | 25% | ||
sbi7 | 0 | 139,374,103,198 | 100% | ||
ndolrerimas | 0 | 547,912,091 | 100% | ||
douaperrave | 0 | 551,531,435 | 100% | ||
omakkeman | 0 | 551,102,913 | 100% | ||
nieloagranca | 0 | 1,744,120,893 | 8% | ||
chloef85 | 0 | 551,873,536 | 100% | ||
annaqv026allen | 0 | 549,646,045 | 100% | ||
jennifer516 | 0 | 536,890,491 | 100% | ||
dssdsds | 0 | 3,343,550,983 | 21.77% | ||
alyssah2tp3green | 0 | 549,526,124 | 100% | ||
jayplayco | 0 | 86,115,068,306 | 21.77% | ||
cryptouno | 0 | 502,539,304 | 5% | ||
fran.frey | 0 | 333,522,177 | 10.88% | ||
holger.random | 0 | 1,294,669,498 | 100% | ||
fullnodeupdate | 0 | 3,236,455,216 | 100% | ||
mops2e | 0 | 1,219,495,676 | 80% | ||
kyliehpbro | 0 | 539,155,311 | 100% | ||
jrevilla | 0 | 108,161,290 | 21.77% | ||
katherineye | 0 | 554,326,304 | 100% | ||
munhenhos | 0 | 1,450,723,091 | 20% | ||
swapsteem | 0 | 2,799,620,570 | 21.77% | ||
stem-espanol | 0 | 11,630,938,915 | 21.77% | ||
jacekw.dev | 0 | 3,960,851,517 | 100% | ||
bhaski | 0 | 1,617,970,149 | 20% | ||
muscara | 0 | 9,461,274,931 | 35% | ||
chappertron | 0 | 69,011,078,059 | 100% | ||
com-judge | 0 | 1,178,517,790 | 50% | ||
countbugeftai | 0 | 544,725,064 | 100% | ||
branitmeotrus | 0 | 553,634,445 | 100% | ||
swerinocsin | 0 | 545,900,625 | 100% | ||
sbi8 | 0 | 101,463,195,127 | 100% | ||
perepilichnyy | 0 | 1,889,743,758,658 | 100% | ||
linkerstinker | 0 | 571,676,145 | 50% | ||
sbi9 | 0 | 70,529,959,123 | 100% | ||
steem-ua | 0 | 1,351,111,543,855 | 12.46% | ||
giulyfarci52 | 0 | 168,090,010 | 10.88% | ||
votum | 0 | 78,429,403,345 | 100% | ||
linuxbot | 0 | 11,127,530,051 | 100% | ||
alvinvoo | 0 | 1,001,768,167 | 100% | ||
deepsouthpiddlin | 0 | 11,930,586,491 | 15% | ||
ambercookie | 0 | 153,268,427 | 76% | ||
michealb | 0 | 264,427,071,932 | 10% | ||
ordinaryamerican | 0 | 10,621,680,373 | 7% | ||
sbi10 | 0 | 45,721,643,085 | 100% | ||
steemitbuzz | 0 | 0 | 1% | ||
nerdrepost | 0 | 1,018,100,390 | 100% | ||
anthive | 0 | 66,325,805 | 50% | ||
oliviad | 0 | 546,123,724 | 100% | ||
curbot | 0 | 2,373,042,450 | 100% | ||
wherein | 0 | 49,568,377,588 | 1.4% | ||
alex-hm | 0 | 826,153,022 | 50% | ||
nurah | 0 | 120,376,579 | 50% | ||
bluerobo | 0 | 11,847,419,143 | 100% | ||
meulybnqcv | 0 | 545,929,547 | 100% | ||
kingnosa | 0 | 47,321,393 | 50% | ||
dfen | 0 | 551,983,937 | 100% | ||
mrsbozz | 0 | 671,465,362 | 25% | ||
steemtank | 0 | 2,386,653,546,911 | 100% | ||
ascorphat | 0 | 2,289,235,512 | 2.5% | ||
samantha-w | 0 | 3,572,455,724,044 | 100% | ||
flodor | 0 | 636,997,731 | 25% | ||
circa | 0 | 122,185,773,498 | 100% | ||
rewarding | 0 | 4,767,457,042 | 71.77% | ||
broxi | 0 | 9,471,073,429 | 100% | ||
brujas | 0 | 901,638,086 | 100% | ||
pgshow | 0 | 108,832,451 | 0.2% | ||
bejust | 0 | 1,561,834,712 | 100% | ||
jk6276.mons | 0 | 1,204,077,823 | 43.55% | ||
hamsa.quality | 0 | 6,108,853,058 | 7% | ||
sternekoechin | 0 | 208,832,320 | 25% | ||
progressing | 0 | 1,409,962,054 | 100% | ||
jaxson2011 | 0 | 1,617,040,220 | 43.55% | ||
orbo | 0 | 250,985,788 | 50% | ||
eternalinferno | 0 | 210,203,323 | 43.55% | ||
atomicannie | 0 | 0 | 1% | ||
mohaaking | 0 | 54,226,272 | 50% | ||
utopian.trail | 0 | 17,284,480,423 | 43.55% | ||
steemcartel | 0 | 5,591,729,667 | 11% | ||
knochenhd | 0 | 780,097,395 | 10% | ||
raspibot | 0 | 421,304,021 | 100% | ||
genuinehuman | 0 | 1,869,764,095 | 50% | ||
acyaasd113 | 0 | 70,096,311 | 20% |
Always a pleasure having you around here. !sbi status Posted using [Partiko Android](https://partiko.app/referral/abitcoinskeptic)
author | abitcoinskeptic |
---|---|
permlink | abitcoinskeptic-re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t134949837z |
category | utopian-io |
json_metadata | {"app":"partiko","client":"android"} |
created | 2019-03-18 13:50:21 |
last_update | 2019-03-18 13:50:21 |
depth | 1 |
children | 1 |
last_payout | 2019-03-25 13:50:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 131 |
author_reputation | 335,387,091,612,941 |
root_title | "Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,517,223 |
net_rshares | 0 |
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)?
author | sbi6 |
---|---|
permlink | re-abitcoinskeptic-re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t134949837z-20190318t135126z |
category | utopian-io |
json_metadata | "{"app": "steembasicincome/0.1.2"}" |
created | 2019-03-18 13:51:27 |
last_update | 2019-03-18 13:51:27 |
depth | 2 |
children | 0 |
last_payout | 2019-03-25 13:51:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.074 HBD |
curator_payout_value | 0.015 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 560 |
author_reputation | 4,717,064,898,862 |
root_title | "Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,517,281 |
net_rshares | 143,091,587,870 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
amr008 | 0 | 1,831,611,443 | 7% | ||
elviento | 0 | 483,957,015 | 0.85% | ||
rycharde | 0 | 13,506,323,957 | 22% | ||
gingerninja | 0 | 1,460,295,299 | 3% | ||
accelerator | 0 | 70,128,312,114 | 4.44% | ||
rambutan.art | 0 | 13,473,433,045 | 30% | ||
cryptogamestrat | 0 | 42,148,145,190 | 16.05% | ||
jokersword | 0 | 59,509,807 | 13% |
Bitcoin is the biggest currency in cyberspace Posted using [Partiko Android](https://partiko.app/referral/acyaasd113)
author | acyaasd113 |
---|---|
permlink | acyaasd113-re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t140950737z |
category | utopian-io |
json_metadata | {"app":"partiko","client":"android"} |
created | 2019-03-18 14:10:09 |
last_update | 2019-03-18 14:10:09 |
depth | 1 |
children | 0 |
last_payout | 2019-03-25 14:10:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 118 |
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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,518,184 |
net_rshares | 0 |
Thanks for your efforts, @holger80! !sbi-a status !sbi status Posted using [Partiko Android](https://partiko.app/referral/amico)
author | amico |
---|---|
permlink | amico-re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t135900110z |
category | utopian-io |
json_metadata | {"app":"partiko","client":"android"} |
created | 2019-03-18 13:59:03 |
last_update | 2019-03-18 13:59:03 |
depth | 1 |
children | 8 |
last_payout | 2019-03-25 13:59:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.030 HBD |
curator_payout_value | 0.010 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 130 |
author_reputation | 51,076,240,298,517 |
root_title | "Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,517,637 |
net_rshares | 60,584,474,934 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sbi9 | 0 | 60,584,474,934 | 87.72% |
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)?
author | sbi9 |
---|---|
permlink | re-amico-re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t135900110z-20190318t140036z |
category | utopian-io |
json_metadata | "{"app": "steembasicincome/0.1.2"}" |
created | 2019-03-18 14:00:36 |
last_update | 2019-03-18 14:00:36 |
depth | 2 |
children | 7 |
last_payout | 2019-03-25 14:00:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.066 HBD |
curator_payout_value | 0.019 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 635 |
author_reputation | 4,798,471,463,422 |
root_title | "Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,517,720 |
net_rshares | 128,681,699,219 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
amr008 | 0 | 2,096,910,023 | 8% | ||
elviento | 0 | 534,182,365 | 0.93% | ||
gingerninja | 0 | 938,951,213 | 2% | ||
dera123 | 0 | 69,568,485,637 | 30% | ||
rambutan.art | 0 | 13,338,187,971 | 30% | ||
cryptogamestrat | 0 | 42,145,874,494 | 16.13% | ||
jokersword | 0 | 59,107,516 | 13% |
> - 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)
author | amico |
---|---|
permlink | amico-re-sbi9-re-amico-re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t140036z-20190318t141544669z |
category | utopian-io |
json_metadata | {"app":"partiko","client":"android"} |
created | 2019-03-18 14:15:45 |
last_update | 2019-03-18 14:15:45 |
depth | 3 |
children | 6 |
last_payout | 2019-03-25 14:15:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.051 HBD |
curator_payout_value | 0.016 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 179 |
author_reputation | 51,076,240,298,517 |
root_title | "Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,518,460 |
net_rshares | 99,211,100,613 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sbi4 | 0 | 56,139,815,335 | 15.28% | ||
sbi-booster | 0 | 43,071,285,278 | 35% |
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
author | art-universe |
---|---|
permlink | re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t224611655z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-03-18 22:46:12 |
last_update | 2019-03-18 22:46:12 |
depth | 1 |
children | 3 |
last_payout | 2019-03-25 22:46:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 532 |
author_reputation | 76,020,896,885,556 |
root_title | "Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,541,251 |
net_rshares | 0 |
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/
author | holger80 |
---|---|
permlink | re-art-universe-re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t225813144z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"steempeak","app":"steempeak/1.8.4b"} |
created | 2019-03-18 22:58:15 |
last_update | 2019-03-18 22:58:15 |
depth | 2 |
children | 1 |
last_payout | 2019-03-25 22:58:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.028 HBD |
curator_payout_value | 0.006 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 423 |
author_reputation | 358,857,509,568,825 |
root_title | "Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,541,698 |
net_rshares | 56,043,384,077 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
art-universe | 0 | 19,518,980,488 | 100% | ||
dustsweeper | 0 | 36,524,403,589 | 3.73% |
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!
author | art-universe |
---|---|
permlink | re-holger80-re-art-universe-re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t230555915z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-03-18 23:05:54 |
last_update | 2019-03-18 23:16:27 |
depth | 3 |
children | 0 |
last_payout | 2019-03-25 23:05:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 684 |
author_reputation | 76,020,896,885,556 |
root_title | "Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,542,004 |
net_rshares | 0 |
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.
author | holger80 |
---|---|
permlink | re-art-universe-re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t230416360z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"steempeak","app":"steempeak/1.8.4b"} |
created | 2019-03-18 23:04:18 |
last_update | 2019-03-18 23:04:18 |
depth | 2 |
children | 0 |
last_payout | 2019-03-25 23:04:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.028 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 272 |
author_reputation | 358,857,509,568,825 |
root_title | "Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,541,942 |
net_rshares | 55,698,346,845 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
art-universe | 0 | 19,183,715,668 | 100% | ||
dustsweeper | 0 | 36,514,631,177 | 3.86% |
!sbi status
author | barton26 |
---|---|
permlink | re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t213222091z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-03-18 21:32:21 |
last_update | 2019-03-18 21:32:21 |
depth | 1 |
children | 1 |
last_payout | 2019-03-25 21:32:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.029 HBD |
curator_payout_value | 0.009 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 11 |
author_reputation | 3,089,378,353,442 |
root_title | "Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,537,633 |
net_rshares | 58,856,236,448 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sbi9 | 0 | 58,544,902,895 | 90.93% | ||
votes4minnows | 0 | 311,333,553 | 2.5% |
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.
author | sbi7 |
---|---|
permlink | re-re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t213222091z-20190318t213424z |
category | utopian-io |
json_metadata | "{"app": "steembasicincome/0.1.2"}" |
created | 2019-03-18 21:34:24 |
last_update | 2019-03-18 21:34:24 |
depth | 2 |
children | 0 |
last_payout | 2019-03-25 21:34:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.065 HBD |
curator_payout_value | 0.019 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 756 |
author_reputation | 4,471,544,224,792 |
root_title | "Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,537,712 |
net_rshares | 127,420,819,315 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
amr008 | 0 | 2,138,918,461 | 8% | ||
gingerninja | 0 | 891,370,857 | 2% | ||
dera123 | 0 | 67,298,253,239 | 30% | ||
rambutan.art | 0 | 13,294,854,589 | 30% | ||
osso | 0 | 148,122,858 | 33.33% | ||
cryptogamestrat | 0 | 43,615,810,505 | 17.12% | ||
jokersword | 0 | 33,488,806 | 10% |
author | bleujay |
---|---|
permlink | re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190321t131340228z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-03-21 14:12:42 |
last_update | 2019-03-21 14:12:42 |
depth | 1 |
children | 1 |
last_payout | 2019-03-28 14:12:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.998 HBD |
curator_payout_value | 0.329 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 11 |
author_reputation | 213,405,966,270,100 |
root_title | "Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 0 |
post_id | 81,681,521 |
net_rshares | 2,020,432,891,596 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
maarnio | 0 | 319,905,660,674 | 100% | ||
brian.rrr | 0 | 1,700,001,493,115 | 100% | ||
penghuren | 0 | 525,737,807 | 100% |
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.
author | sbi8 |
---|---|
permlink | re-re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190321t131340228z-20190321t142122z |
category | utopian-io |
json_metadata | "{"app": "steembasicincome/0.1.2"}" |
created | 2019-03-21 14:21:24 |
last_update | 2019-03-21 14:21:24 |
depth | 2 |
children | 0 |
last_payout | 2019-03-28 14:21:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.052 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 668 |
author_reputation | 4,058,369,038,924 |
root_title | "Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,681,857 |
net_rshares | 106,625,867,316 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
amr008 | 0 | 1,757,278,054 | 7% | ||
gingerninja | 0 | 1,561,301,494 | 3% | ||
accelerator | 0 | 46,200,801,872 | 2.9% | ||
rambutan.art | 0 | 13,406,660,168 | 30% | ||
xdo-no | 0 | 8,736,316 | 10% | ||
cryptogamestrat | 0 | 43,636,669,316 | 16.69% | ||
jokersword | 0 | 54,420,096 | 12% |
!sbi status
author | cryptocopy |
---|---|
permlink | re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190320t183847041z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"steempeak","app":"steempeak/1.8.4b"} |
created | 2019-03-20 18:38:48 |
last_update | 2019-03-20 18:38:48 |
depth | 1 |
children | 1 |
last_payout | 2019-03-27 18:38:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 11 |
author_reputation | 19,753,132,867,829 |
root_title | "Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,634,759 |
net_rshares | 0 |
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.
author | sbi3 |
---|---|
permlink | re-re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190320t183847041z-20190320t184025z |
category | utopian-io |
json_metadata | "{"app": "steembasicincome/0.1.2"}" |
created | 2019-03-20 18:40:24 |
last_update | 2019-03-20 18:40:24 |
depth | 2 |
children | 0 |
last_payout | 2019-03-27 18:40:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.063 HBD |
curator_payout_value | 0.019 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 675 |
author_reputation | 7,198,649,064,938 |
root_title | "Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,634,808 |
net_rshares | 128,845,714,322 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
amr008 | 0 | 1,648,995,036 | 7% | ||
gingerninja | 0 | 920,471,567 | 2% | ||
dera123 | 0 | 69,089,705,687 | 30% | ||
rambutan.art | 0 | 13,203,380,567 | 30% | ||
isabelll | 0 | 312,221,861 | 100% | ||
cryptogamestrat | 0 | 43,618,979,008 | 17.36% | ||
jokersword | 0 | 51,960,596 | 12% |
!sbi status
author | darthgexe |
---|---|
permlink | re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t145542753z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"steempeak","app":"steempeak/1.8.4b"} |
created | 2019-03-18 14:55:36 |
last_update | 2019-03-18 14:55:36 |
depth | 1 |
children | 1 |
last_payout | 2019-03-25 14:55:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 13 |
author_reputation | 53,698,277,893,330 |
root_title | "Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,520,334 |
net_rshares | 0 |
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.
author | sbi9 |
---|---|
permlink | re-re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t145542753z-20190318t145649z |
category | utopian-io |
json_metadata | "{"app": "steembasicincome/0.1.2"}" |
created | 2019-03-18 14:56:51 |
last_update | 2019-03-18 14:56:51 |
depth | 2 |
children | 0 |
last_payout | 2019-03-25 14:56:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.130 HBD |
curator_payout_value | 0.039 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 671 |
author_reputation | 4,798,471,463,422 |
root_title | "Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,520,405 |
net_rshares | 251,208,186,277 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
amr008 | 0 | 2,095,007,179 | 8% | ||
elviento | 0 | 528,151,449 | 0.97% | ||
gingerninja | 0 | 913,580,862 | 2% | ||
accelerator | 0 | 192,476,266,290 | 12% | ||
rambutan.art | 0 | 12,952,961,396 | 30% | ||
cryptogamestrat | 0 | 42,155,148,590 | 16.36% | ||
holydog | 0 | 28,940,604 | 11.11% | ||
jokersword | 0 | 58,129,907 | 13% |
!sbi status
author | emrebeyler |
---|---|
permlink | re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t134259857z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-03-18 13:43:00 |
last_update | 2019-03-18 13:43:00 |
depth | 1 |
children | 2 |
last_payout | 2019-03-25 13:43:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 8.892 HBD |
curator_payout_value | 2.962 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 11 |
author_reputation | 448,535,049,068,622 |
root_title | "Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,516,860 |
net_rshares | 17,092,874,018,276 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
codingdefined | 0 | 28,384,201,149 | 20.14% | ||
espoem | 0 | 30,736,298,352 | 15% | ||
utopian-io | 0 | 16,703,232,435,357 | 11.71% | ||
jaff8 | 0 | 45,706,033,369 | 20.14% | ||
amosbastian | 0 | 66,097,782,085 | 20.14% | ||
organicgardener | 0 | 5,450,348,858 | 35% | ||
mightypanda | 0 | 199,958,527,170 | 100% | ||
fastandcurious | 0 | 3,985,433,817 | 100% | ||
linknotfound | 0 | 370,064,775 | 100% | ||
ascorphat | 0 | 2,299,162,461 | 2.5% | ||
monster-inc | 0 | 6,653,730,883 | 100% |
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)?
author | sbi9 |
---|---|
permlink | re-re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t134259857z-20190318t134426z |
category | utopian-io |
json_metadata | "{"app": "steembasicincome/0.1.2"}" |
created | 2019-03-18 13:44:27 |
last_update | 2019-03-18 13:44:27 |
depth | 2 |
children | 0 |
last_payout | 2019-03-25 13:44:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.068 HBD |
curator_payout_value | 0.020 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 553 |
author_reputation | 4,798,471,463,422 |
root_title | "Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,516,927 |
net_rshares | 132,979,027,090 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
amr008 | 0 | 2,101,606,961 | 8% | ||
elviento | 0 | 533,773,442 | 0.93% | ||
gingerninja | 0 | 955,270,567 | 2% | ||
mcoinz79 | 0 | 3,529,822,863 | 1% | ||
dera123 | 0 | 70,105,267,770 | 30% | ||
rambutan.art | 0 | 13,533,463,301 | 30% | ||
cryptogamestrat | 0 | 42,160,136,272 | 16.02% | ||
jokersword | 0 | 59,685,914 | 13% |
Thank you for your review, @emrebeyler! Keep up the good work!
author | utopian-io |
---|---|
permlink | re-re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t134259857z-20190321t130620z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.17"}" |
created | 2019-03-21 13:06:21 |
last_update | 2019-03-21 13:06:21 |
depth | 2 |
children | 0 |
last_payout | 2019-03-28 13:06:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 62 |
author_reputation | 152,955,367,999,756 |
root_title | "Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,678,016 |
net_rshares | 0 |
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
author | emrebeyler |
---|---|
permlink | re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t140907840z |
category | utopian-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"} |
created | 2019-03-18 14:09:09 |
last_update | 2019-03-18 14:09:09 |
depth | 1 |
children | 0 |
last_payout | 2019-03-25 14:09:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.124 HBD |
curator_payout_value | 0.024 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,147 |
author_reputation | 448,535,049,068,622 |
root_title | "Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,518,133 |
net_rshares | 240,911,945,487 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
codingdefined | 0 | 28,138,187,712 | 20.02% | ||
osm0sis | 0 | 1,340,846,401 | 2% | ||
jaff8 | 0 | 45,313,206,111 | 20.02% | ||
emrebeyler | 0 | 6,130,412,287 | 1% | ||
zapncrap | 0 | 1,519,613,965 | 2% | ||
aydant | 0 | 8,557,411,020 | 50% | ||
amosbastian | 0 | 65,527,665,749 | 20.02% | ||
curx | 0 | 1,398,779,168 | 2% | ||
holger80 | 0 | 60,755,197,647 | 10% | ||
statsexpert | 0 | 8,229,024,933 | 100% | ||
ulockblock | 0 | 11,167,406,154 | 3.66% | ||
curbot | 0 | 2,334,671,036 | 100% | ||
tenyears | 0 | 499,523,304 | 98% |
!sbi status
author | gillianpearce |
---|---|
permlink | re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t135948122z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-03-18 13:59:48 |
last_update | 2019-03-18 13:59:48 |
depth | 1 |
children | 1 |
last_payout | 2019-03-25 13:59:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 11 |
author_reputation | 59,897,988,417,078 |
root_title | "Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,517,674 |
net_rshares | 0 |
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)?
author | sbi8 |
---|---|
permlink | re-re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t135948122z-20190318t140209z |
category | utopian-io |
json_metadata | "{"app": "steembasicincome/0.1.2"}" |
created | 2019-03-18 14:02:09 |
last_update | 2019-03-18 14:02:09 |
depth | 2 |
children | 0 |
last_payout | 2019-03-25 14:02:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.066 HBD |
curator_payout_value | 0.019 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 555 |
author_reputation | 4,058,369,038,924 |
root_title | "Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,517,803 |
net_rshares | 127,914,952,463 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
amr008 | 0 | 1,826,078,502 | 7% | ||
gingerninja | 0 | 1,438,475,570 | 3% | ||
dera123 | 0 | 69,178,132,767 | 30% | ||
rambutan.art | 0 | 13,262,513,292 | 30% | ||
xdo-no | 0 | 8,676,037 | 10% | ||
cryptogamestrat | 0 | 42,150,596,528 | 16.18% | ||
jokersword | 0 | 50,479,767 | 12% |
Can you explain where the upvoting rewards come from please @holger80? Thanks!
author | gillianpearce |
---|---|
permlink | re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t144640179z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["holger80"],"app":"steemit/0.1"} |
created | 2019-03-18 14:46:42 |
last_update | 2019-03-18 14:46:42 |
depth | 1 |
children | 2 |
last_payout | 2019-03-25 14:46:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.017 HBD |
curator_payout_value | 0.001 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 79 |
author_reputation | 59,897,988,417,078 |
root_title | "Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,519,978 |
net_rshares | 34,805,069,240 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
josephsavage | 0 | 34,805,069,240 | 100% |
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
author | josephsavage |
---|---|
permlink | re-gillianpearce-re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t145038162z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"steempeak","app":"steempeak/1.8.4b"} |
created | 2019-03-18 14:50:39 |
last_update | 2019-03-18 14:50:39 |
depth | 2 |
children | 1 |
last_payout | 2019-03-25 14:50:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.179 HBD |
curator_payout_value | 0.053 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 178 |
author_reputation | 40,261,303,801,256 |
root_title | "Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,520,135 |
net_rshares | 346,180,860,829 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gingerninja | 0 | 912,992,729 | 2% | ||
ezravandi | 0 | 3,703,222,540 | 1% | ||
sbi4 | 0 | 341,244,603,387 | 95.89% | ||
votes4minnows | 0 | 320,042,173 | 2.5% |
Thanks very much @josephsavage. I'll take a look. 😊
author | gillianpearce |
---|---|
permlink | re-josephsavage-re-gillianpearce-re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t145151255z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["josephsavage"],"app":"steemit/0.1"} |
created | 2019-03-18 14:51:54 |
last_update | 2019-03-18 14:51:54 |
depth | 3 |
children | 0 |
last_payout | 2019-03-25 14:51:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.018 HBD |
curator_payout_value | 0.005 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 59 |
author_reputation | 59,897,988,417,078 |
root_title | "Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,520,183 |
net_rshares | 36,925,242,932 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
josephsavage | 0 | 32,627,137,022 | 100% | ||
dustbunny | 0 | 4,298,105,910 | 1.38% |
!sbi status
author | hatschi0773 |
---|---|
permlink | qg305a |
category | utopian-io |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-09-03 12:03:12 |
last_update | 2020-09-03 12:03:12 |
depth | 1 |
children | 0 |
last_payout | 2020-09-10 12:03:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 11 |
author_reputation | 18,297,746,895,704 |
root_title | "Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 99,427,007 |
net_rshares | 0 |
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.
author | josephsavage | ||||||
---|---|---|---|---|---|---|---|
permlink | re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t140120904z | ||||||
category | utopian-io | ||||||
json_metadata | {"tags":["utopian-io"],"community":"steempeak","app":"steempeak/1.8.4b"} | ||||||
created | 2019-03-18 14:01:30 | ||||||
last_update | 2019-03-18 14:01:30 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2019-03-25 14:01:30 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.158 HBD | ||||||
curator_payout_value | 0.054 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 140 | ||||||
author_reputation | 40,261,303,801,256 | ||||||
root_title | "Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 81,517,764 | ||||||
net_rshares | 337,620,705,011 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gingerninja | 0 | 951,363,346 | 2% | ||
sbi2 | 0 | 332,629,039,182 | 48.88% | ||
ezravandi | 0 | 3,723,469,607 | 1% | ||
votes4minnows | 0 | 316,832,876 | 2.5% |
!sbi status Posted using [Partiko Android](https://partiko.app/referral/mattuk)
author | mattuk |
---|---|
permlink | mattuk-re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t170014292z |
category | utopian-io |
json_metadata | {"app":"partiko","client":"android"} |
created | 2019-03-18 17:00:18 |
last_update | 2019-03-18 17:00:18 |
depth | 1 |
children | 1 |
last_payout | 2019-03-25 17:00:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 80 |
author_reputation | 9,309,456,224,094 |
root_title | "Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,526,287 |
net_rshares | 0 |
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.
author | sbi8 |
---|---|
permlink | re-mattuk-re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t170014292z-20190318t170209z |
category | utopian-io |
json_metadata | "{"app": "steembasicincome/0.1.2"}" |
created | 2019-03-18 17:02:09 |
last_update | 2019-03-18 17:02:09 |
depth | 2 |
children | 0 |
last_payout | 2019-03-25 17:02:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.030 HBD |
curator_payout_value | 0.008 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 668 |
author_reputation | 4,058,369,038,924 |
root_title | "Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,526,382 |
net_rshares | 59,892,927,039 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
amr008 | 0 | 1,839,298,055 | 7% | ||
gingerninja | 0 | 1,356,604,577 | 3% | ||
rambutan.art | 0 | 12,864,583,108 | 30% | ||
osso | 0 | 147,140,245 | 33.33% | ||
cryptogamestrat | 0 | 43,607,145,918 | 17.22% | ||
holydog | 0 | 28,793,370 | 11.11% | ||
jokersword | 0 | 49,361,766 | 12% |
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!
author | partiko |
---|---|
permlink | re-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t143033 |
category | utopian-io |
json_metadata | "{"app": "partiko"}" |
created | 2019-03-18 14:30:36 |
last_update | 2019-03-18 14:30:36 |
depth | 1 |
children | 0 |
last_payout | 2019-03-25 14:30:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 213 |
author_reputation | 39,207,160,334,751 |
root_title | "Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,519,233 |
net_rshares | 0 |
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.
author | pennsif |
---|---|
permlink | re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190320t052756652z |
category | utopian-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"} |
created | 2019-03-20 05:27:57 |
last_update | 2019-03-20 05:27:57 |
depth | 1 |
children | 0 |
last_payout | 2019-03-27 05:27:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 228 |
author_reputation | 636,410,097,572,565 |
root_title | "Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,607,625 |
net_rshares | 0 |
author | reggaemuffin |
---|---|
permlink | re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t143521412z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"steempeak","app":"steempeak/1.8.4b"} |
created | 2019-03-18 14:35:18 |
last_update | 2019-03-18 14:35:18 |
depth | 1 |
children | 1 |
last_payout | 2019-03-25 14:35:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.019 HBD |
curator_payout_value | 0.005 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 11 |
author_reputation | 37,964,839,695,531 |
root_title | "Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,519,452 |
net_rshares | 38,425,006,856 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
elviento | 0 | 774,064,641 | 1.38% | ||
sbi4 | 0 | 37,650,942,215 | 10.26% |
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.
author | sbi9 |
---|---|
permlink | re-re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t143521412z-20190318t143722z |
category | utopian-io |
json_metadata | "{"app": "steembasicincome/0.1.2"}" |
created | 2019-03-18 14:37:24 |
last_update | 2019-03-18 14:37:24 |
depth | 2 |
children | 0 |
last_payout | 2019-03-25 14:37:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.066 HBD |
curator_payout_value | 0.019 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 761 |
author_reputation | 4,798,471,463,422 |
root_title | "Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,519,556 |
net_rshares | 126,880,539,806 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
amr008 | 0 | 2,094,257,546 | 8% | ||
gingerninja | 0 | 914,495,126 | 2% | ||
dera123 | 0 | 68,468,633,379 | 30% | ||
rambutan.art | 0 | 13,052,134,121 | 30% | ||
osso | 0 | 145,731,582 | 33.33% | ||
cryptogamestrat | 0 | 42,146,947,401 | 16.3% | ||
jokersword | 0 | 58,340,651 | 13% |
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.
author | steem-plus |
---|---|
permlink | update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply---vote-steemplus |
category | utopian-io |
json_metadata | {} |
created | 2019-03-18 19:42:48 |
last_update | 2019-03-18 19:42:48 |
depth | 1 |
children | 0 |
last_payout | 2019-03-25 19:42:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 435 |
author_reputation | 247,952,188,232,400 |
root_title | "Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,533,356 |
net_rshares | 0 |
#### 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)**
author | steem-ua |
---|---|
permlink | re-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t144548z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.18"}" |
created | 2019-03-18 14:45:48 |
last_update | 2019-03-18 14:45:48 |
depth | 1 |
children | 0 |
last_payout | 2019-03-25 14:45:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.017 HBD |
curator_payout_value | 0.005 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 287 |
author_reputation | 23,214,230,978,060 |
root_title | "Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,519,952 |
net_rshares | 34,847,011,409 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sbi9 | 0 | 34,847,011,409 | 50.09% |
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!
author | steemitboard |
---|---|
permlink | steemitboard-notify-holger80-20190318t163535000z |
category | utopian-io |
json_metadata | {"image":["https://steemitboard.com/img/notify.png"]} |
created | 2019-03-18 16:35:33 |
last_update | 2019-03-18 16:35:33 |
depth | 1 |
children | 0 |
last_payout | 2019-03-25 16:35:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,543 |
author_reputation | 38,975,615,169,260 |
root_title | "Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,525,190 |
net_rshares | 0 |
!sbi status Posted using [Partiko iOS](https://partiko.app/referral/theb0red1)
author | theb0red1 |
---|---|
permlink | theb0red1-re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t143305218z |
category | utopian-io |
json_metadata | {"app":"partiko","client":"ios"} |
created | 2019-03-18 14:33:06 |
last_update | 2019-03-18 14:33:06 |
depth | 1 |
children | 1 |
last_payout | 2019-03-25 14:33:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 80 |
author_reputation | 65,303,778,429,147 |
root_title | "Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,519,352 |
net_rshares | 0 |
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.
author | sbi6 |
---|---|
permlink | re-theb0red1-re-holger80-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190318t143305218z-20190318t143502z |
category | utopian-io |
json_metadata | "{"app": "steembasicincome/0.1.2"}" |
created | 2019-03-18 14:35:03 |
last_update | 2019-03-18 14:35:03 |
depth | 2 |
children | 0 |
last_payout | 2019-03-25 14:35:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.066 HBD |
curator_payout_value | 0.019 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 676 |
author_reputation | 4,717,064,898,862 |
root_title | "Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,519,435 |
net_rshares | 128,493,746,279 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
amr008 | 0 | 1,830,083,844 | 7% | ||
elviento | 0 | 595,036,792 | 1.08% | ||
gingerninja | 0 | 1,406,020,835 | 3% | ||
dera123 | 0 | 69,254,046,957 | 30% | ||
rambutan.art | 0 | 13,203,800,023 | 30% | ||
cryptogamestrat | 0 | 42,146,170,418 | 16.2% | ||
jokersword | 0 | 58,587,410 | 13% |
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>
author | utopian-io |
---|---|
permlink | re-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-20190322t122955z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.17"}" |
created | 2019-03-22 12:29:57 |
last_update | 2019-03-22 12:29:57 |
depth | 1 |
children | 0 |
last_payout | 2019-03-29 12:29:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 590 |
author_reputation | 152,955,367,999,756 |
root_title | "Update for Steem Basic Income Automation - Blacklist database, automatic enrollment transfers and improve status reply" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,732,523 |
net_rshares | 0 |
@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.
author | verifyme |
---|---|
permlink | re-update-for-steem-basic-income-automation-blacklist-database-automatic-enrollment-transfers-and-improve-status-reply-holger80-verifyme-randomvote |
category | utopian-io |
json_metadata | {"tags":["verifyme","random-upvote"],"users":["holger80","botreporter"],"app":"null/null","format":"markdown"} |
created | 2019-03-19 19:58:39 |
last_update | 2019-03-19 19:58:39 |
depth | 1 |
children | 0 |
last_payout | 2019-03-26 19:58:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 214 |
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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,587,149 |
net_rshares | 0 |