After I completed the python-version of LED notification which mimic the LED notification script of SteemPi, I started to work on the eSteem-style notification for Raspbian. That's what I just completed and put on Github. It makes use of the Piston-Steem python library for capturing of Steemit events. The module will check if the events were related to the user. If yes, extract event information, check if it is an upvote or a comment. Should it be either of them, display the information on the event on the 20x4 LCD. Currently, I am using the RPLCD python library to drive LCD. It supports both Python2 and Python3. This is important as the Piston-Steem library requires Python3, Therefore, support of python3 in RPLCD makes life much easier. Tutorial on how to install required libraries csn be found here: [A Guide to Setup Raspberry Pi based Steemit Notification Module](https://steemit.com/utopian-io/@guyverckw/a-raspberry-pi-based-steemit-notification-module) ### How the module works Basically, it monitors the STEEM Blockchain, when there is any activities on the user's account, it will grab it, check if it is an upvote or a comment. If yes, it will blink the LED as well as display upvote or comment information on the 20x4 LCD. Like this:  *** Here is the [notification module on Github](https://github.com/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi). Feel free to down it and play with it. Anyway suggestion and comments are welcomed! *** ~~~python from piston.steem import Steem from piston.account import Account from RPLCD.i2c import CharLCD import time import RPi.GPIO as GPIO import sys ~~~ ~~~python # initialize Steem account_name = 'guyverckw' account = Account(account_name) steem = Steem() # initialize LCD lcd = CharLCD('PCF8574', 0x3f) # Clear LCD print('Clear LCD') # Prepare LED indicator GPIO.setmode(GPIO.BOARD) GPIO.setup(11, GPIO.OUT, initial=GPIO.LOW) # Set user account, no. of history retrieve everytime, transaction ID buffer array of 10 first = 9999999999limit = 5 History = [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0] History_ID = 1.0 message = ' ' ~~~ ~~~python # keep checking transactions while True: index = 0 print (History, History_ID) # Get last 5 history, put ID into buffer array for his in account.rawhistory(first, limit): if History_ID == his[0]: break print('History ID: %d10.0' % History_ID) print(his[1]['op']) if his[1]['op'][0] == 'comment': message = 'There is a comment from @' + his[1]['op'][1]['author'] elif his[1]['op'][0] == 'vote': if his[1]['op'][1]['author'] == account_name: message = 'There is a vote from @' + his[1]['op'][1]['voter'] + ' of ' + str(his[1]['op'][1]['weight']/100) +'%' else: History[index] = his[0] index += 1 continue History[index] = his[0] index += 1 print (message) GPIO.output(11, GPIO.HIGH) lcd.clear() lcd.write_string(message) time.sleep(1) GPIO.output(11, GPIO.LOW) History_ID = History[0] ~~~ *** ### Roadmap I am going to expand the devices supported to a few more LCD and LED devices. This would allow users to use it on different hardware application (with different form factor HW designs). I will in parallel to work on an integration of the module with SteemPi. Stay tuned! <br /><hr/><em>Posted on <a href="https://utopian.io/utopian-io/@guyverckw/42avj4-a-raspberry-pi-based-steemit-notification-module">Utopian.io - Rewarding Open Source Contributors</a></em><hr/>
author | guyverckw | ||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
permlink | 42avj4-a-raspberry-pi-based-steemit-notification-module | ||||||||||||||||||||||||||||||||||||||||||||||||
category | utopian-io | ||||||||||||||||||||||||||||||||||||||||||||||||
json_metadata | "{"community":"utopian","app":"steemit/0.1","format":"markdown","repository":{"id":112172162,"name":"Steemit-Notification-Module-for-Raspberry-Pi","full_name":"guyverckw/Steemit-Notification-Module-for-Raspberry-Pi","owner":{"login":"guyverckw","id":33108899,"avatar_url":"https://avatars0.githubusercontent.com/u/33108899?v=4","gravatar_id":"","url":"https://api.github.com/users/guyverckw","html_url":"https://github.com/guyverckw","followers_url":"https://api.github.com/users/guyverckw/followers","following_url":"https://api.github.com/users/guyverckw/following{/other_user}","gists_url":"https://api.github.com/users/guyverckw/gists{/gist_id}","starred_url":"https://api.github.com/users/guyverckw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/guyverckw/subscriptions","organizations_url":"https://api.github.com/users/guyverckw/orgs","repos_url":"https://api.github.com/users/guyverckw/repos","events_url":"https://api.github.com/users/guyverckw/events{/privacy}","received_events_url":"https://api.github.com/users/guyverckw/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi","description":"Notification of your Steemit account activites on Raspberry Pi platform","fork":false,"url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi","forks_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/forks","keys_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/keys{/key_id}","collaborators_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/teams","hooks_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/hooks","issue_events_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/issues/events{/number}","events_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/events","assignees_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/assignees{/user}","branches_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/branches{/branch}","tags_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/tags","blobs_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/git/refs{/sha}","trees_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/git/trees{/sha}","statuses_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/statuses/{sha}","languages_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/languages","stargazers_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/stargazers","contributors_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/contributors","subscribers_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/subscribers","subscription_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/subscription","commits_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/commits{/sha}","git_commits_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/git/commits{/sha}","comments_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/comments{/number}","issue_comment_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/issues/comments{/number}","contents_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/contents/{+path}","compare_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/compare/{base}...{head}","merges_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/merges","archive_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/downloads","issues_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/issues{/number}","pulls_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/pulls{/number}","milestones_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/milestones{/number}","notifications_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/labels{/name}","releases_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/releases{/id}","deployments_url":"https://api.github.com/repos/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi/deployments","created_at":"2017-11-27T08:58:58Z","updated_at":"2017-11-27T18:12:24Z","pushed_at":"2017-11-28T09:39:05Z","git_url":"git://github.com/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi.git","ssh_url":"git@github.com:guyverckw/Steemit-Notification-Module-for-Raspberry-Pi.git","clone_url":"https://github.com/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi.git","svn_url":"https://github.com/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi","homepage":"","size":10,"stargazers_count":0,"watchers_count":0,"language":"Python","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":null,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","score":10.299825},"pullRequests":[],"platform":"github","type":"development","tags":["utopian-io","steemit","raspberrypi","hk"],"links":["https://steemit.com/utopian-io/@guyverckw/a-raspberry-pi-based-steemit-notification-module","https://github.com/guyverckw/Steemit-Notification-Module-for-Raspberry-Pi","https://utopian.io/utopian-io/@guyverckw/42avj4-a-raspberry-pi-based-steemit-notification-module"],"image":["https://steemitimages.com/DQmb36Nj7NZ7zGkGjkaFEP4x1xkg8wPSGi8zwLm2gBCgoD6/3C6BCE45-3626-47B6-BD82-D1DE633C7994.gif"]}" | ||||||||||||||||||||||||||||||||||||||||||||||||
created | 2017-12-11 05:22:48 | ||||||||||||||||||||||||||||||||||||||||||||||||
last_update | 2017-12-11 09:28:15 | ||||||||||||||||||||||||||||||||||||||||||||||||
depth | 0 | ||||||||||||||||||||||||||||||||||||||||||||||||
children | 32 | ||||||||||||||||||||||||||||||||||||||||||||||||
last_payout | 2017-12-18 05:22:48 | ||||||||||||||||||||||||||||||||||||||||||||||||
cashout_time | 1969-12-31 23:59:59 | ||||||||||||||||||||||||||||||||||||||||||||||||
total_payout_value | 33.780 HBD | ||||||||||||||||||||||||||||||||||||||||||||||||
curator_payout_value | 12.253 HBD | ||||||||||||||||||||||||||||||||||||||||||||||||
pending_payout_value | 0.000 HBD | ||||||||||||||||||||||||||||||||||||||||||||||||
promoted | 0.000 HBD | ||||||||||||||||||||||||||||||||||||||||||||||||
body_length | 3,768 | ||||||||||||||||||||||||||||||||||||||||||||||||
author_reputation | 121,609,723,418,181 | ||||||||||||||||||||||||||||||||||||||||||||||||
root_title | " A Raspberry Pi based Steemit Notification Module" | ||||||||||||||||||||||||||||||||||||||||||||||||
beneficiaries |
| ||||||||||||||||||||||||||||||||||||||||||||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||||||||||||||||||||||||||||||||||||||||||||
percent_hbd | 10,000 | ||||||||||||||||||||||||||||||||||||||||||||||||
post_id | 23,073,651 | ||||||||||||||||||||||||||||||||||||||||||||||||
net_rshares | 11,917,457,208,599 | ||||||||||||||||||||||||||||||||||||||||||||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
icaro | 0 | 61,200,793 | 1% | ||
arcange | 0 | 23,398,742,579 | 6% | ||
ubg | 0 | 407,381,143 | 1% | ||
deanliu | 0 | 801,352,363,409 | 100% | ||
raphaelle | 0 | 3,318,851,532 | 6% | ||
ace108 | 0 | 200,984,068,327 | 18% | ||
freyman | 0 | 1,560,727,876 | 25% | ||
justyy | 0 | 42,650,995,348 | 8.92% | ||
donchate | 0 | 1,292,387,876 | 20% | ||
trueart | 0 | 3,116,558,261 | 20% | ||
happyukgo | 0 | 123,489,328 | 9.35% | ||
bring | 0 | 3,703,582,433 | 100% | ||
corvuscoraxx | 0 | 52,906,957 | 6.71% | ||
steemitboard | 0 | 246,769,333 | 1% | ||
htliao | 0 | 113,156,121,867 | 38% | ||
susanlo | 0 | 32,048,373,673 | 80% | ||
nristen | 0 | 491,742,031 | 100% | ||
cryptoemperor | 0 | 21,011,954,324 | 80% | ||
guyverckw | 0 | 143,676,624,914 | 100% | ||
nanosesame | 0 | 22,858,041,364 | 100% | ||
cpyjeffrey | 0 | 3,721,905,012 | 100% | ||
john.liao | 0 | 433,305,551 | 100% | ||
yvonnetse | 0 | 41,510,435,209 | 80% | ||
kenchung | 0 | 34,473,299,739 | 100% | ||
pakyeechan | 0 | 16,644,832,064 | 100% | ||
jeffreytong | 0 | 9,140,964,577 | 100% | ||
johnliao | 0 | 2,723,307,160 | 100% | ||
helloworld123 | 0 | 696,082,222 | 100% | ||
nuagnorab | 0 | 12,263,651,221 | 100% | ||
kitcat | 0 | 85,498,706,211 | 50% | ||
victorier | 0 | 70,774,689,946 | 100% | ||
linuslee0216 | 0 | 129,338,028,939 | 80% | ||
ekavieka | 0 | 8,423,195,321 | 20% | ||
helo | 0 | 6,016,639,794 | 100% | ||
chl | 0 | 4,077,178,855 | 100% | ||
wilkinshui | 0 | 108,655,400,267 | 100% | ||
carobetc | 0 | 6,797,723,758 | 100% | ||
thomaskikansha | 0 | 39,902,286,261 | 100% | ||
chingyi | 0 | 2,788,680,886 | 100% | ||
mrjt | 0 | 1,336,357,722 | 100% | ||
brothermic | 0 | 5,412,021,911 | 8% | ||
aaronli | 0 | 36,475,562,789 | 100% | ||
marylaw | 0 | 37,742,116,709 | 90% | ||
jenthedreamer | 0 | 1,616,351,782 | 100% | ||
lastozgur | 0 | 4,682,491,896 | 100% | ||
pyc1512 | 0 | 359,321,600 | 100% | ||
vincentttw | 0 | 417,356,436 | 100% | ||
krischy | 0 | 61,941,689,788 | 100% | ||
claratze | 0 | 362,335,000 | 100% | ||
jacklcp | 0 | 6,829,647,771 | 100% | ||
biuiam | 0 | 22,330,303,325 | 100% | ||
kristytyxd | 0 | 989,760,385 | 100% | ||
carinewhy | 0 | 36,126,804,367 | 100% | ||
livinguktaiwan | 0 | 25,786,413,006 | 46% | ||
bobowyeahxd | 0 | 395,892,032 | 100% | ||
colinct | 0 | 899,577,538 | 100% | ||
aburmeseabroad | 0 | 12,998,962,570 | 32% | ||
luigi-tecnologo | 0 | 665,608,470 | 2% | ||
mcw | 0 | 5,643,420,478 | 20% | ||
sanzo | 0 | 290,320,985 | 100% | ||
yuwineryyuvia | 0 | 1,332,159,245 | 100% | ||
cutiepie | 0 | 634,462,342 | 100% | ||
boooster | 0 | 371,102,534 | 100% | ||
eason1117 | 0 | 362,407,993 | 100% | ||
votebooster | 0 | 354,996,104 | 100% | ||
everrich | 0 | 360,181,848 | 100% | ||
hannahwu | 0 | 8,761,716,541 | 38% | ||
nicolemoker | 0 | 171,497,669,680 | 70% | ||
davidzack | 0 | 256,324,579 | 100% | ||
dzsupport | 0 | 596,241,010 | 100% | ||
techtek | 0 | 33,084,583,542 | 100% | ||
interactive | 0 | 14,398,994,043 | 80% | ||
herlife | 0 | 2,220,158,061 | 38% | ||
john811 | 0 | 3,049,698,200 | 100% | ||
icedream | 0 | 2,734,204,953 | 38% | ||
goldminevoyager | 0 | 575,587,612 | 100% | ||
yhhhhhhhhh | 0 | 1,294,363,186 | 100% | ||
deskart | 0 | 297,082,518 | 100% | ||
sportyfree | 0 | 1,489,696,217 | 100% | ||
dianna | 0 | 592,531,200 | 100% | ||
jacquelyn | 0 | 592,531,200 | 100% | ||
chenhs | 0 | 5,147,248,168 | 100% | ||
goodboyphilip | 0 | 42,436,104,403 | 100% | ||
mianfahad2 | 0 | 655,232,051 | 100% | ||
ytienchu | 0 | 669,438,679 | 38% | ||
superbing | 0 | 949,800,298 | 9.32% | ||
dailyfortune | 0 | 744,263,399 | 9.32% | ||
connieleung | 0 | 5,875,844,752 | 100% | ||
fahad290 | 0 | 821,202,962 | 100% | ||
dailystats | 0 | 1,076,409,044 | 9.32% | ||
monkeyplayfire | 0 | 140,564,820 | 100% | ||
wangwenjing | 0 | 456,584,093 | 6% | ||
gladyslui | 0 | 3,945,294,952 | 100% | ||
murattatar | 0 | 4,555,708,193 | 100% | ||
bobbie | 0 | 570,928,500 | 100% | ||
kawing | 0 | 358,619,708 | 100% | ||
utopian-io | 0 | 9,310,204,288,920 | 6.82% | ||
sosoo | 0 | 1,301,781,375 | 100% | ||
nuv | 0 | 1,103,371,181 | 100% | ||
terencetze | 0 | 357,999,200 | 100% | ||
moorkedi | 0 | 123,416,140 | 1% | ||
cosetteee | 0 | 1,099,948,508 | 100% | ||
michelleluilui | 0 | 631,300,137 | 100% | ||
stephenma26 | 0 | 673,134,460 | 100% | ||
trustedboy | 0 | 2,341,310,769 | 100% | ||
iamhuascar | 0 | 1,217,427,200 | 100% | ||
hkfund | 0 | 673,116,087 | 100% | ||
jameszenartist | 0 | 4,421,354,642 | 100% | ||
brainfarts | 0 | 16,390,083,547 | 20% | ||
mstafford | 0 | 963,226,882 | 100% |
it will be such an amazing project! all the best..
author | aburmeseabroad |
---|---|
permlink | re-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t054833106z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-11 05:48:33 |
last_update | 2017-12-11 05:48:33 |
depth | 1 |
children | 0 |
last_payout | 2017-12-18 05:48:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.102 HBD |
curator_payout_value | 0.033 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 50 |
author_reputation | 10,522,171,851,652 |
root_title | " A Raspberry Pi based Steemit Notification Module" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,075,476 |
net_rshares | 31,456,302,320 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
guyverckw | 0 | 31,456,302,320 | 20% |
couple of typo: 1. notificationwhich - missing space 2. Toturial - Tutorial
author | ace108 |
---|---|
permlink | re-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t063438389z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-11 06:34:39 |
last_update | 2017-12-11 06:34:39 |
depth | 1 |
children | 6 |
last_payout | 2017-12-18 06:34:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.106 HBD |
curator_payout_value | 0.033 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 77 |
author_reputation | 1,228,751,080,582,895 |
root_title | " A Raspberry Pi based Steemit Notification Module" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,078,947 |
net_rshares | 32,823,967,638 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
guyverckw | 0 | 32,823,967,638 | 20% |
Corrected, thanks a lot.
author | guyverckw |
---|---|
permlink | re-ace108-re-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t090804380z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-11 09:08:03 |
last_update | 2017-12-11 09:08:03 |
depth | 2 |
children | 1 |
last_payout | 2017-12-18 09:08:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.048 HBD |
curator_payout_value | 0.008 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 24 |
author_reputation | 121,609,723,418,181 |
root_title | " A Raspberry Pi based Steemit Notification Module" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,090,738 |
net_rshares | 13,399,079,838 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ace108 | 0 | 13,399,079,838 | 1% |
You're welcome
author | ace108 |
---|---|
permlink | re-guyverckw-re-ace108-re-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t092940106z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-11 09:29:42 |
last_update | 2017-12-11 09:29:42 |
depth | 3 |
children | 0 |
last_payout | 2017-12-18 09:29:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.102 HBD |
curator_payout_value | 0.033 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 14 |
author_reputation | 1,228,751,080,582,895 |
root_title | " A Raspberry Pi based Steemit Notification Module" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,092,396 |
net_rshares | 31,471,508,344 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
guyverckw | 0 | 31,471,508,344 | 20% |
Githut >>> Github
author | livinguktaiwan |
---|---|
permlink | re-ace108-re-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t092542549z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-11 09:25:42 |
last_update | 2017-12-11 09:25:42 |
depth | 2 |
children | 3 |
last_payout | 2017-12-18 09:25:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.492 HBD |
curator_payout_value | 0.164 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 17 |
author_reputation | 1,676,561,032,825,177 |
root_title | " A Raspberry Pi based Steemit Notification Module" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,092,106 |
net_rshares | 150,518,368,958 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
guyverckw | 0 | 150,518,368,958 | 100% |
Vying for spellchecker championship. :-)
author | ace108 |
---|---|
permlink | re-livinguktaiwan-re-ace108-re-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t093100306z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-11 09:31:00 |
last_update | 2017-12-11 09:31:00 |
depth | 3 |
children | 2 |
last_payout | 2017-12-18 09:31:00 |
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 | 40 |
author_reputation | 1,228,751,080,582,895 |
root_title | " A Raspberry Pi based Steemit Notification Module" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,092,512 |
net_rshares | 0 |
nice article
author | anikearn |
---|---|
permlink | re-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t083129147z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-11 08:31:36 |
last_update | 2017-12-11 08:31:36 |
depth | 1 |
children | 0 |
last_payout | 2017-12-18 08:31: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 | 12 |
author_reputation | 279,291,314,932,485 |
root_title | " A Raspberry Pi based Steemit Notification Module" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,087,844 |
net_rshares | 0 |
Great works and good update
author | bipul |
---|---|
permlink | re-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171218t075351565z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-18 07:53:54 |
last_update | 2017-12-18 07:53:54 |
depth | 1 |
children | 0 |
last_payout | 2017-12-25 07:53: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 | 27 |
author_reputation | 2,897,172,304,197 |
root_title | " A Raspberry Pi based Steemit Notification Module" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,987,530 |
net_rshares | 0 |
wow that's going to be cool never missing an update again :D
author | blazing |
---|---|
permlink | re-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t100847771z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-11 10:08:51 |
last_update | 2017-12-11 10:08:51 |
depth | 1 |
children | 0 |
last_payout | 2017-12-18 10:08:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.102 HBD |
curator_payout_value | 0.033 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 60 |
author_reputation | 117,662,220,860,076 |
root_title | " A Raspberry Pi based Steemit Notification Module" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,095,474 |
net_rshares | 31,471,508,344 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
guyverckw | 0 | 31,471,508,344 | 20% |
haha I don't get everything you say but still I like the project!
author | brothermic |
---|---|
permlink | re-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t163400532z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-11 16:34:00 |
last_update | 2017-12-11 16:34:00 |
depth | 1 |
children | 0 |
last_payout | 2017-12-18 16:34:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.120 HBD |
curator_payout_value | 0.008 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 65 |
author_reputation | 70,127,808,776,053 |
root_title | " A Raspberry Pi based Steemit Notification Module" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,133,452 |
net_rshares | 30,103,673,791 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
guyverckw | 0 | 30,103,673,791 | 20% |
Thank you for the contribution. It has been approved. That's a great work, bdw I checked the code and find out there is no error handling done. So are you planning to handle the error because if the error happens it will stop, you need to start all over again. You can contact us on [Discord](https://discord.gg/UCvqCsx). **[[utopian-moderator]](https://utopian.io/moderators)**
author | codingdefined |
---|---|
permlink | re-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t091938656z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"busy","app":"busy/1.0.0"} |
created | 2017-12-11 09:19:42 |
last_update | 2017-12-11 09:19:42 |
depth | 1 |
children | 1 |
last_payout | 2017-12-18 09:19:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.110 HBD |
curator_payout_value | 0.025 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 379 |
author_reputation | 531,776,831,872,718 |
root_title | " A Raspberry Pi based Steemit Notification Module" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,091,637 |
net_rshares | 31,456,741,095 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
guyverckw | 0 | 31,456,741,095 | 20% |
Thanks for reminding, will add error handling in later.
author | guyverckw |
---|---|
permlink | re-codingdefined-re-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t092101244z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-11 09:21:00 |
last_update | 2017-12-11 09:21:00 |
depth | 2 |
children | 0 |
last_payout | 2017-12-18 09:21:00 |
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 | 55 |
author_reputation | 121,609,723,418,181 |
root_title | " A Raspberry Pi based Steemit Notification Module" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,091,749 |
net_rshares | 0 |
interesting this is but i have not much how to implement it lolzzz
author | cutiepie |
---|---|
permlink | re-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t132846569z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-11 13:28:48 |
last_update | 2017-12-11 13:28:48 |
depth | 1 |
children | 0 |
last_payout | 2017-12-18 13:28:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.094 HBD |
curator_payout_value | 0.029 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 66 |
author_reputation | 5,599,036,868,065 |
root_title | " A Raspberry Pi based Steemit Notification Module" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,113,418 |
net_rshares | 28,735,324,982 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
guyverckw | 0 | 28,735,324,982 | 20% |
good post..
author | fahad290 |
---|---|
permlink | re-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t132545792z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-11 13:25:48 |
last_update | 2017-12-11 13:25:48 |
depth | 1 |
children | 0 |
last_payout | 2017-12-18 13:25: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 | 477,526,596,075 |
root_title | " A Raspberry Pi based Steemit Notification Module" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,113,085 |
net_rshares | 0 |
that's cool....nice steem post..... very helpful
author | faisal79 |
---|---|
permlink | re-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t135024241z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-11 13:50:48 |
last_update | 2017-12-11 13:50:48 |
depth | 1 |
children | 0 |
last_payout | 2017-12-18 13:50: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 | 48 |
author_reputation | 1,364,151,823,900 |
root_title | " A Raspberry Pi based Steemit Notification Module" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,115,657 |
net_rshares | 0 |
wow amazing post really..
author | janvir |
---|---|
permlink | re-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t053616846z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-11 05:36:24 |
last_update | 2017-12-11 05:36:24 |
depth | 1 |
children | 0 |
last_payout | 2017-12-18 05:36:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.102 HBD |
curator_payout_value | 0.033 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 25 |
author_reputation | -174,345,367,568 |
root_title | " A Raspberry Pi based Steemit Notification Module" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,074,578 |
net_rshares | 31,456,302,320 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
guyverckw | 0 | 31,456,302,320 | 20% |
This is awesome. I'm interested in raspberry pi and I want to make a bot like this. My idea is different with this. But this will be a good guide for me. Thanks. :)
author | lastozgur |
---|---|
permlink | re-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t163611635z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"busy","app":"busy/1.0.0"} |
created | 2017-12-11 16:36:12 |
last_update | 2017-12-11 16:36:12 |
depth | 1 |
children | 0 |
last_payout | 2017-12-18 16:36:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.124 HBD |
curator_payout_value | 0.006 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 164 |
author_reputation | 1,455,260,240,478 |
root_title | " A Raspberry Pi based Steemit Notification Module" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,133,716 |
net_rshares | 30,103,673,791 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
guyverckw | 0 | 30,103,673,791 | 20% |
I have a raspberry pi laying around, now I know what to do with it. My python's a bit rusty but I'll give it a shot!
author | legoman |
---|---|
permlink | re-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171212t170952655z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-12 17:09:54 |
last_update | 2017-12-12 17:09:54 |
depth | 1 |
children | 0 |
last_payout | 2017-12-19 17:09:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.110 HBD |
curator_payout_value | 0.027 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 116 |
author_reputation | 15,096,779,808,739 |
root_title | " A Raspberry Pi based Steemit Notification Module" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,264,064 |
net_rshares | 29,910,912,212 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
guyverckw | 0 | 28,767,808,324 | 20% | ||
legoman | 0 | 1,143,103,888 | 100% |
really like your post...
author | mianfahad2 |
---|---|
permlink | re-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t134558771z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-11 13:46:00 |
last_update | 2017-12-11 13:46:00 |
depth | 1 |
children | 0 |
last_payout | 2017-12-18 13:46:00 |
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 | 24 |
author_reputation | 460,855,120,828 |
root_title | " A Raspberry Pi based Steemit Notification Module" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,115,183 |
net_rshares | 0 |
Hey that's cool. I was just thinking the other day of starting that "Magic Mirror" project for the pi. Implementing this would be a cool feature! On that note! I've had a couple beers at this point, and am new to the platform. Is there a way to bookmark or favorite posts so I can come back to this?
author | mstafford |
---|---|
permlink | re-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t052716863z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-11 05:27:15 |
last_update | 2017-12-11 05:27:15 |
depth | 1 |
children | 2 |
last_payout | 2017-12-18 05:27:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.160 HBD |
curator_payout_value | 0.002 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 300 |
author_reputation | 63,425,345,982,192 |
root_title | " A Raspberry Pi based Steemit Notification Module" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,073,939 |
net_rshares | 38,128,452,142 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
guyverckw | 0 | 32,822,579,308 | 20% | ||
jameszenartist | 0 | 4,325,238,237 | 100% | ||
mstafford | 0 | 980,634,597 | 100% |
magic mirror project sound cool too. I don't know a very good "Bookmark" feature, I just put on comments so that I can search my comment to get back to that post.
author | guyverckw |
---|---|
permlink | re-mstafford-re-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t053153888z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-11 05:31:54 |
last_update | 2017-12-11 05:31:54 |
depth | 2 |
children | 1 |
last_payout | 2017-12-18 05:31: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 | 164 |
author_reputation | 121,609,723,418,181 |
root_title | " A Raspberry Pi based Steemit Notification Module" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,074,257 |
net_rshares | 673,098,303 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mstafford | 0 | 673,098,303 | 100% |
Ah good call! I guess it's pretty easy to scan through a comment history.
author | mstafford |
---|---|
permlink | re-guyverckw-re-mstafford-re-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171212t185451139z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-12 18:54:51 |
last_update | 2017-12-12 18:54:51 |
depth | 3 |
children | 0 |
last_payout | 2017-12-19 18:54:51 |
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 | 73 |
author_reputation | 63,425,345,982,192 |
root_title | " A Raspberry Pi based Steemit Notification Module" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,274,676 |
net_rshares | 0 |
Great work ...adding alot to steemit
author | odsam2 |
---|---|
permlink | re-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t094350887z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-11 09:43:54 |
last_update | 2017-12-11 09:43:54 |
depth | 1 |
children | 0 |
last_payout | 2017-12-18 09:43:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.102 HBD |
curator_payout_value | 0.033 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 36 |
author_reputation | 12,844,713,003,325 |
root_title | " A Raspberry Pi based Steemit Notification Module" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,093,551 |
net_rshares | 31,471,508,344 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
guyverckw | 0 | 31,471,508,344 | 20% |
Wow a nice steem post.....
author | sakilansary |
---|---|
permlink | re-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t054413183z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-11 05:44:18 |
last_update | 2017-12-11 05:44:18 |
depth | 1 |
children | 0 |
last_payout | 2017-12-18 05:44:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.102 HBD |
curator_payout_value | 0.033 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 26 |
author_reputation | 2,428,363,252,111 |
root_title | " A Raspberry Pi based Steemit Notification Module" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,075,186 |
net_rshares | 31,456,302,320 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
guyverckw | 0 | 31,456,302,320 | 20% |
Nice steem post......
author | sakilansary |
---|---|
permlink | re-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t161343082z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-11 16:13:54 |
last_update | 2017-12-11 16:13:54 |
depth | 1 |
children | 0 |
last_payout | 2017-12-18 16:13: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 | 21 |
author_reputation | 2,428,363,252,111 |
root_title | " A Raspberry Pi based Steemit Notification Module" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,131,112 |
net_rshares | 0 |
some days start my new language python, The invention of LED lights is very good. Now I will try. thanks for sharing
author | sangeeta |
---|---|
permlink | re-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t064521714z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-11 06:45:24 |
last_update | 2017-12-11 06:45:24 |
depth | 1 |
children | 0 |
last_payout | 2017-12-18 06:45:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.106 HBD |
curator_payout_value | 0.029 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 116 |
author_reputation | 9,637,223,782,143 |
root_title | " A Raspberry Pi based Steemit Notification Module" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,079,726 |
net_rshares | 31,671,827,793 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
guyverckw | 0 | 31,471,508,344 | 20% | ||
sangeeta | 0 | 200,319,449 | 100% |
Congratulations @guyverckw! You have completed some achievement on Steemit and have been rewarded with new badge(s) : [](http://steemitboard.com/@guyverckw) You published a post every day of the week Click on any badge to view your own Board of Honor on SteemitBoard. For more information about SteemitBoard, click [here](https://steemit.com/@steemitboard) If you no longer want to receive notifications, reply to this comment with the word `STOP` > By upvoting this notification, you can help all Steemit users. Learn how [here](https://steemit.com/steemitboard/@steemitboard/http-i-cubeupload-com-7ciqeo-png)!
author | steemitboard |
---|---|
permlink | steemitboard-notify-guyverckw-20171211t084402000z |
category | utopian-io |
json_metadata | {"image":["https://steemitboard.com/img/notifications.png"]} |
created | 2017-12-11 08:43:42 |
last_update | 2017-12-11 08:43:42 |
depth | 1 |
children | 0 |
last_payout | 2017-12-18 08:43:42 |
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 | 705 |
author_reputation | 38,975,615,169,260 |
root_title | " A Raspberry Pi based Steemit Notification Module" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,088,831 |
net_rshares | 0 |
I always upvote and resteem your post please give me your huge part of vote
author | trustedboy |
---|---|
permlink | re-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t055830714z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-11 05:58:39 |
last_update | 2017-12-11 05:58:39 |
depth | 1 |
children | 0 |
last_payout | 2017-12-18 05: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 | 76 |
author_reputation | 427,270,048,631 |
root_title | " A Raspberry Pi based Steemit Notification Module" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,076,183 |
net_rshares | 0 |
### Hey @guyverckw I am @utopian-io. I have just upvoted you! #### Achievements - Seems like you contribute quite often. AMAZING! #### Community-Driven Witness! I am the first and only Steem Community-Driven Witness. <a href="https://discord.gg/zTrEMqB">Participate on Discord</a>. Lets GROW TOGETHER! - <a href="https://v2.steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1">Vote for my Witness With SteemConnect</a> - <a href="https://v2.steemconnect.com/sign/account-witness-proxy?proxy=utopian-io&approve=1">Proxy vote to Utopian Witness with SteemConnect</a> - Or vote/proxy on <a href="https://steemit.com/~witnesses">Steemit Witnesses</a> [](https://steemit.com/~witnesses) **Up-vote this comment to grow my power and help Open Source contributions like this one. Want to chat? Join me on Discord https://discord.gg/Pc8HG9x**
author | utopian-io |
---|---|
permlink | re-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t231636389z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"} |
created | 2017-12-11 23:16:36 |
last_update | 2017-12-11 23:16:36 |
depth | 1 |
children | 0 |
last_payout | 2017-12-18 23:16:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.130 HBD |
curator_payout_value | 0.004 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,007 |
author_reputation | 152,955,367,999,756 |
root_title | " A Raspberry Pi based Steemit Notification Module" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,169,631 |
net_rshares | 30,121,106,458 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
guyverckw | 0 | 30,121,106,458 | 20% |
Wow amazing. I gonna need to get me one of those rasberry pi's. This is just to nice!
author | zoef |
---|---|
permlink | re-guyverckw-42avj4-a-raspberry-pi-based-steemit-notification-module-20171211t190125372z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2017-12-11 19:01:27 |
last_update | 2017-12-11 19:01:27 |
depth | 1 |
children | 0 |
last_payout | 2017-12-18 19:01:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.154 HBD |
curator_payout_value | 0.047 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 85 |
author_reputation | 23,277,446,843,999 |
root_title | " A Raspberry Pi based Steemit Notification Module" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,148,959 |
net_rshares | 46,229,266,701 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
guyverckw | 0 | 30,121,106,458 | 20% | ||
zoef | 0 | 16,108,160,243 | 100% |