<div class="pull-right">  </div> I installed my own version of [Hivemind](https://github.com/steemit/hivemind) so that I can play around with accessing some of the blockchain using Postgres. It took a while to sync. But once it did, *oh nelly!!* What is Hivemind? The repo says: > **Developer-friendly microservice powering social networks on the Steem blockchain.** > > Hive is a "consensus interpretation" layer for the Steem blockchain, maintaining the state of social features such as post feeds, follows, and communities. Written in Python, it synchronizes an SQL database with chain state, providing developers with a more flexible/extensible alternative to the raw steemd API. This means that you can bypass `steemd` and access data in a more traditional way. Often, business solutions use SQL for data. But you can't use SQL on `steemd`. So Hivemind solves that problem. Now, in reality, there's another goal to Hivemind, as mentioned in the @steemitblog application team update: [Hivemind/Communities, Sign-Ups, Developer Tools, Condenser, and More!](https://steemit.com/steemit/@steemitblog/applications-team-update-hivemind-communities-sign-ups-developer-tools-condenser-and-more): > Work on Hivemind 1.0 remains a major focus. Over the past few weeks, we have been heavily testing compatibility between hive and condenser. We have also committed significant resources to documenting the steps required for Hivemind integration, which will help community developers deploy and take full advantage of hive once it is ready. Hivemind will facilitate community front-ends. But the 1.0 version doesn't offer much in new features. It takes some of the load off of `steemd`, which is a *great* feature that I'm very excited about. But it's hard to convey why this is exciting. It's just a drop-in replacement for something that already works, right? Yes, but in doing so, it takes some of the load off of `steemd`. And that's a very good thing. At it's core, it does that by making it easier to query the same data. But in addition to that purpose, if you can run your own Postgres database, you can do some interesting queries. For example, I want to know what the top 10 apps are, by payout (all time). Well, the query for that looks like this: ```sql SELECT json::json->>'app', Sum(payout) FROM hive_posts_cache GROUP BY json::json->>'app' LIMIT 10; ``` And that gives us the following results: | App | Payout in SBD| |-------|-------| | steemit/0.1 | 1225887.103 | | busy/2.5.3 | 93830.625 | | dlive/0.1 | 86517.867 | | busy/2.5.4 | 63678.215 | | dtube/0.7 | 55127.314 | | busy/2.5.2 | 42774.839 | | *unknown* | 38544.404 | | steemhunt/1.0.0 | 34304.329 | | esteem/1.6.0 | 31151.406 | | dsound/0.3 | 17792.419 | Kinda cool, right? Or, I can query for specific mentions with certain tags: ```sql SELECT hive_posts.* FROM hive_posts WHERE ( hive_posts.id ) IN ( SELECT hive_posts_cache.post_id FROM hive_posts_cache WHERE ( hive_posts_cache.body LIKE '%@inertia%' ) AND ( hive_posts_cache.body LIKE '%@whatsup%' )) AND ( hive_posts.id ) IN ( SELECT hive_post_tags.post_id FROM hive_post_tags WHERE ( hive_post_tags.tag ) IN ( 'community', 'shoutout' )); ``` That one's saying that each result must have two mentions and either tag, which gives us the following results: [@steemexperience/update-on-the-steem-experience](/@steemexperience/update-on-the-steem-experience) [@wishmaiden/attention-noobs-come-join-the-voice-chat-community-at-steemspeak-com](/@wishmaiden/attention-noobs-come-join-the-voice-chat-community-at-steemspeak-com) [@arsenal49/400-followers-steemspeak-randowhale](/@arsenal49/400-followers-steemspeak-randowhale) [@vocalists-trail/thursday-shoutout](/@vocalists-trail/thursday-shoutout) [@steemexperience/3uaqax-update-on-the-steem-experience](/@steemexperience/3uaqax-update-on-the-steem-experience) [@steemexperience/45ncqm-update-on-the-steem-experience](/@steemexperience/45ncqm-update-on-the-steem-experience) Or, lets say we want to query posts that must have all three tags: `kitty` `pet` and `cute`: ```sql SELECT hive_posts.* FROM hive_posts WHERE ( hive_posts.id ) IN ( SELECT hive_post_tags.post_id FROM hive_post_tags WHERE hive_post_tags.tag = 'kitty') AND ( hive_posts.id ) IN ( SELECT hive_post_tags.post_id FROM hive_post_tags WHERE hive_post_tags.tag = 'pet') AND ( hive_posts.id ) IN ( SELECT hive_post_tags.post_id FROM hive_post_tags WHERE hive_post_tags.tag = 'cute'); ``` I'm really excited about this kind of query because normally, if we don't use SQL to do this kind of query, we get a huge result. For example, you might want all posts with `kitty` plus all posts with `pet` plus all posts with `cute` which would give you 23,844 results. But because I require all three tags in the result, I only get two: [@seoya/my-lovely-kitty-jelly](/@seoya/my-lovely-kitty-jelly) [@justwatchout/8nin82lj](/@justwatchout/8nin82lj) You can also ask for the most upvoted post (at this very moment): ```sql SELECT hive_posts.* FROM hive_posts INNER JOIN hive_posts_cache ON hive_posts_cache.post_id = hive_posts.id ORDER BY hive_posts_cache.rshares DESC LIMIT 1; ``` ... which is this: [@chbartist/right-before-the-daw](/@chbartist/right-before-the-daw) ... and the most downvoted post: ```sql SELECT hive_posts.* FROM hive_posts INNER JOIN hive_posts_cache ON hive_posts_cache.post_id = hive_posts.id ORDER BY hive_posts_cache.rshares ASC LIMIT 1; ``` ... which is this: [@joanaltres/re-elfspice-dan-larimer-so-insecure-he-has-to-self-vote-to-put-his-posts-that-already-are-getting-enough-votes-to-the-top-of-trending-20170802t061503811z](/@joanaltres/re-elfspice-dan-larimer-so-insecure-he-has-to-self-vote-to-put-his-posts-that-already-are-getting-enough-votes-to-the-top-of-trending-20170802t061503811z) Notice that the *highest upvoted* post is distinct from the *highest paid* post. This is because the market prices are a factor, as well as quadratic rewards, and the fact that this payout pre-dated the voting slider. ```sql SELECT hive_posts.* FROM hive_posts INNER JOIN hive_posts_cache ON hive_posts_cache.post_id = hive_posts.id ORDER BY hive_posts_cache.payout DESC LIMIT 1; ``` ... which is this: [@xeroc/piston-web-first-open-source-steem-gui---searching-for-alpha-testers](/@xeroc/piston-web-first-open-source-steem-gui---searching-for-alpha-testers) So yeah, I'm excited about Hivemind. It's a great way to look at the blockchain from a community perspective. **Bonus Query:** Here are my 10 most upvoted (ordered by `rshares`): [@inertia/deer-on-the-dock](/@inertia/deer-on-the-dock) [@inertia/primer-primer](/@inertia/primer-primer) [@inertia/ganymede-a-growing-collection-of-steem-web-tools](/@inertia/ganymede-a-growing-collection-of-steem-web-tools) [@inertia/creating-demand-for-steem-power-vote-negation](/@inertia/creating-demand-for-steem-power-vote-negation) [@inertia/prisma-pumpkin-patch](/@inertia/prisma-pumpkin-patch) [@inertia/dr-otto-vote-bidding-bot](/@inertia/dr-otto-vote-bidding-bot) [@inertia/radiator-0-3-4](/@inertia/radiator-0-3-4) [@inertia/before-and-after](/@inertia/before-and-after) [@inertia/profile](/@inertia/profile) [@inertia/steemit-the-blockchain](/@inertia/steemit-the-blockchain) And my 10 most downvoted: [@inertia/re-dantheman-origin-of-the-right-to-vote-and-how-the-system-denies-this-right-20160813t161354289z](/@inertia/re-dantheman-origin-of-the-right-to-vote-and-how-the-system-denies-this-right-20160813t161354289z) [@inertia/re-berniesanders-why-did-ned-lie-to-the-steem-community-20170315t004719152z](/@inertia/re-berniesanders-why-did-ned-lie-to-the-steem-community-20170315t004719152z) [@inertia/re-fyrstikken-to-the-co-owners-of-steem-i-am-being-stalked-and-flagged-by-bernieslanders-nextgencraphole-every-post-i-make-on-steem-20170406t055739063z](/@inertia/re-fyrstikken-to-the-co-owners-of-steem-i-am-being-stalked-and-flagged-by-bernieslanders-nextgencraphole-every-post-i-make-on-steem-20170406t055739063z) [@inertia/re-ats-david-re-inertia-re-jerrybanfield-i-am-sorry-for-my-last-post-20171010t180440642z](/@inertia/re-ats-david-re-inertia-re-jerrybanfield-i-am-sorry-for-my-last-post-20171010t180440642z) [@inertia/them-slashdot-trolls](/@inertia/them-slashdot-trolls) [@inertia/them-java-coders](/@inertia/them-java-coders) [@inertia/re-berniesanders-re-inertia-re-berniesanders-why-did-ned-lie-to-the-steem-community-20170315t010729361z](/@inertia/re-berniesanders-re-inertia-re-berniesanders-why-did-ned-lie-to-the-steem-community-20170315t010729361z) [@inertia/re-cryptopian68-re-inertia-re-haejin-v4dxybd8-20180205t042726761z](/@inertia/re-cryptopian68-re-inertia-re-haejin-v4dxybd8-20180205t042726761z) [@inertia/re-berniesanders-berniesanders-re-inertiare-haejin-v4dxybd8-20180204t235618208z](/@inertia/re-berniesanders-berniesanders-re-inertiare-haejin-v4dxybd8-20180204t235618208z) [@inertia/re-ats-witness-long-time-user-first-time-witness-20171121t175253701z](/@inertia/re-ats-witness-long-time-user-first-time-witness-20171121t175253701z)
author | inertia | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
permlink | hivemind-queries | ||||||||||||
category | hivemind | ||||||||||||
json_metadata | {"tags":["hivemind","python","communities"],"app":"steemit/0.1","users":["steemitblog"],"image":["https://cdn.steemitimages.com/DQmVrtViVTarPui4ySKgwdVbm7k2wDmhsmGnaT5KH9cfQYr/image.png"],"links":["https://github.com/steemit/hivemind","https://steemit.com/steemit/@steemitblog/applications-team-update-hivemind-communities-sign-ups-developer-tools-condenser-and-more","/@steemexperience/update-on-the-steem-experience","/@wishmaiden/attention-noobs-come-join-the-voice-chat-community-at-steemspeak-com","/@arsenal49/400-followers-steemspeak-randowhale","/@vocalists-trail/thursday-shoutout","/@steemexperience/3uaqax-update-on-the-steem-experience","/@steemexperience/45ncqm-update-on-the-steem-experience","/@seoya/my-lovely-kitty-jelly","/@justwatchout/8nin82lj","/@chbartist/right-before-the-daw","/@joanaltres/re-elfspice-dan-larimer-so-insecure-he-has-to-self-vote-to-put-his-posts-that-already-are-getting-enough-votes-to-the-top-of-trending-20170802t061503811z","/@xeroc/piston-web-first-open-source-steem-gui---searching-for-alpha-testers","/@inertia/deer-on-the-dock","/@inertia/primer-primer","/@inertia/ganymede-a-growing-collection-of-steem-web-tools","/@inertia/creating-demand-for-steem-power-vote-negation","/@inertia/prisma-pumpkin-patch","/@inertia/dr-otto-vote-bidding-bot","/@inertia/radiator-0-3-4","/@inertia/before-and-after","/@inertia/profile","/@inertia/steemit-the-blockchain","/@inertia/re-dantheman-origin-of-the-right-to-vote-and-how-the-system-denies-this-right-20160813t161354289z","/@inertia/re-berniesanders-why-did-ned-lie-to-the-steem-community-20170315t004719152z","/@inertia/re-fyrstikken-to-the-co-owners-of-steem-i-am-being-stalked-and-flagged-by-bernieslanders-nextgencraphole-every-post-i-make-on-steem-20170406t055739063z","/@inertia/re-ats-david-re-inertia-re-jerrybanfield-i-am-sorry-for-my-last-post-20171010t180440642z","/@inertia/them-slashdot-trolls","/@inertia/them-java-coders","/@inertia/re-berniesanders-re-inertia-re-berniesanders-why-did-ned-lie-to-the-steem-community-20170315t010729361z","/@inertia/re-cryptopian68-re-inertia-re-haejin-v4dxybd8-20180205t042726761z","/@inertia/re-berniesanders-berniesanders-re-inertiare-haejin-v4dxybd8-20180204t235618208z","/@inertia/re-ats-witness-long-time-user-first-time-witness-20171121t175253701z"],"format":"markdown"} | ||||||||||||
created | 2018-08-11 07:19:15 | ||||||||||||
last_update | 2018-08-11 16:46:36 | ||||||||||||
depth | 0 | ||||||||||||
children | 32 | ||||||||||||
last_payout | 2018-08-18 07:19:15 | ||||||||||||
cashout_time | 1969-12-31 23:59:59 | ||||||||||||
total_payout_value | 0.000 HBD | ||||||||||||
curator_payout_value | 16.108 HBD | ||||||||||||
pending_payout_value | 0.000 HBD | ||||||||||||
promoted | 0.000 HBD | ||||||||||||
body_length | 9,193 | ||||||||||||
author_reputation | 346,568,901,399,561 | ||||||||||||
root_title | "Hivemind Queries" | ||||||||||||
beneficiaries |
| ||||||||||||
max_accepted_payout | 100,000.000 HBD | ||||||||||||
percent_hbd | 0 | ||||||||||||
post_id | 67,830,964 | ||||||||||||
net_rshares | 52,969,113,362,423 | ||||||||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
hr1 | 0 | 53,271,124,609 | 0.02% | ||
pfunk | 0 | 1,286,450,272,967 | 25% | ||
noisy | 0 | 1,968,032,850,644 | 100% | ||
lola-carola | 0 | 349,260,282 | 1.05% | ||
hedge-x | 0 | 0 | 100% | ||
intelliguy | 0 | 13,057,017,174 | 100% | ||
cheftony | 0 | 33,575,196,092 | 5% | ||
gtg | 0 | 5,586,503,612,047 | 100% | ||
fyrstikken | 0 | 29,023,978,607,775 | 100% | ||
matt-a | 0 | 4,191,797,886,815 | 100% | ||
elyaque | 0 | 68,956,782 | 20% | ||
mrwang | 0 | 336,793,257 | 10.5% | ||
inertia | 0 | 1,581,122,582,887 | 100% | ||
arcange | 0 | 28,238,610,674 | 3% | ||
raphaelle | 0 | 1,924,099,524 | 3% | ||
arrowj | 0 | 19,830,342,280 | 100% | ||
brianphobos | 0 | 13,805,127,794 | 10% | ||
fabien | 0 | 1,976,082,813,229 | 100% | ||
goode | 0 | 169,330,521 | 21% | ||
scaredycatguide | 0 | 15,668,874,120 | 20% | ||
freyman | 0 | 12,169,426,635 | 100% | ||
gonzo | 0 | 415,347,519 | 25% | ||
johnvibes | 0 | 2,324,257,936 | 3% | ||
steevc | 0 | 37,184,332,715 | 17% | ||
mattclarke | 0 | 0 | 52% | ||
contentjunkie | 0 | 366,627,941,576 | 100% | ||
azz | 0 | 325,025,948 | 100% | ||
aggroed | 0 | 629,046,543,099 | 100% | ||
jag | 0 | 302,569,933 | 100% | ||
immarojas | 0 | 33,451,253,360 | 20% | ||
weeds | 0 | 21,582,893,252 | 100% | ||
reaction | 0 | 11,740,845,926 | 100% | ||
movietrailers | 0 | 39,201,524,508 | 100% | ||
greer184 | 0 | 13,797,771,266 | 75% | ||
statsbot | 0 | 285,505,287 | 100% | ||
newsbot | 0 | 285,444,126 | 100% | ||
crashoverride | 0 | 185,153,056 | 100% | ||
cartman | 0 | 2,183,599,627 | 100% | ||
surpassinggoogle | 0 | 3,885,569,575,863 | 21% | ||
aries | 0 | 179,561,005 | 100% | ||
fulldisclosure | 0 | 178,849,276 | 100% | ||
cancer | 0 | 176,987,448 | 100% | ||
trendz | 0 | 176,820,508 | 100% | ||
ketchup | 0 | 176,709,028 | 100% | ||
caz | 0 | 177,416,640 | 100% | ||
dickbutt | 0 | 2,941,069,214 | 100% | ||
peeweeherman | 0 | 456,179,590 | 100% | ||
cowboycurtis | 0 | 394,963,208 | 100% | ||
jambii | 0 | 394,892,766 | 100% | ||
coolcat | 0 | 692,703,812 | 100% | ||
opall | 0 | 686,994,941 | 100% | ||
elviss | 0 | 588,471,452 | 100% | ||
chair | 0 | 690,646,152 | 100% | ||
conky | 0 | 823,797,380 | 100% | ||
dademurphy | 0 | 683,183,703 | 100% | ||
chart | 0 | 684,222,793 | 100% | ||
mrssteve | 0 | 681,955,316 | 100% | ||
towelie | 0 | 2,700,867,979 | 100% | ||
philipjfry | 0 | 2,638,539,588 | 100% | ||
mrhanky | 0 | 1,934,792,549 | 100% | ||
popcornmachine | 0 | 675,850,850 | 100% | ||
wilburtsmythe | 0 | 674,333,746 | 100% | ||
bitrx | 0 | 672,943,853 | 100% | ||
bluetrade | 0 | 674,237,135 | 100% | ||
shape | 0 | 668,581,021 | 100% | ||
electrowarrior | 0 | 6,071,307,743 | 100% | ||
highfive | 0 | 660,663,102 | 100% | ||
jebus | 0 | 660,341,402 | 100% | ||
clarence | 0 | 663,207,554 | 100% | ||
steemet | 0 | 657,004,011 | 100% | ||
rgeddes | 0 | 7,884,649,071 | 100% | ||
qantheman | 0 | 652,550,609 | 100% | ||
charity | 0 | 652,655,306 | 100% | ||
annul | 0 | 651,069,934 | 100% | ||
suntzu | 0 | 646,381,419 | 100% | ||
mchammer | 0 | 643,353,233 | 100% | ||
vanilla | 0 | 640,435,719 | 100% | ||
guerilla | 0 | 639,636,064 | 100% | ||
icet | 0 | 642,496,417 | 100% | ||
nedd | 0 | 636,303,342 | 100% | ||
kickass | 0 | 633,826,989 | 100% | ||
oreo | 0 | 633,505,901 | 100% | ||
curei | 0 | 628,589,700 | 100% | ||
currie | 0 | 624,923,699 | 100% | ||
austinpowers | 0 | 1,509,670,747 | 100% | ||
shapeshifter | 0 | 611,672,686 | 100% | ||
stun | 0 | 610,000,447 | 100% | ||
icecube | 0 | 607,719,071 | 100% | ||
view | 0 | 607,540,305 | 100% | ||
kitt | 0 | 602,447,144 | 100% | ||
katt | 0 | 601,609,195 | 100% | ||
itchy | 0 | 601,363,243 | 100% | ||
scratchy | 0 | 601,334,319 | 100% | ||
krusty | 0 | 603,279,679 | 100% | ||
scene | 0 | 599,158,122 | 100% | ||
quimby | 0 | 593,760,952 | 100% | ||
wiggum | 0 | 601,578,179 | 100% | ||
sideshowbob | 0 | 589,387,986 | 100% | ||
drnick | 0 | 2,769,209,177 | 100% | ||
crowdfundedwhale | 0 | 75,529,414,867 | 15% | ||
nigelmarkdias | 0 | 1,608,129,259 | 1% | ||
fentan99 | 0 | 12,707,493,876 | 100% | ||
pes7md | 0 | 224,467,240 | 10.5% | ||
seablue | 0 | 121,589,298,002 | 100% | ||
chesatochi | 0 | 4,889,577,919 | 3% | ||
wilbur | 0 | 46,272,634,260 | 100% | ||
ladder | 0 | 2,019,012,078 | 100% | ||
leongkhan | 0 | 497,613,395,506 | 50% | ||
hansolo | 0 | 651,077,536 | 100% | ||
ihsan19 | 0 | 98,133,652 | 10.5% | ||
jgpro | 0 | 73,320,267 | 10.5% | ||
umami | 0 | 149,483,395 | 100% | ||
markkujantunen | 0 | 24,197,979,152 | 32% | ||
bloghound | 0 | 708,079,093 | 3.15% | ||
southparkqueen | 0 | 1,629,020,303 | 21% | ||
toniesteem | 0 | 281,205,685 | 10.5% | ||
ljpaez | 0 | 246,483,500 | 10.5% | ||
moksamol | 0 | 2,541,036,183 | 10.5% | ||
foways | 0 | 576,503,176 | 10.5% | ||
lotfiuser | 0 | 81,624,213 | 10.5% | ||
eurogee | 0 | 88,140,474 | 0.42% | ||
jakipatryk | 0 | 61,084,978,683 | 100% | ||
helo | 0 | 28,443,323,846 | 100% | ||
mercadosaway | 0 | 185,971,028 | 13% | ||
bobiecayao | 0 | 224,492,710 | 10.5% | ||
cobloc | 0 | 326,143,101 | 10.5% | ||
dysc0rd | 0 | 85,218,455 | 21% | ||
bluemist | 0 | 188,190,069,014 | 100% | ||
sunnylife | 0 | 1,818,633,983 | 2.1% | ||
dwightjaden | 0 | 2,136,501,377 | 21% | ||
themarkymark | 0 | 40,791,712,223 | 100% | ||
yanes94 | 0 | 21,195,278,592 | 100% | ||
elbleess | 0 | 98,805,885 | 10.5% | ||
kumagang | 0 | 63,996,403 | 10.5% | ||
baboyed1000 | 0 | 84,333,443 | 4.2% | ||
minecraftfan | 0 | 304,269,157 | 100% | ||
hotties | 0 | 65,733,721 | 10% | ||
hog | 0 | 65,733,624 | 10% | ||
racecar | 0 | 65,741,767 | 10% | ||
hogzilla | 0 | 65,741,753 | 10% | ||
skunkape | 0 | 65,741,744 | 10% | ||
fishmon | 0 | 143,426,753 | 50% | ||
steemitri | 0 | 15,498,935,692 | 13% | ||
mhel | 0 | 191,989,820 | 4.2% | ||
joshruiz | 0 | 187,188,680 | 10.5% | ||
kofspades | 0 | 154,037,257 | 10.5% | ||
alexzicky | 0 | 15,376,567,724 | 25% | ||
crypto-whiz | 0 | 67,906,433 | 10.5% | ||
mahmuddin | 0 | 145,935,987 | 21% | ||
tradeownsystems | 0 | 91,558,559 | 21% | ||
chunnorris | 0 | 125,933,833 | 10.5% | ||
shippou95 | 0 | 161,820,040 | 10.5% | ||
pjmisa | 0 | 227,571,673 | 10.5% | ||
free999enigma | 0 | 162,298,915,647 | 100% | ||
gray00 | 0 | 3,295,592,001 | 100% | ||
mustaphaaoufi | 0 | 387,013,022 | 10.5% | ||
plojslydia | 0 | 106,244,964 | 21% | ||
nessyquel | 0 | 466,187,021 | 21% | ||
crokkon | 0 | 29,558,691,877 | 50% | ||
adnanbtc | 0 | 88,251,155 | 10.5% | ||
princekelly | 0 | 77,424,400 | 21% | ||
evolutionnow | 0 | 126,477,828 | 10.5% | ||
marysent | 0 | 122,817,081 | 2.1% | ||
davealemana | 0 | 94,673,523 | 21% | ||
fernandorivera | 0 | 268,043,763 | 100% | ||
smafey | 0 | 145,659,494 | 10.5% | ||
hillaryaa | 0 | 123,921,961 | 10.5% | ||
ckbahdon | 0 | 76,871,564 | 10.5% | ||
yabapmatt | 0 | 0 | 100% | ||
mcfarhat | 0 | 25,298,915,924 | 30% | ||
meno | 0 | 8,290,860,516 | 54% | ||
emdesan | 0 | 476,363,382 | 10% | ||
jrawsthorne | 0 | 5,149,153,039 | 100% | ||
penantang | 0 | 63,810,021 | 10.5% | ||
maaz23 | 0 | 179,171,891 | 10.5% | ||
cryptocreme | 0 | 3,734,224,547 | 100% | ||
isaganicabrales | 0 | 84,472,968 | 10.5% | ||
afterglow | 0 | 3,041,535,000 | 50% | ||
steemitcards | 0 | 95,188,358 | 50% | ||
amarm | 0 | 64,214,841 | 10.5% | ||
barzah | 0 | 8,356,512,747 | 100% | ||
emrebeyler | 0 | 197,876,685,822 | 100% | ||
kerry234 | 0 | 243,520,942 | 21% | ||
muksalbaihaqi | 0 | 63,944,841 | 10.5% | ||
attoan.cmt | 0 | 6,601,507,178 | 10.5% | ||
ekjosh | 0 | 97,437,227 | 21% | ||
eduardonarvaez | 0 | 64,181,814 | 10.5% | ||
smitop | 0 | 492,294,952 | 100% | ||
zohaib715 | 0 | 77,332,436 | 10.5% | ||
fidel66 | 0 | 94,340,512 | 21% | ||
klizo | 0 | 79,452,770 | 10.5% | ||
aehiguese | 0 | 67,750,839 | 21% | ||
itchyfeetdonica | 0 | 11,558,508,781 | 4.2% | ||
enjoyy | 0 | 120,245,024 | 10.5% | ||
jameszenartist | 0 | 3,663,761,483 | 100% | ||
hasan086 | 0 | 116,431,305 | 10.5% | ||
williams-owb | 0 | 172,434,056 | 21% | ||
jecren | 0 | 63,891,547 | 10.5% | ||
kartiksingh | 0 | 151,619,773,143 | 99% | ||
jpphotography | 0 | 0 | 60% | ||
tomatom | 0 | 200,757,339 | 10.5% | ||
berylwills | 0 | 242,572,282 | 21% | ||
paragon99 | 0 | 105,772,674 | 10.5% | ||
ezinwakelvin | 0 | 92,462,946 | 10.5% | ||
sirfreeman | 0 | 127,163,534 | 10.5% | ||
yourmercury | 0 | 108,919,091 | 21% | ||
mkmk | 0 | 107,971,951 | 10.5% | ||
levinvillas | 0 | 81,467,657 | 5.25% | ||
goddywise4-eu | 0 | 91,376,247 | 21% | ||
fadiji09 | 0 | 72,072,403 | 6.3% | ||
satoshi-group | 0 | 535,697,860 | 100% | ||
earnxtreme | 0 | -607,502,074 | -100% | ||
talivet | 0 | 98,491,233 | 10.5% | ||
chiboyzz | 0 | 82,995,000 | 10.5% | ||
leslierevales | 0 | 95,397,982 | 10.5% | ||
mrxplicit | 0 | 274,049,849 | 21% | ||
mariaputri17 | 0 | 94,223,035 | 21% | ||
bluegums | 0 | 1,199,725,573 | 100% | ||
dynamicrypto | 0 | 581,134,721 | 1.05% | ||
fredoski | 0 | 105,606,188 | 10.5% | ||
jayfamous | 0 | 94,435,494 | 21% | ||
onin91 | 0 | 74,819,684 | 10.5% | ||
pauloliverpino | 0 | 64,223,077 | 10.5% | ||
iamfo | 0 | 268,775,231 | 10.5% | ||
strings | 0 | 186,125,515 | 10.5% | ||
pboss123 | 0 | 91,523,670 | 10.5% | ||
richgang | 0 | 123,954,395 | 10.5% | ||
ligarayk | 0 | 727,791,971 | 21% | ||
khusairi | 0 | 433,540,956 | 10.5% | ||
asfuriah | 0 | 97,470,459 | 21% | ||
crypto4euro | 0 | 498,709,102 | 10.5% | ||
holger80 | 0 | 65,756,578,148 | 24% | ||
babaj | 0 | 65,793,604 | 21% | ||
hashas120 | 0 | 97,272,163 | 21% | ||
allaboutme | 0 | 63,998,826 | 10.5% | ||
cutemachine | 0 | 16,072,830,324 | 100% | ||
pelephotography | 0 | 129,897,427 | 21% | ||
luijii | 0 | 109,639,885 | 21% | ||
raquelita | 0 | 75,498,971 | 10.5% | ||
shepz1 | 0 | 0 | 100% | ||
camilus | 0 | 161,238,995 | 21% | ||
lykaypajaro | 0 | 68,596,249 | 10.5% | ||
maanabdullah | 0 | 138,396,469 | 10.5% | ||
noechie1827 | 0 | 63,959,609 | 10.5% | ||
charleswealth | 0 | 203,270,165 | 10.5% | ||
preciousimo | 0 | 114,817,943 | 10.5% | ||
kingsman2 | 0 | 63,890,567 | 10.5% | ||
gohenry | 0 | 215,494,311 | 10.5% | ||
victoriakorol | 0 | 75,031,958 | 10.5% | ||
starzy | 0 | 288,067,063 | 10.5% | ||
mrposyble | 0 | 335,284,579 | 10.5% | ||
iamwhatiamnot | 0 | 90,877,998 | 4.2% | ||
pranks | 0 | 245,115,247 | 10% | ||
antigenx | 0 | 3,194,124,665 | 10.5% | ||
charitybot | 0 | 16,881,097,455 | 100% | ||
hoobeehey | 0 | 79,021,994 | 21% | ||
vegasgambler | 0 | 172,601,507 | 6.3% | ||
vanj | 0 | 106,148,790 | 10.5% | ||
alex04 | 0 | 61,881,599 | 10.5% | ||
leebaong | 0 | 124,500,348 | 1.05% | ||
kul0tzzz | 0 | 91,357,908 | 21% | ||
benjaspa | 0 | 63,959,554 | 10.5% | ||
sissyjill | 0 | 112,150,951 | 7% | ||
dzued | 0 | 80,280,941 | 10.5% | ||
syamsudduha2 | 0 | 76,127,760 | 10.5% | ||
originalmrspice | 0 | 7,526,378,916 | 10.5% | ||
atjehsteemit | 0 | 157,786,207 | 10.5% | ||
ulfiatu.akiya | 0 | 106,118,531 | 21% | ||
morbyjohn | 0 | 177,300,413 | 7% | ||
lstriker | 0 | 87,322,108 | 10.5% | ||
pojgaerlan | 0 | 94,386,691 | 21% | ||
shahaan | 0 | 700,001,934 | 10.5% | ||
jims | 0 | 94,198,213 | 21% | ||
lifediaries2nd | 0 | 66,478,231 | 10.5% | ||
thamrin | 0 | 128,096,406 | 21% | ||
monwalker | 0 | 64,231,567 | 10.5% | ||
freudy | 0 | 64,003,956 | 10.5% | ||
khloyd | 0 | 63,927,492 | 10.5% | ||
ninjarobo | 0 | 63,891,961 | 10.5% | ||
akaikeru | 0 | 63,934,973 | 10.5% | ||
stuckinacup | 0 | 63,944,006 | 10.5% | ||
sunshinebear | 0 | 180,576,170 | 10.5% | ||
kabir88 | 0 | 47,773,022,574 | 50% | ||
isaaceko | 0 | 104,873,097 | 21% | ||
jeanp | 0 | 63,994,916 | 10.5% | ||
orhem | 0 | 66,881,942 | 10.5% | ||
saifuddin07 | 0 | 68,786,525 | 10.5% | ||
jefry113 | 0 | 128,277,336 | 21% | ||
theunlimited | 0 | 67,946,232 | 10.5% | ||
mariusjuk | 0 | 43,760,545,800 | 100% | ||
sereze | 0 | 394,716,914 | 50% | ||
mutiarahmi | 0 | 80,107,458 | 10.5% | ||
nonsqtr | 0 | 105,975,110 | 10.5% | ||
virgo27 | 0 | 108,380,689 | 10.5% | ||
gwapoaller | 0 | 64,189,041 | 10.5% | ||
muzzlealem | 0 | 63,846,111 | 10.5% | ||
obaidb2 | 0 | 3,059,564,638 | 5% | ||
murhadi9 | 0 | 87,922,913 | 10.5% | ||
queenlyka | 0 | 64,230,331 | 10.5% | ||
bitmycoin | 0 | 555,292,212 | 10.5% | ||
phoebedoll | 0 | 82,273,868 | 10.5% | ||
afefe | 0 | 63,969,773 | 10.5% | ||
muammarnst | 0 | 63,891,868 | 10.5% | ||
chrisjayl | 0 | 71,437,898 | 10.5% | ||
arrahman90 | 0 | 65,556,527 | 10.5% | ||
mikemaphu | 0 | 108,924,755 | 10.5% | ||
erenai | 0 | 64,052,982 | 10.5% | ||
blaqboyikott | 0 | 63,881,568 | 10.5% | ||
brapollo29 | 0 | 83,607,475 | 5.25% | ||
ari16 | 0 | 222,490,539 | 10.5% | ||
paulasands | 0 | 64,119,939 | 10.5% | ||
charitymemes | 0 | 574,003,351 | 100% | ||
yennarido | 0 | 931,699,458 | 100% | ||
muzaiyan | 0 | 64,161,799 | 10.5% | ||
fictionalfacts | 0 | 1,064,248,065 | 100% | ||
loudetteiam | 0 | 236,834,581 | 10.5% | ||
sahiba | 0 | 63,830,657 | 10.5% | ||
wealth4good | 0 | 88,736,411 | 1.05% | ||
cradle | 0 | 73,693,617 | 10.5% | ||
meanbees | 0 | 0 | 100% | ||
sharminwadud | 0 | 63,701,265 | 10.5% | ||
lykia | 0 | 64,070,749 | 10.5% | ||
sabiondico | 0 | 64,118,772 | 10.5% | ||
dondondamayo | 0 | 64,087,912 | 10.5% | ||
jeef-zone | 0 | 78,310,828 | 10.5% | ||
anime.lovers | 0 | 63,908,291 | 10.5% | ||
joco0820 | 0 | 63,988,871 | 10.5% | ||
geezyweezy | 0 | 106,546,403 | 21% | ||
molynar | 0 | 511,127,655 | 100% | ||
leeyen23 | 0 | 83,158,167 | 10.5% | ||
gerliepepito | 0 | 63,828,002 | 10.5% | ||
jembee | 0 | 262,236,025 | 10.5% | ||
nigerian-yogagal | 0 | 71,375,700 | 10.5% | ||
etaletai | 0 | 138,740,091 | 10.5% | ||
houseandcanvas | 0 | 551,189,503 | 100% | ||
aikee | 0 | 63,818,940 | 10.5% | ||
arisviyo | 0 | 113,056,586 | 10.5% | ||
jemzem | 0 | 63,933,250 | 10% | ||
mayorhero | 0 | 64,202,123 | 10.5% | ||
geotorb | 0 | 64,110,208 | 10.5% | ||
gemz2inspire | 0 | 64,101,327 | 10.5% | ||
jomar07 | 0 | 95,378,895 | 10.5% | ||
mukulcclbd | 0 | 63,975,681 | 10.5% | ||
membee | 0 | 63,888,997 | 10.5% | ||
blessedsteemer | 0 | 64,709,755 | 10.5% | ||
kyanzieuno | 0 | 137,182,153 | 10.5% | ||
steemitkyle | 0 | 63,862,471 | 10.5% | ||
halim08 | 0 | 68,532,954 | 10.5% | ||
byash | 0 | 115,617,410 | 21% | ||
anomt | 0 | 219,155,643 | 21% | ||
christinevelasco | 0 | 63,867,390 | 10.5% | ||
mayib | 0 | 90,288,093 | 10.5% | ||
liquidpoopcorn | 0 | 64,117,833 | 10.5% | ||
mojacko | 0 | 98,422,621 | 10.5% | ||
donnyandrian | 0 | 103,327,436 | 21% | ||
gormogon | 0 | 4,029,478,494 | 1% | ||
tigerstripe | 0 | 4,906,996,766 | 10% | ||
dotman-art | 0 | 94,931,287 | 10.5% | ||
hermanasquintero | 0 | 94,429,753 | 16.8% | ||
devondrjackson | 0 | 64,109,629 | 10.5% | ||
richardgreen | 0 | 197,773,644 | 10.5% | ||
briandominise | 0 | 64,005,326 | 10.5% | ||
mwamin7 | 0 | 63,851,875 | 10.5% | ||
albertotang | 0 | 75,086,742 | 21% | ||
cebusteemer | 0 | 63,890,409 | 10.5% | ||
jezelle | 0 | 64,080,101 | 10.5% | ||
thememeguy | 0 | 564,508,454 | 100% | ||
johngoad | 0 | 517,421,938 | 21% | ||
noodles09 | 0 | 64,183,364 | 10.5% | ||
kayegrasya | 0 | 85,652,302 | 10.5% | ||
sirwayneweezy | 0 | 63,933,256 | 10.5% | ||
edundayo | 0 | 63,876,582 | 10.5% | ||
kamuoyu | 0 | 87,775,533 | 100% | ||
badgamer | 0 | 17,476,342,486 | 100% | ||
dynamicshine | 0 | 162,526,148 | 8.4% | ||
cynicalcake | 0 | 232,694,285 | 10.5% | ||
elvinjohn21 | 0 | 63,847,212 | 10.5% | ||
cebuana | 0 | 72,187,582 | 10.5% | ||
osky | 0 | 64,120,634 | 10.5% | ||
r5yn1r4 | 0 | 63,915,132 | 10.5% | ||
gladbacher1900 | 0 | 502,409,639 | 100% | ||
maintang03 | 0 | 63,807,685 | 10.5% | ||
dantoyin | 0 | 64,123,741 | 10.5% | ||
joseaybar1 | 0 | 64,114,411 | 10.5% | ||
andylsyahputra | 0 | 64,003,383 | 10.5% | ||
piyova007 | 0 | 97,481,418 | 21% | ||
crypto34 | 0 | 97,719,707 | 21% | ||
wanderinglynelle | 0 | 63,847,212 | 10.5% | ||
freitzie123 | 0 | 63,967,126 | 10.5% | ||
meaow | 0 | 610,211,820 | 100% | ||
ramonjvp | 0 | 128,413,137 | 21% | ||
sensen13 | 0 | 94,398,561 | 21% | ||
gelique | 0 | 63,930,855 | 10.5% | ||
glendale05 | 0 | 63,847,212 | 10.5% | ||
definethedollar | 0 | 563,645,687 | 100% | ||
citysitebuilders | 0 | 64,022,845 | 10.5% | ||
medyomaldita | 0 | 64,162,990 | 10.5% | ||
caroljayne02 | 0 | 63,967,126 | 10.5% | ||
lemcervantes | 0 | 64,007,173 | 10.5% | ||
unika-ejes | 0 | 63,967,126 | 10.5% | ||
reaper7 | 0 | 341,817,162 | 100% | ||
adigun12 | 0 | 91,541,605 | 21% | ||
guanare29 | 0 | 492,843,728 | 100% | ||
yollardannotlar | 0 | 572,924,840 | 50% | ||
alamgir140491 | 0 | 81,364,811 | 10.5% | ||
kanhiyachauhan | 0 | 60,770,807 | 10% | ||
sachintyagi | 0 | 61,154,414 | 100% | ||
juli4n | 0 | 103,311,463 | 100% | ||
fako | 0 | 463,450,658 | 100% | ||
ashokram | 0 | 691,331,644 | 100% | ||
sojol527 | 0 | 73,718,030 | 10.5% | ||
rajmolo | 0 | 63,994,695 | 10.5% | ||
meanroosterfarm | 0 | 0 | 100% | ||
saiduzzaman | 0 | 182,868,210 | 10.5% | ||
vikas-rai | 0 | 610,069,251 | 100% | ||
hmuajanice | 0 | 63,856,794 | 10.5% | ||
shahwajahat | 0 | 203,733,582 | 100% | ||
abnep | 0 | 383,127,651 | 100% | ||
charliep82 | 0 | 88,721,199 | 100% | ||
waleedtee | 0 | 0 | 100% |
@inertia, do you have an idea of the specs required for just the postgres instance? My fellow flag enthusiasts are interested in the prospect of housing our own relational database of any sort and are trying to get a grasp on the requirements. Resteemed and will revisit to vote this quality contribution. (VP too low)
author | anthonyadavisii |
---|---|
permlink | re-inertia-hivemind-queries-20180813t015416318z |
category | hivemind |
json_metadata | {"tags":["hivemind"],"users":["inertia"],"app":"steemit/0.1"} |
created | 2018-08-13 01:54:18 |
last_update | 2018-08-13 01:54:18 |
depth | 1 |
children | 1 |
last_payout | 2018-08-20 01:54: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 | 319 |
author_reputation | 212,565,108,198,998 |
root_title | "Hivemind Queries" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 68,007,590 |
net_rshares | 0 |
I’ve been doing fine on 32GB, 6 cores. It could probably get by with way less, at the expense of performance, obviously. I run Postgres on my local dev laptop for testing. It never gets in the way.
author | inertia |
---|---|
permlink | re-anthonyadavisii-re-inertia-hivemind-queries-20180813t021943455z |
category | hivemind |
json_metadata | {"tags":["hivemind"],"app":"steemit/0.1"} |
created | 2018-08-13 02:19:42 |
last_update | 2018-12-21 19:56:09 |
depth | 2 |
children | 0 |
last_payout | 2018-08-20 02:19: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 | 200 |
author_reputation | 346,568,901,399,561 |
root_title | "Hivemind Queries" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 68,009,135 |
net_rshares | 0 |
Yes @inertia, but someone might say, “I love the idea, but I also love Ruby.” This looks harder than it might need to be. :)
author | arrowj |
---|---|
permlink | re-inertia-hivemind-queries-20180811t162331476z |
category | hivemind |
json_metadata | {"tags":["hivemind"],"users":["inertia"],"app":"steemit/0.1"} |
created | 2018-08-11 16:23:30 |
last_update | 2018-08-11 16:23:30 |
depth | 1 |
children | 1 |
last_payout | 2018-08-18 16:23:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.995 HBD |
curator_payout_value | 0.090 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 124 |
author_reputation | 3,468,352,736,421 |
root_title | "Hivemind Queries" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 67,871,856 |
net_rshares | 1,557,405,744,143 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
inertia | 0 | 1,557,405,744,143 | 100% |
That's an idea. Like some kind of ORM?
author | inertia |
---|---|
permlink | re-arrowj-re-inertia-hivemind-queries-20180811t162659502z |
category | hivemind |
json_metadata | {"tags":["hivemind"],"app":"steemit/0.1"} |
created | 2018-08-11 16:27:00 |
last_update | 2018-08-11 16:27:00 |
depth | 2 |
children | 0 |
last_payout | 2018-08-18 16:27:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.025 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 39 |
author_reputation | 346,568,901,399,561 |
root_title | "Hivemind Queries" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 67,872,139 |
net_rshares | 19,532,887,145 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
arrowj | 0 | 19,532,887,145 | 100% |
From a community perspective...it's okay I'll like to be a part of it...
author | asaha |
---|---|
permlink | re-inertia-hivemind-queries-20180811t122416249z |
category | hivemind |
json_metadata | {"tags":["hivemind"],"app":"steemit/0.1"} |
created | 2018-08-11 12:24:15 |
last_update | 2018-08-11 12:24:15 |
depth | 1 |
children | 0 |
last_payout | 2018-08-18 12:24:15 |
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 | 307,268,692,737 |
root_title | "Hivemind Queries" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 67,851,970 |
net_rshares | 0 |
Being able to pull this data into a sql database will have massive use implications we can run on steemit. We could see better curation programs, ways to enhance our feeds and find relevant content faster. Hivemind looks very cool, gave you a follow @inertia and look forward to learning more about this initiative.
author | chekohler |
---|---|
permlink | re-inertia-hivemind-queries-20180811t093703860z |
category | hivemind |
json_metadata | {"community":"busy","app":"busy/2.5.4","format":"markdown","tags":["hivemind"],"users":["inertia"],"links":["/@inertia"],"image":[]} |
created | 2018-08-11 09:37:06 |
last_update | 2018-08-11 09:37:06 |
depth | 1 |
children | 2 |
last_payout | 2018-08-18 09:37:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.015 HBD |
curator_payout_value | 0.004 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 317 |
author_reputation | 524,332,427,393,665 |
root_title | "Hivemind Queries" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 67,840,050 |
net_rshares | 15,255,247,726 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
markkujantunen | 0 | 15,255,247,726 | 20% |
That's precisely the motivation for building it in the first place.
author | markkujantunen |
---|---|
permlink | re-chekohler-re-inertia-hivemind-queries-20180811t135205978z |
category | hivemind |
json_metadata | {"tags":["hivemind"],"app":"steemit/0.1"} |
created | 2018-08-11 13:52:06 |
last_update | 2018-08-11 13:52:06 |
depth | 2 |
children | 1 |
last_payout | 2018-08-18 13:52: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 | 67 |
author_reputation | 624,829,749,092,114 |
root_title | "Hivemind Queries" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 67,858,516 |
net_rshares | 0 |
<em>That's precisely the Motivation for building It in the first place. </em> <sup>- markkujantunen</sup> --- <sup><sup><em>I'm a bot. I detect haiku.</em></sup></sup>
author | haikubot |
---|---|
permlink | 20180811t135213292z |
category | hivemind |
json_metadata | {"tags":["test"],"app":"steemjs/examples"} |
created | 2018-08-11 13:52:12 |
last_update | 2018-08-11 13:52:12 |
depth | 3 |
children | 0 |
last_payout | 2018-08-18 13:52: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 | 273 |
author_reputation | 1,821,968,927,944 |
root_title | "Hivemind Queries" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 67,858,529 |
net_rshares | 0 |
Can I run Hivermind on an Ubuntu virtual machine?
author | chesatochi |
---|---|
permlink | re-inertia-hivemind-queries-20180811t124727845z |
category | hivemind |
json_metadata | {"tags":["hivemind"],"app":"steemit/0.1"} |
created | 2018-08-11 12:47:30 |
last_update | 2018-08-11 12:47:30 |
depth | 1 |
children | 1 |
last_payout | 2018-08-18 12:47:30 |
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 | 49 |
author_reputation | 235,233,928,560,443 |
root_title | "Hivemind Queries" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 67,853,594 |
net_rshares | 0 |
Yes. I’m running it on [Digital Ocean](https://steemit.com/vps/@inertia/virtual-private-server).
author | inertia |
---|---|
permlink | re-chesatochi-re-inertia-hivemind-queries-20180811t154649966z |
category | hivemind |
json_metadata | {"tags":["hivemind"],"links":["https://steemit.com/vps/@inertia/virtual-private-server"],"app":"steemit/0.1"} |
created | 2018-08-11 15:46:48 |
last_update | 2018-08-11 15:46:48 |
depth | 2 |
children | 0 |
last_payout | 2018-08-18 15:46: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 | 97 |
author_reputation | 346,568,901,399,561 |
root_title | "Hivemind Queries" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 67,868,670 |
net_rshares | 0 |
.
author | crokkon |
---|---|
permlink | re-inertia-hivemind-queries-20180811t113038276z |
category | hivemind |
json_metadata | "{"app": ""}" |
created | 2018-08-11 11:30:39 |
last_update | 2022-09-18 11:31:15 |
depth | 1 |
children | 1 |
last_payout | 2018-08-18 11:30: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 | 1 |
author_reputation | 81,214,366,861,104 |
root_title | "Hivemind Queries" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 67,848,055 |
net_rshares | 0 |
Correct, running it on my own gives me acccess to more than just the API endpoints. Right now, it’s taking up about 310 GB disk.
author | inertia |
---|---|
permlink | re-crokkon-re-inertia-hivemind-queries-20180811t155229285z |
category | hivemind |
json_metadata | {"tags":["hivemind"],"app":"steemit/0.1"} |
created | 2018-08-11 15:52:30 |
last_update | 2018-08-11 15:52:30 |
depth | 2 |
children | 0 |
last_payout | 2018-08-18 15:52:30 |
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 | 129 |
author_reputation | 346,568,901,399,561 |
root_title | "Hivemind Queries" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 67,869,133 |
net_rshares | 0 |
Looking sharp. One thing I am skeptical about is syncing. It should be rock-solid and catch-up with the chain no matter what the block volume or database size is. I will certainly play with the project since it's written on my beloved Python.
author | emrebeyler |
---|---|
permlink | re-inertia-hivemind-queries-20180811t081727084z |
category | hivemind |
json_metadata | {"tags":["hivemind"],"app":"steemit/0.1"} |
created | 2018-08-11 08:17:27 |
last_update | 2018-08-11 08:17:27 |
depth | 1 |
children | 7 |
last_payout | 2018-08-18 08:17:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.736 HBD |
curator_payout_value | 0.576 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 247 |
author_reputation | 448,528,959,341,273 |
root_title | "Hivemind Queries" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 67,834,768 |
net_rshares | 1,747,815,839,678 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
inertia | 0 | 1,525,783,292,486 | 100% | ||
surpassinggoogle | 0 | 222,032,547,192 | 1% |
btw, > It took a while to sync. How many hours/days?
author | emrebeyler |
---|---|
permlink | re-emrebeyler-re-inertia-hivemind-queries-20180811t081834444z |
category | hivemind |
json_metadata | {"tags":["hivemind"],"app":"steemit/0.1"} |
created | 2018-08-11 08:18:33 |
last_update | 2018-08-11 08:18:33 |
depth | 2 |
children | 6 |
last_payout | 2018-08-18 08:18:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.220 HBD |
curator_payout_value | 0.072 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 54 |
author_reputation | 448,528,959,341,273 |
root_title | "Hivemind Queries" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 67,834,830 |
net_rshares | 222,032,547,192 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
surpassinggoogle | 0 | 222,032,547,192 | 1% |
Yup, the sync routine is *rock solid*. @roadscape really nails it. Initial sync took me about a week. But that’s because I used api.steemit.com. I wanted to see what the typical hobbyist might experience trying this out, so I didn’t try anything heroic on the initial sync. I also didn’t set *any* of the recommended Postgres configurations. Same reason. Hobbiests might skip that too.
author | inertia |
---|---|
permlink | re-emrebeyler-re-emrebeyler-re-inertia-hivemind-queries-20180811t153952178z |
category | hivemind |
json_metadata | {"tags":["hivemind"],"users":["roadscape"],"app":"steemit/0.1"} |
created | 2018-08-11 15:39:51 |
last_update | 2018-08-11 21:19:36 |
depth | 3 |
children | 5 |
last_payout | 2018-08-18 15:39: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 | 391 |
author_reputation | 346,568,901,399,561 |
root_title | "Hivemind Queries" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 67,868,067 |
net_rshares | 0 |
Once 'adopted', will it eliminate the use for the (now pay to play) Steem SQL site?
author | enginewitty |
---|---|
permlink | re-inertia-hivemind-queries-20180811t095345168z |
category | hivemind |
json_metadata | {"tags":["hivemind"],"app":"steemit/0.1"} |
created | 2018-08-11 09:53:45 |
last_update | 2018-08-11 09:53:45 |
depth | 1 |
children | 1 |
last_payout | 2018-08-18 09:53:45 |
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 | 83 |
author_reputation | 693,018,973,943,668 |
root_title | "Hivemind Queries" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 67,841,128 |
net_rshares | 0 |
No. Hivemind does not capture everything like SteemSQL does. That’s not the purpose. I like SteemSQL very much. I’m glad @arcange doesn’t offer his services for free anymore. Hopefully it’s sustainable.
author | inertia |
---|---|
permlink | re-enginewitty-re-inertia-hivemind-queries-20180811t154510862z |
category | hivemind |
json_metadata | {"tags":["hivemind"],"users":["arcange"],"app":"steemit/0.1"} |
created | 2018-08-11 15:45:09 |
last_update | 2018-08-11 15:45:09 |
depth | 2 |
children | 0 |
last_payout | 2018-08-18 15:45:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.051 HBD |
curator_payout_value | 0.015 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 207 |
author_reputation | 346,568,901,399,561 |
root_title | "Hivemind Queries" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 67,868,534 |
net_rshares | 50,317,167,341 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
arcange | 0 | 47,430,023,860 | 5% | ||
raphaelle | 0 | 2,887,143,481 | 5% |
As interesting as they seem...for the clueless like me, steemd is easy☺
author | immarojas |
---|---|
permlink | re-inertia-hivemind-queries-20180811t094813959z |
category | hivemind |
json_metadata | {"tags":["hivemind"],"app":"steemit/0.1"} |
created | 2018-08-11 09:48:18 |
last_update | 2018-08-11 09:48:18 |
depth | 1 |
children | 0 |
last_payout | 2018-08-18 09:48: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 | 71 |
author_reputation | 71,298,853,656,503 |
root_title | "Hivemind Queries" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 67,840,786 |
net_rshares | 0 |
Hivemind is the next big thing. Until we see it more, and use it more, no one gets it... but everytime I hear about the possibilities of what hivemind can bring.. I understand the importance of it. Thank you very much for sharing your experience with it. It is very helpful and valuable... I hope you write more about hivemind as you do more with it.
author | intelliguy |
---|---|
permlink | re-inertia-hivemind-queries-20180811t073342441z |
category | hivemind |
json_metadata | {"tags":["hivemind"],"app":"steemit/0.1"} |
created | 2018-08-11 07:33:42 |
last_update | 2018-08-11 07:34:30 |
depth | 1 |
children | 0 |
last_payout | 2018-08-18 07:33:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.250 HBD |
curator_payout_value | 0.058 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 351 |
author_reputation | 62,276,657,564,898 |
root_title | "Hivemind Queries" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 67,831,868 |
net_rshares | 234,614,763,742 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
intelliguy | 0 | 12,582,216,550 | 100% | ||
surpassinggoogle | 0 | 222,032,547,192 | 1% |
Cool post! Thanks for taking time to share your experiences of the upcoming #hivemind update. I am not a programmer, but I managed to follow most of what you said it was very informative! Hopefully by making search queries easier, we can see better interactions with the steem blockchain Thanks, @kabir88
author | kabir88 |
---|---|
permlink | re-inertia-hivemind-queries-20180811t210656367z |
category | hivemind |
json_metadata | {"tags":["hivemind"],"users":["kabir88"],"app":"steemit/0.1"} |
created | 2018-08-11 21:06:57 |
last_update | 2018-08-11 21:06:57 |
depth | 1 |
children | 0 |
last_payout | 2018-08-18 21:06:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.288 HBD |
curator_payout_value | 0.093 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 307 |
author_reputation | 9,762,676,591,926 |
root_title | "Hivemind Queries" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 67,891,928 |
net_rshares | 283,475,428,107 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
livvu | 0 | 38,933,645,335 | 100% | ||
fulltimebot13 | 0 | 122,481,815,665 | 100% | ||
fulltimebot74 | 0 | 122,059,967,107 | 100% |
Interesting facts about the dog...this is my link👇  https://steemit.com/introduceyourself/@kanhiyachauhan/information-about-the-dog-and-interesting-facts
author | kanhiyachauhan |
---|---|
permlink | re-inertia-hivemind-queries-20180811t171409224z |
category | hivemind |
json_metadata | {"tags":["hivemind"],"image":["https://cdn.steemitimages.com/DQmS2LXiK42YjwuGpcrzz1dT9zUpGRrHfUYZiZxEWVXt7fR/DOGGS.jpg"],"links":["https://steemit.com/introduceyourself/@kanhiyachauhan/information-about-the-dog-and-interesting-facts"],"app":"steemit/0.1"} |
created | 2018-08-11 17:14:15 |
last_update | 2018-08-11 17:14:15 |
depth | 1 |
children | 0 |
last_payout | 2018-08-18 17:14:15 |
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 | 254 |
author_reputation | 47,404,854,955,696 |
root_title | "Hivemind Queries" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 67,875,764 |
net_rshares | 0 |
It is the advanced version of steemd,right
author | obaidb2 |
---|---|
permlink | re-inertia-hivemind-queries-20180811t072119285z |
category | hivemind |
json_metadata | {"community":"busy","app":"busy/2.5.4","format":"markdown","tags":["hivemind"],"users":[],"links":[],"image":[]} |
created | 2018-08-11 07:21:21 |
last_update | 2018-08-11 07:21:21 |
depth | 1 |
children | 4 |
last_payout | 2018-08-18 07:21:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.220 HBD |
curator_payout_value | 0.072 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 42 |
author_reputation | 4,095,618,448,032 |
root_title | "Hivemind Queries" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 67,831,094 |
net_rshares | 222,032,547,192 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
surpassinggoogle | 0 | 222,032,547,192 | 1% |
No, it's taking on some of the role that steemd currently has. But steemd will always continue to provide a focus on blockchain consensus.
author | inertia |
---|---|
permlink | re-obaidb2-re-inertia-hivemind-queries-20180811t073335488z |
category | hivemind |
json_metadata | {"tags":["hivemind"],"app":"steemit/0.1"} |
created | 2018-08-11 07:33:36 |
last_update | 2018-08-11 07:33:36 |
depth | 2 |
children | 3 |
last_payout | 2018-08-18 07:33:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.220 HBD |
curator_payout_value | 0.072 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 139 |
author_reputation | 346,568,901,399,561 |
root_title | "Hivemind Queries" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 67,831,865 |
net_rshares | 222,032,547,192 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
surpassinggoogle | 0 | 222,032,547,192 | 1% |
> Being able to pull this data into a sql database will have massive use implications we can run on steemit. We could see better curation programs, ways to enhance our feeds and find relevant content faster. Hivemind looks very cool, gave you a follow @inertia and look forward to learning more about this initiative. Saw this comment below from @chekohler and I wonder: What would it take to be able to make queries like these to hivemind straight from script.js file like we currently get to do with steem.api.getDiscussionsByBlog as an example.
author | igster |
---|---|
permlink | re-inertia-re-obaidb2-re-inertia-hivemind-queries-20180812t082956399z |
category | hivemind |
json_metadata | {"tags":["hivemind"],"users":["inertia","chekohler"],"app":"steemit/0.1"} |
created | 2018-08-12 08:29:57 |
last_update | 2018-08-12 08:29:57 |
depth | 3 |
children | 0 |
last_payout | 2018-08-19 08: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 | 550 |
author_reputation | 17,415,198,441,969 |
root_title | "Hivemind Queries" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 67,931,942 |
net_rshares | 0 |
Guess there would be more development that could join hivemind later on
author | obaidb2 |
---|---|
permlink | re-inertia-re-obaidb2-re-inertia-hivemind-queries-20180811t073607282z |
category | hivemind |
json_metadata | {"community":"busy","app":"busy/2.5.4","format":"markdown","tags":["hivemind"],"users":[],"links":[],"image":[]} |
created | 2018-08-11 07:36:12 |
last_update | 2018-08-11 07:36:12 |
depth | 3 |
children | 1 |
last_payout | 2018-08-18 07:36: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 | 71 |
author_reputation | 4,095,618,448,032 |
root_title | "Hivemind Queries" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 67,832,031 |
net_rshares | 0 |
Nice one
author | thompson2 |
---|---|
permlink | re-inertia-hivemind-queries-20180811t093144708z |
category | hivemind |
json_metadata | {"tags":["hivemind"],"app":"steemit/0.1"} |
created | 2018-08-11 09:31:54 |
last_update | 2018-08-11 09:31:54 |
depth | 1 |
children | 0 |
last_payout | 2018-08-18 09:31:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.016 HBD |
curator_payout_value | 0.005 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 8 |
author_reputation | 1,719,016,988,043 |
root_title | "Hivemind Queries" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 67,839,696 |
net_rshares | 17,041,828,527 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
thompson2 | 0 | 17,041,828,527 | 100% |