Ever wondered when whales are upvoting? I was wondering the same thing. I thought: perhaps some times are better to post than others. So I wrote a program in Python to plot the upvote times for July 2016 for a random selection of whales. Here are the results: # The founders @ned and @dan appear very limited in the time they have to upvote. They're both similar in the number of votes they give.   If you get upvoted by @dan or @ned, you've done well. Not only because the founders like your work, but also because they aren't the most active upvoters. # Whale bots The accounts @steemed, @itsascam, and @steemroller are [all bots run by the same whale](https://steemit.com/curation/@steemed/im-a-steem-whale-looking-for-writers). These graphs illustrate bot behaviour: the distribution of upvotes is more even, and of course, they never seem to sleep.    All these graphs really tell us are when the authors in the bot's author list have published an article. # Others Here are a bunch of other whales. Maybe some of them are bots, let me know if that's the case. It's fun making assumptions about the whales, like when they sleep.  Between 07:00 UTC and 14:00 UTC @berniesanders is mostly inactive. At the other times though he's a generous upvoter and quite consistent.  @blocktrades is very likely asleep between 06:00 UTC and 14:00 UTC. After this time there's a bit of voting, but not a great deal.  @complexring is either or bot or someone who has trouble sleeping. While upvoting between 06:00 and 12:00 UTC is significantly lower, there are still some votes taking place. @complexring is much more active in upvoting than @berniesanders.  @nextgencrypto does most upvoting during the weekend with some activity in the evening (their local time), assuming the gaps indicate sleep.  @pharesim's behaviour resembles @complexring. Perhaps a bot. There are lower periods of activity which could indicate sleep. Friday seems to be the most stable day where there's a clear pickup in voting after 12:00 UTC.  It's clear that @rainman is sleeping between around 22:00 UTC and 04:00 UTC. Another low upvoting whale, @rainman is pretty consistent during the day.  @smooth's behaviour is similar to rainmain in that it's consistent during voting times, but there's no clear downtime, which raises the suspicion of bot use. @smooth is a slightly more active upvoter during the weekend.  @tombstone's graph looks empty, but that's caused by the bizarre outlier on Friday at 10:00 UTC. I have no idea what @tombstone was doing then, but it was an upvote frenzy. The rest of the time @tombstone is quite consistent with voting, with slightly more activity between 02:00 UTC and 08:00 UTC. # When should I post? I've intentionally not drawn too many conclusion from these graphs. Perhaps the most useful information is knowing which whales upvote the most and when, so you can time your publication correctly. Do you want to increase the chance that @berniesanders will upvote you? Don't post at 07:00 UTC because for the next 8 hours he's unlikely to see it; better to post around 03:00 UTC on a Wednesday. With so many whales you're more or less covered whenever you post. What you're posting is far more important than when you post it. # Show me the code Feel free to use and adapt the code below as you like. Any bugs, please let me know in the comments. Read @furion's post for more information on parsing the blockchain. The program requires Python 3 and the following libraries, which you can install with pip: * matplotlib * numpy * pandas * seaborn * steem The program runs on the command-line. Provide a list of whale username and optionally, either the start and end blocks to analyze or start and end dates. The latter will convert the dates into the appropriate block numbers (this isn't fast - there's probably a better way to do it). python3 vote_dist.py dan ned smooth berniesanders -f 2016-07-01 -t 2016-07-31 Enjoy! ``` import argparse import datetime import math from collections import defaultdict import pandas as pd import seaborn as sns import numpy as np from steemapi.steemnoderpc import SteemNodeRPC def get_stats(rpc, users, beg_block, end_block): print("Getting stats for {} from block {} to block {}".format( users, beg_block, end_block)) stats = defaultdict(list) current_block = beg_block while current_block < end_block: block = rpc.get_block(current_block) if "transactions" not in block: continue for tx in block["transactions"]: for op in tx["operations"]: op_type = op[0] op_data = op[1] timestamp = pd.to_datetime(tx['expiration']) if op_type == "vote": author = op_data['author'] voter = op_data['voter'] weight = op_data['weight'] if voter in users and weight > 0: stats[voter].append((timestamp, weight)) current_block += 1 return stats def get_block_num_for_date(rpc, date): """ Gets the first block number for the given date. This is anything but fast. There's probably a better way, but this was the first thing that came to mind. """ print("Getting block num for {}".format(date)) block = rpc.get_block(1) bc_date = pd.to_datetime(block['timestamp']) SECONDS_IN_DAY = 24 * 60 * 60 NUM_BLOCKS_PER_DAY = math.floor(SECONDS_IN_DAY / 3) # Estimate the block number block_num = (date - bc_date).days * NUM_BLOCKS_PER_DAY # Use estimation to find the actual block number best_block_num = block_num best_block_diff = None while True: block = rpc.get_block(block_num) block_date = pd.to_datetime(block['timestamp']) diff = (date - block_date).total_seconds() if best_block_diff: if abs(diff) > abs(best_block_diff): break best_block_num = block_num best_block_diff = diff if diff > 0: block_num += 1 elif diff < 0: block_num -= 1 else: break return best_block_num def create_plot(user, votes): print("Creating plot for {}".format(user)) df = pd.DataFrame.from_records(votes, columns=['time', 'weight']) df['day'] = df['time'].dt.weekday_name df['hour'] = df['time'].dt.hour col_order = ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"] plot = sns.FacetGrid(df, col="day", col_order=col_order, col_wrap=3) plot = plot.map(sns.plt.hist, "hour", bins=np.arange(0, 23), color="c").set_titles("{col_name}") plot.set(xticks=np.arange(23, step=2), xlim=(0, 23)) plot.set_axis_labels('Hour', 'Upvotes') plot.fig.suptitle(user, size=16) plot.fig.subplots_adjust(top=.9) return plot if __name__ == "__main__": parser = argparse.ArgumentParser() parser.add_argument('usernames', nargs='*', help='Usernames to show statistics for') parser.add_argument('-s', '--server', default='ws://localhost:8090', dest='server', help='Address of the steem JSON-RPC server') block_group = parser.add_argument_group('blocks') block_group.add_argument('-b', '--begin-block', default=1, type=int, dest='beg_block', help='The block to begin on.') block_group.add_argument('-e', '--end-block', default=None, type=int, dest='end_block', help='The block to end on. Default is last_irreversible_block_num.') date_group = parser.add_argument_group('dates') date_group.add_argument('-f', '--from-date', type=str, dest='from_date', help='The date to end on.') date_group.add_argument('-t', '--to-date', type=str, dest='to_date', help='The date to end on.') args = parser.parse_args() # Connect to steem rpc server rpc = SteemNodeRPC(args.server, "", "") # Get the block numbers if args.from_date and args.to_date: args.from_date = pd.to_datetime(args.from_date) args.to_date = pd.to_datetime(args.to_date) args.beg_block = get_block_num_for_date(rpc, args.from_date) args.end_block = get_block_num_for_date(rpc, args.to_date + datetime.timedelta(days=1)) - 1 else: props = rpc.get_dynamic_global_properties() if args.end_block: if args.end_block > props['last_irreversible_block_num']: args.end_block = props['last_irreversible_block_num'] else: args.end_block = props['last_irreversible_block_num'] # Validate block numbers if args.beg_block < 0: print("begin-block must be greater than 0") sys.exit(1) if args.end_block < args.beg_block: print("end-block must be greater than beg-block") sys.exit(1) # Get the stats stats = get_stats(rpc, args.usernames, args.beg_block, args.end_block) for user, votes in stats.items(): plot = create_plot(user, votes) plot.savefig('{}.png'.format(user)) if len(stats) == 0: print("Nothing found for the given parameters") ``` --- Like my post? Don't forget to follow me!
author | bitcalm |
---|---|
permlink | when-do-whales-upvote |
category | programming |
json_metadata | {"tags":["programming","steemit","stats","analysis"]} |
created | 2016-08-09 11:24:24 |
last_update | 2016-08-09 11:24:24 |
depth | 0 |
children | 120 |
last_payout | 2016-09-09 03:59:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 4,519.766 HBD |
curator_payout_value | 1,211.325 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 10,327 |
author_reputation | 24,919,530,803,138 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 701,440 |
net_rshares | 191,755,750,002,223 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
smooth | 0 | 23,351,903,640,863 | 100% | ||
anonymous | 0 | 28,846,214,272 | 1% | ||
rainman | 0 | 16,279,366,360,168 | 100% | ||
berniesanders | 0 | 31,457,579,783,373 | 100% | ||
summon | 0 | 14,631,217,155,258 | 100% | ||
blocktrades | 0 | 42,049,379,769,387 | 100% | ||
modprobe | 0 | 468,990,780,339 | 100% | ||
pharesim | 0 | 8,535,955,666,228 | 100% | ||
lafona-miner | 0 | 3,179,470,399,664 | 100% | ||
lafona | 0 | 376,663,190,802 | 100% | ||
justin | 0 | 321,053,336,395 | 100% | ||
tombstone | 0 | 20,583,145,641,938 | 100% | ||
silver | 0 | 697,707,567,597 | 100% | ||
silversteem | 0 | 4,020,777,810,854 | 100% | ||
nextgencrypto | 0 | 5,172,702,170,778 | 100% | ||
lafona5 | 0 | 314,149,363,357 | 100% | ||
theoretical | 0 | 297,108,369,427 | 100% | ||
boy | 0 | 3,077,567,712 | 100% | ||
xeroc | 0 | 1,967,926,335,384 | 100% | ||
bue-witness | 0 | 3,734,769,964 | 100% | ||
bunny | 0 | 714,396,420 | 100% | ||
complexring | 0 | 2,471,317,690,264 | 100% | ||
steemychicken1 | 0 | 1,406,088,360,055 | 100% | ||
bue | 0 | 51,336,436,014 | 100% | ||
chloe | 0 | 2,292,811,591 | 100% | ||
jen | 0 | 2,296,333,051 | 100% | ||
danknugs | 0 | 14,197,239,403 | 100% | ||
steemservices | 0 | 231,763,988,296 | 100% | ||
steemservices1 | 0 | 24,932,039,175 | 100% | ||
mini | 0 | 1,649,976,774 | 100% | ||
moon | 0 | 208,702,638 | 100% | ||
lovejoy | 0 | 243,737,294,277 | 100% | ||
steemservices3 | 0 | 10,317,702,331 | 100% | ||
aizensou | 0 | 26,654,430,502 | 100% | ||
steemservices5 | 0 | 12,045,454,220 | 100% | ||
kelly | 0 | 48,395,606 | 100% | ||
bentley | 0 | 6,762,921,095 | 100% | ||
bonapartist | 0 | 108,161,832,295 | 100% | ||
smooth.witness | 0 | 3,752,523,538,892 | 100% | ||
steempower | 0 | 1,246,709,843,711 | 100% | ||
proctologic | 0 | 23,836,748,355 | 100% | ||
healthcare | 0 | 612,306,688 | 100% | ||
daniel.pan | 0 | 881,190,405 | 100% | ||
sophia | 0 | 317,006,420 | 100% | ||
dedriss | 0 | 18,253,039,899 | 100% | ||
gardenlady | 0 | 195,303,562,058 | 100% | ||
helen.tan | 0 | 287,049,198 | 100% | ||
steampunkpowered | 0 | 25,693,550,722 | 100% | ||
merlinscat | 0 | 29,801,121,724 | 100% | ||
makishart | 0 | 11,507,990,972 | 100% | ||
sandwich | 0 | 14,565,257,666 | 100% | ||
camilla | 0 | 194,010,047,746 | 100% | ||
cyan91 | 0 | 12,589,554,607 | 100% | ||
dedmatvey | 0 | 17,137,875,186 | 100% | ||
leesunmoo | 0 | 29,090,902,944 | 100% | ||
bleepcoin | 0 | 177,348,114,242 | 100% | ||
hipster | 0 | 1,022,943,890,834 | 100% | ||
sunjata | 0 | 3,752,102,293 | 100% | ||
spaninv | 0 | 5,341,369,625 | 100% | ||
gekko | 0 | 1,704,099,935 | 100% | ||
elishagh1 | 0 | 25,930,971,369 | 100% | ||
himalayanguru | 0 | 39,375,661,931 | 100% | ||
murch | 0 | 462,352,309 | 100% | ||
pal | 0 | 219,742,669,611 | 100% | ||
daycrypter | 0 | 2,391,150,527 | 100% | ||
acidyo | 0 | 6,786,426,262 | 100% | ||
jonno-katz | 0 | 3,572,135,766 | 100% | ||
the-ivor | 0 | 78,369,348,611 | 100% | ||
amartinezque | 0 | 105,614,751,974 | 100% | ||
tosch | 0 | 37,134,336,506 | 100% | ||
kevinwong | 0 | 431,813,625,785 | 100% | ||
stino-san | 0 | 221,330,644,571 | 100% | ||
murh | 0 | 2,554,287,731 | 33.01% | ||
edtorrez | 0 | 245,036,375 | 100% | ||
framelalife | 0 | 3,085,959,588 | 100% | ||
blakemiles84 | 0 | 394,290,568,055 | 100% | ||
marta-zaidel | 0 | 5,907,473,865 | 100% | ||
leprechaun | 0 | 923,703,651 | 100% | ||
akaninyene-etuk | 0 | 122,164,911 | 100% | ||
billbutler | 0 | 177,622,359,946 | 100% | ||
judyhopps | 0 | 26,383,574,075 | 100% | ||
thecryptofiend | 0 | 11,210,925,572 | 100% | ||
crossroads | 0 | 8,573,771,346 | 100% | ||
writewords | 0 | 461,163,061 | 100% | ||
justtryme90 | 0 | 25,236,786,028 | 100% | ||
zebbra2014 | 0 | 3,895,806,938 | 100% | ||
coinbitgold | 0 | 121,027,539,846 | 100% | ||
tom-sullivan | 0 | 6,471,856,620 | 100% | ||
jessica-miller | 0 | 8,856,049,178 | 100% | ||
neil-haran | 0 | 60,162,493,177 | 100% | ||
hedge-x | 0 | 180,149,847,704 | 100% | ||
a48 | 0 | 71,988,467,727 | 100% | ||
faddat | 0 | 69,210,075,227 | 100% | ||
will-zewe | 0 | 181,178,571,825 | 100% | ||
imyao | 0 | 2,938,695,495 | 100% | ||
kaylinart | 0 | 183,981,367,344 | 100% | ||
soulsistashakti | 0 | 82,719,964,784 | 100% | ||
brandonp | 0 | 48,208,156,072 | 100% | ||
benthegameboy | 0 | 1,436,048,008 | 100% | ||
raff-delfin | 0 | 4,142,890,713 | 100% | ||
facer | 0 | 13,051,389,281 | 100% | ||
rafikichi | 0 | 398,461,524 | 100% | ||
magdalena | 0 | 426,787,486 | 100% | ||
stephen-somers | 0 | 729,244,884 | 100% | ||
trogdor | 0 | 247,500,034,242 | 100% | ||
g-dubs | 0 | 2,237,227,447 | 100% | ||
joelkatz | 0 | 29,423,364,812 | 100% | ||
michaelx | 0 | 41,114,725,089 | 100% | ||
thedashguy | 0 | 140,172,743,043 | 100% | ||
cheftony | 0 | 32,550,322,986 | 100% | ||
usefree | 0 | 4,033,645,411 | 100% | ||
angie-hood | 0 | 14,174,255,712 | 100% | ||
albertogm | 0 | 78,518,298,087 | 100% | ||
honeythief | 0 | 44,415,838,880 | 100% | ||
jparty | 0 | 30,327,645,196 | 100% | ||
tyler-fletcher | 0 | 6,070,371,469 | 100% | ||
twinkletard | 0 | 3,070,189,054 | 100% | ||
talanhorne | 0 | 30,695,564,720 | 100% | ||
vladon | 0 | 10,843,052,398 | 100% | ||
superfreek | 0 | 1,290,445,238 | 100% | ||
quintanilla | 0 | 6,683,183,337 | 100% | ||
clement | 0 | 36,104,232,211 | 100% | ||
isteemit | 0 | 44,574,190,463 | 100% | ||
trevorjenglish | 0 | 27,596,437,904 | 100% | ||
oluss | 0 | 247,698,409 | 100% | ||
arcaneinfo | 0 | 5,019,083,279 | 100% | ||
spikykevin | 0 | 4,010,188,583 | 100% | ||
venuspcs | 0 | 50,507,317,697 | 100% | ||
thebatchman | 0 | 18,637,517,672 | 100% | ||
sunshinecrypto | 0 | 1,680,907,839 | 100% | ||
ydm6669 | 0 | 3,179,838,855 | 100% | ||
good-karma | 0 | 3,918,750,127 | 100% | ||
roelandp | 0 | 229,460,842,993 | 100% | ||
dennygalindo | 0 | 4,085,456,529 | 100% | ||
steamit | 0 | 4,704,735,408 | 100% | ||
cuckoo | 0 | 954,691,710 | 100% | ||
kakradetome | 0 | 7,086,563,819 | 100% | ||
brunopro | 0 | 22,967,279,277 | 100% | ||
firepower | 0 | 20,415,336,074 | 100% | ||
mstang83 | 0 | 249,632,629 | 100% | ||
hakise | 0 | 19,807,892,908 | 100% | ||
stranger27 | 0 | 1,517,352,567 | 100% | ||
yogi.artist | 0 | 6,525,264,920 | 100% | ||
bryanj4 | 0 | 284,550,481 | 100% | ||
jasonmcz | 0 | 63,743,478,598 | 100% | ||
ozcap | 0 | 48,568,025,749 | 100% | ||
endaksi1 | 0 | 5,484,848,116 | 100% | ||
anwar78 | 0 | 1,454,604,054 | 100% | ||
iamjmgx | 0 | 577,644,622 | 100% | ||
mastersphotoqc | 0 | 234,105,432 | 100% | ||
picokernel | 0 | 7,751,008,210 | 100% | ||
leonalicious | 0 | 239,449,818 | 100% | ||
jholmes91 | 0 | 7,150,850,164 | 100% | ||
furion | 0 | 24,359,725,815 | 100% | ||
seanmchughart | 0 | 10,257,983,666 | 100% | ||
crypt0 | 0 | 99,229,242,855 | 100% | ||
lovenugz | 0 | 13,344,292,576 | 100% | ||
knircky | 0 | 88,074,084,267 | 100% | ||
leksimus | 0 | 1,378,576,272 | 100% | ||
warplat | 0 | 441,556,118 | 100% | ||
vl248 | 0 | 9,392,699,956 | 100% | ||
gord0b | 0 | 26,433,690,786 | 100% | ||
halo | 0 | 4,733,096,192 | 100% | ||
nicoret | 0 | 682,175,998 | 100% | ||
johanniellano | 0 | 263,509,275 | 100% | ||
anyx | 0 | 10,006,343,252 | 10% | ||
marcgodard | 0 | 878,453,324 | 100% | ||
gikitiki | 0 | 4,089,805,866 | 100% | ||
egjoshslim | 0 | 2,709,480,380 | 100% | ||
cloh76 | 0 | 1,905,548,834 | 100% | ||
toddl984 | 0 | 348,416,306 | 100% | ||
repholder | 0 | 159,907,818,054 | 100% | ||
toxonaut | 0 | 29,488,444,784 | 100% | ||
thegoodguy | 0 | 3,885,745,601 | 100% | ||
holzmichl | 0 | 1,967,497,446 | 100% | ||
ssmmaaddeellmmaa | 0 | 513,589,766 | 100% | ||
incomemonthly | 0 | 1,684,666,188 | 100% | ||
biophil | 0 | 31,889,861,358 | 100% | ||
showmethecoinz | 0 | 16,778,237,089 | 100% | ||
decrypt | 0 | 1,374,785,876 | 100% | ||
senseiteekay | 0 | 7,347,541,897 | 100% | ||
edrivegom | 0 | 455,380,844 | 100% | ||
karen13 | 0 | 2,829,131,730 | 100% | ||
meiisheree | 0 | 19,934,959,554 | 100% | ||
cashbandicoot | 0 | 2,099,911,691 | 100% | ||
igster | 0 | 20,305,902,710 | 100% | ||
sephiroth | 0 | 44,294,459,776 | 100% | ||
zoicneo | 0 | 175,370,852 | 100% | ||
cryptosi | 0 | 5,446,895,616 | 100% | ||
kaptainkrayola | 0 | 10,047,424,372 | 100% | ||
meesterboom | 0 | 4,404,653,400 | 100% | ||
juvyjabian | 0 | 794,864,536 | 100% | ||
scottcal | 0 | 235,981,771 | 100% | ||
kell234 | 0 | 2,807,231,276 | 100% | ||
gottod | 0 | 240,939,573 | 100% | ||
miketwenty1 | 0 | 696,044,961 | 100% | ||
alexoz | 0 | 124,067,214 | 100% | ||
screasey | 0 | 2,291,812,151 | 100% | ||
scottvanfossen | 0 | 290,605,787 | 100% | ||
vorsseli | 0 | 1,223,390,145 | 100% | ||
grolelo | 0 | 7,835,604,224 | 100% | ||
yuhhans | 0 | 1,284,022,677 | 100% | ||
r-niki09 | 0 | 4,281,874,635 | 100% | ||
andreicon | 0 | 211,401,538 | 100% | ||
maximkichev | 0 | 1,365,896,406 | 100% | ||
m34ndy0u | 0 | 236,138,351 | 100% | ||
btcbtcbtc20155 | 0 | 4,656,029,407 | 100% | ||
manthostsakirid | 0 | 57,154,949,758 | 100% | ||
cryptojoy.com | 0 | 7,324,829,760 | 100% | ||
peterz | 0 | 25,116,030,871 | 100% | ||
nippel66 | 0 | 6,786,216,500 | 100% | ||
dudutaulois | 0 | 11,388,798,327 | 100% | ||
pinklee | 0 | 2,617,086,821 | 100% | ||
blueorgy | 0 | 168,781,989,958 | 100% | ||
spinbunny | 0 | 210,579,533 | 100% | ||
xpilar | 0 | 91,443,793,110 | 100% | ||
bobo012 | 0 | 118,229,329 | 100% | ||
dev00100000 | 0 | 4,165,974,421 | 100% | ||
jcweiss | 0 | 1,584,237,113 | 100% | ||
geronimo | 0 | 5,494,448,341 | 100% | ||
krystox | 0 | 12,078,546,501 | 100% | ||
mootadoe | 0 | 120,051,311 | 100% | ||
tatekitty | 0 | 114,330,889 | 100% | ||
vlad | 0 | 357,278,581 | 100% | ||
tarindel | 0 | 2,332,318,655 | 100% | ||
birdie | 0 | 732,269,261 | 100% | ||
quigonjinn | 0 | 109,815,517 | 100% | ||
buster-the-pug | 0 | 118,556,863 | 100% | ||
oumar | 0 | 121,637,940 | 100% | ||
rushd | 0 | 1,191,424,392 | 100% | ||
s4in | 0 | 109,274,439 | 100% | ||
maxiandr | 0 | 116,083,963 | 100% | ||
loewan | 0 | 2,909,427,159 | 100% | ||
qonq99 | 0 | 515,979,684 | 100% | ||
tokyodude | 0 | 1,717,512,227 | 100% | ||
dmitriybtc | 0 | 2,820,996,876 | 100% | ||
cryptocurrency1 | 0 | 362,059,510 | 100% | ||
elmusic | 0 | 109,197,961 | 100% | ||
xand | 0 | 155,789,703 | 100% | ||
jl777 | 0 | 105,830,341,666 | 100% | ||
meteor78 | 0 | 201,222,494 | 100% | ||
anthonycaprio | 0 | 115,757,798 | 100% | ||
fotsirvelk | 0 | 119,429,256 | 100% | ||
flyboyzombie | 0 | 713,454,554 | 100% | ||
valenttina | 0 | 125,938,115 | 100% | ||
jedau | 0 | 2,913,968,881 | 100% | ||
charbelnamm | 0 | 115,387,959 | 100% | ||
crazymumzysa | 0 | 8,979,066,812 | 100% | ||
boarddavid | 0 | 132,662,321 | 100% | ||
vongohren | 0 | 2,757,419,622 | 100% | ||
alsprinting | 0 | 7,443,280,013 | 100% | ||
tony.jennings | 0 | 3,050,440,619 | 100% | ||
czeslawmilosz | 0 | 117,328,837 | 100% | ||
eristoddle | 0 | 3,011,157,682 | 100% | ||
johnsmith | 0 | 162,075,292,195 | 100% | ||
susanne | 0 | 28,713,711,180 | 100% | ||
sacode | 0 | 5,042,529,672 | 100% | ||
activcat | 0 | 105,208,863 | 100% | ||
winstonwolfe | 0 | 5,966,146,178 | 100% | ||
jennamarbles | 0 | 13,434,039,352 | 100% | ||
kooshikoo | 0 | 303,350,935 | 100% | ||
proto | 0 | 13,139,400,889 | 100% | ||
ace108 | 0 | 309,598,055 | 100% | ||
culoemono | 0 | 225,884,392 | 100% | ||
faraz | 0 | 232,441,789 | 100% | ||
laurame86 | 0 | 369,371,840 | 100% | ||
cwmyao1 | 0 | 414,406,268 | 100% | ||
celebr1ty | 0 | 28,627,385,093 | 100% | ||
healthyrecipes | 0 | 21,661,839,411 | 100% | ||
rznag | 0 | 21,677,366,739 | 100% | ||
steemuwe | 0 | 130,037,097 | 100% | ||
dimitarj | 0 | 5,350,262,795 | 100% | ||
arrogantobserver | 0 | 115,083,433 | 100% | ||
karchersmith | 0 | 264,804,571 | 100% | ||
talyvale | 0 | 3,258,721,498 | 100% | ||
mikeinfla | 0 | 2,725,384,936 | 100% | ||
sotura | 0 | 2,049,464,676 | 100% | ||
originate | 0 | 200,752,350,871 | 100% | ||
sulev | 0 | 3,506,836,535 | 100% | ||
gringo4 | 0 | 124,107,318 | 100% | ||
krazy | 0 | 151,702,839 | 100% | ||
kaykunoichi | 0 | 343,718,501 | 100% | ||
albania | 0 | 110,698,696 | 100% | ||
candy49 | 0 | 721,779,011 | 100% | ||
extricati0n | 0 | 1,841,398,699 | 100% | ||
jasonstaggers | 0 | 24,382,450,912 | 100% | ||
ternovic | 0 | 108,181,910 | 100% | ||
weenis | 0 | 2,496,226,696 | 100% | ||
jed78 | 0 | 2,711,474,122 | 100% | ||
shaka | 0 | 29,054,220,994 | 100% | ||
spookypooky | 0 | 2,471,742,606 | 100% | ||
galagan | 0 | 1,604,205,084 | 100% | ||
metaflute | 0 | 811,502,298 | 100% | ||
yulia98 | 0 | 129,250,458 | 100% | ||
alrx6918 | 0 | 83,754,799 | 100% | ||
smech | 0 | 103,554,015 | 100% | ||
taker | 0 | 6,374,708,094 | 100% | ||
aglo | 0 | 62,259,173,629 | 100% | ||
allasyummyfood | 0 | 43,824,069,284 | 100% | ||
merej99 | 0 | 804,438,713 | 100% | ||
magicmonk | 0 | 14,519,396,065 | 100% | ||
rawnetics | 0 | 5,825,147,784 | 100% | ||
principalscunner | 0 | 65,627,881 | 100% | ||
timcliff | 0 | 1,865,328,557 | 100% | ||
transhuman | 0 | 557,358,555 | 100% | ||
cryptoninja | 0 | 4,120,268,077 | 100% | ||
rich77 | 0 | 1,747,593,584 | 100% | ||
mariadianaelaine | 0 | 354,449,634 | 100% | ||
persianqueen | 0 | 63,922,275 | 100% | ||
brendio | 0 | 667,942,080 | 100% | ||
usnewspress | 0 | 86,443,003 | 100% | ||
kryptik | 0 | 4,184,953,210 | 100% | ||
xtester | 0 | 17,643,869,570 | 100% | ||
viktor.phuket | 0 | 4,963,318,734 | 100% | ||
germansailor | 0 | 468,627,835 | 100% | ||
poeticsnake | 0 | 101,289,814 | 100% | ||
aleksandraz | 0 | 5,064,922,765 | 100% | ||
kalimor | 0 | 1,004,800,041 | 100% | ||
themagus | 0 | 67,661,879 | 100% | ||
arisromansyah88 | 0 | 80,825,041 | 100% | ||
musician | 0 | 1,574,373,933 | 100% | ||
ricardotorres | 0 | 125,820,913 | 100% | ||
soratoasu | 0 | 164,050,203 | 100% | ||
blockchainblonde | 0 | 3,960,256,484 | 100% | ||
nickola | 0 | 63,300,522 | 100% | ||
stephen.king989 | 0 | 5,872,659,439 | 100% | ||
nick-sinard | 0 | 769,168,211 | 100% | ||
romancs | 0 | 772,814,280 | 100% | ||
the-dog-lady | 0 | 174,356,395 | 100% | ||
jjchic | 0 | 109,294,814 | 100% | ||
observer | 0 | 64,285,642 | 100% | ||
budgetbucketlist | 0 | 35,570,549,807 | 100% | ||
shiri | 0 | 56,644,791 | 100% | ||
trending | 0 | 7,963,816,589 | 100% | ||
brojam | 0 | 64,076,629 | 100% | ||
luke490 | 0 | 63,875,725 | 100% | ||
alitas | 0 | 220,772,913 | 100% | ||
ich | 0 | 62,534,227 | 100% | ||
rusteller | 0 | 299,115,016 | 100% | ||
sirwinchester | 0 | 7,601,135,956 | 100% | ||
boddhisattva | 0 | 127,832,611 | 100% | ||
gargon | 0 | 888,324,161 | 100% | ||
bayern000 | 0 | 60,925,576 | 100% | ||
mac-o | 0 | 67,152,653 | 100% | ||
alifton | 0 | 326,629,694 | 100% | ||
ciao | 0 | 30,392,219 | 100% | ||
strikeback | 0 | 61,893,377 | 100% | ||
zmb | 0 | 49,508,459 | 100% | ||
goingpaper | 0 | 1,382,370,615 | 100% | ||
agent | 0 | 4,045,315,979 | 100% | ||
theconnoisseur | 0 | 290,485,812 | 100% | ||
steemo | 0 | 30,805,546 | 100% | ||
successful | 0 | 60,366,100 | 100% | ||
rfbb | 0 | 66,948,207 | 100% | ||
scaredycatguide | 0 | 624,038,791 | 100% | ||
jorge1337 | 0 | 61,467,974 | 100% | ||
steema | 0 | 30,726,078 | 100% | ||
lordvader | 0 | 99,377,653 | 100% | ||
kdugar | 0 | 65,734,176 | 100% | ||
alkdnalkd | 0 | 64,449,691 | 100% | ||
bhavnapatel68 | 0 | 345,377,380 | 100% | ||
fingolfin | 0 | 133,404,947 | 100% | ||
confucius | 0 | 33,995,202 | 100% | ||
robok | 0 | 177,616,400 | 100% | ||
borran | 0 | 10,658,730,609 | 100% | ||
loveangel | 0 | 1,905,250,121 | 100% | ||
mrosenquist | 0 | 5,903,368,884 | 100% | ||
bledarus | 0 | 1,664,099,787 | 100% | ||
strangedays | 0 | 62,522,148 | 100% | ||
labeller | 0 | 62,296,286 | 100% | ||
miacats | 0 | 16,393,480,427 | 100% | ||
imarealboy777 | 0 | 643,750,576 | 100% | ||
bitcalm | 0 | 4,351,756,055 | 100% | ||
spoonermlt | 0 | 193,498,342 | 100% | ||
jarvis | 0 | 31,190,995 | 100% | ||
immortalking | 0 | 53,409,932 | 100% | ||
williamdevine | 0 | 64,258,978 | 100% | ||
johnsarris | 0 | 5,458,192,317 | 100% | ||
rubenalexander | 0 | 50,824,280 | 100% | ||
guinsanity | 0 | 271,495,199 | 100% | ||
lorddominik007 | 0 | 977,391,870 | 100% | ||
kyriacos | 0 | 4,388,996,273 | 100% | ||
kana | 0 | 61,106,018 | 100% | ||
thecurator | 0 | 37,069,491 | 100% | ||
runaway-psyche | 0 | 8,860,072,401 | 100% | ||
jhoule3186 | 0 | 61,938,338 | 100% | ||
mrgrey | 0 | 4,423,578,751 | 100% | ||
chahrazad1 | 0 | 56,234,210 | 100% | ||
jsnfwlr | 0 | 58,920,705 | 100% | ||
inkha | 0 | 176,549,741 | 100% | ||
scifiwriter | 0 | 6,411,458,866 | 100% | ||
anarchyhasnogods | 0 | 239,326,640 | 100% | ||
mada | 0 | 344,282,898 | 100% | ||
mrlogic | 0 | 57,255,042 | 100% | ||
steemhorizon | 0 | 63,177,945 | 100% | ||
rossenpavlov | 0 | 114,091,040 | 100% | ||
cehuneke | 0 | 1,249,234,813 | 100% | ||
professorx | 0 | 4,497,703,796 | 100% | ||
metu2222 | 0 | 58,410,851 | 100% | ||
andrewawerdna | 0 | 24,027,469,664 | 100% | ||
chrisdoogood | 0 | 58,160,255 | 100% | ||
success43 | 0 | 42,868,211 | 100% | ||
zakharsmirnoff | 0 | 68,261,561 | 100% | ||
gosteem | 0 | 57,852,960 | 100% | ||
guyvoltaire | 0 | 57,843,281 | 100% | ||
canambullion | 0 | 58,997,531 | 100% | ||
steffenpetri | 0 | 58,983,918 | 100% | ||
matildapurse | 0 | 58,978,262 | 100% | ||
wmhammer | 0 | 57,896,018 | 100% | ||
artfulforce | 0 | 56,654,191 | 100% | ||
albensilverberg | 0 | 16,749,017,194 | 100% | ||
hilarski | 0 | 10,637,578,275 | 100% | ||
anarcho-andrei | 0 | 136,978,174 | 100% | ||
thefeature | 0 | 46,591,335 | 100% | ||
falkvinge | 0 | 87,331,810,232 | 100% | ||
herjus | 0 | 58,807,701 | 100% | ||
imag1ne | 0 | 57,653,071 | 100% | ||
shadowspub | 0 | 57,205,327 | 100% | ||
viebie | 0 | 55,247,947 | 100% | ||
redfold | 0 | 56,386,925 | 100% | ||
danavigoren | 0 | 57,506,867 | 100% | ||
lantto | 0 | 114,909,462 | 100% | ||
thegamer | 0 | 57,465,672 | 100% | ||
ganga | 0 | 50,562,849 | 100% | ||
annasbellas | 0 | 54,010,217 | 100% | ||
steemitpatina | 0 | 1,150,169,614 | 100% | ||
lkong87 | 0 | 93,950,209 | 100% | ||
lukewearechange | 0 | 38,338,316,670 | 100% | ||
gduran | 0 | 58,498,384 | 100% | ||
kamasutra | 0 | 57,267,545 | 100% | ||
vladimirperic | 0 | 58,410,628 | 100% | ||
mfeu | 0 | 168,604,193 | 100% | ||
frederik | 0 | 51,656,595 | 100% | ||
bennytremble | 0 | 603,127,438 | 100% | ||
andyfx | 0 | 55,195,101 | 100% | ||
adrevel | 0 | 52,834,354 | 100% | ||
freewriter-b | 0 | 58,249,201 | 100% | ||
karenmunsey | 0 | 57,181,406 | 100% | ||
bswarren13 | 0 | 57,101,561 | 100% | ||
seedsofliberty | 0 | 59,951,970 | 100% | ||
gearshiftrwife | 0 | 56,635,307 | 100% | ||
magnaniman | 0 | 58,198,156 | 100% | ||
iosif | 0 | 61,690,387 | 100% | ||
escapeamericanow | 0 | 4,622,512,942 | 100% | ||
antoinev | 0 | 5,965,154,085 | 100% | ||
allbtc | 0 | 58,873,607 | 100% | ||
machinery | 0 | 55,838,814 | 100% | ||
survivalist.com | 0 | 80,118,937 | 100% | ||
peterjhendrick | 0 | 44,172,782 | 100% | ||
lenar | 0 | 31,233,411 | 100% | ||
aleskuder | 0 | 56,929,164 | 100% | ||
gmailica | 0 | 56,893,169 | 100% | ||
riv | 0 | 46,648,122 | 100% | ||
noor | 0 | 62,928,670 | 100% | ||
alexandre | 0 | 53,604,039 | 100% | ||
etcmike | 0 | 774,131,504 | 100% | ||
lesliestarrohara | 0 | 121,831,385 | 100% | ||
lsd123452 | 0 | 53,428,052 | 100% | ||
alktoni | 0 | 56,831,626 | 100% | ||
codymac40 | 0 | 54,182,162 | 100% | ||
lettera | 0 | 55,679,241 | 100% | ||
madodel | 0 | 55,679,035 | 100% | ||
seanengman | 0 | 1,185,776,623 | 100% | ||
wadesteems | 0 | 53,409,336 | 100% | ||
ihatelife | 0 | 60,918,464 | 100% | ||
somethingsea | 0 | 49,919,148 | 100% | ||
persik | 0 | 57,854,477 | 100% | ||
sammie | 0 | 57,850,506 | 100% | ||
skum | 0 | 11,164,047,662 | 100% | ||
stephaniemurphy | 0 | 56,650,820 | 100% | ||
ashleywilliamz | 0 | 56,644,633 | 100% | ||
nexusvortex616 | 0 | 41,910,461 | 100% | ||
camille1234 | 0 | 57,806,491 | 100% | ||
ian.wash | 0 | 56,593,408 | 100% | ||
io-io-io | 0 | 55,949,618 | 100% | ||
cwalton2 | 0 | 58,008,856 | 100% | ||
kuking | 0 | 273,910,062 | 100% | ||
jeffreyahann | 0 | 158,458,671 | 100% | ||
felixblanco | 0 | 55,292,784 | 100% | ||
jennsky | 0 | 53,024,941 | 100% | ||
almostfamous | 0 | 57,531,000 | 100% | ||
gregwells | 0 | 55,265,132 | 100% | ||
makov | 0 | 49,622,223 | 100% | ||
powmonkey | 0 | 58,022,121 | 100% | ||
rewsd | 0 | 50,739,918 | 100% | ||
partymeiker | 0 | 57,486,919 | 100% | ||
ryan-singer | 0 | 8,195,277,847 | 100% | ||
unholy | 0 | 35,173,341 | 100% | ||
m12r | 0 | 57,476,699 | 100% | ||
dalencot | 0 | 39,440,797 | 100% | ||
jjepic | 0 | 56,314,596 | 100% | ||
alexarank | 0 | 56,287,439 | 100% | ||
socalguy | 0 | 57,394,948 | 100% | ||
liquidrainbowx | 0 | 41,724,233 | 100% | ||
steemwatch | 0 | 87,969,429 | 100% | ||
jamba1 | 0 | 52,732,535 | 100% | ||
nbragg | 0 | 51,595,811 | 100% | ||
buster | 0 | 53,829,454 | 100% | ||
jessicaemily | 0 | 49,335,697 | 100% | ||
dieky | 0 | 52,695,801 | 100% | ||
roser137 | 0 | 56,059,069 | 100% | ||
huaxb | 0 | 56,056,736 | 100% | ||
terrys | 0 | 53,811,699 | 100% | ||
profanarky | 0 | 54,931,445 | 100% | ||
vhinaa | 0 | 53,807,437 | 100% | ||
sileniced | 0 | 56,045,112 | 100% | ||
jalix | 0 | 53,803,307 | 100% | ||
epiphany | 0 | 51,561,020 | 100% | ||
diesel | 0 | 54,922,341 | 100% | ||
norbekov | 0 | 56,033,392 | 100% | ||
sufism | 0 | 56,029,039 | 100% | ||
raposajackman | 0 | 50,424,757 | 100% | ||
darwilliam | 0 | 56,024,009 | 100% | ||
smifficus | 0 | 56,016,320 | 100% | ||
ninjakrazy | 0 | 55,997,788 | 100% | ||
benfowler | 0 | 55,980,224 | 100% | ||
skaraosky | 0 | 55,979,644 | 100% | ||
kaymo | 0 | 57,098,161 | 100% | ||
dennistraub | 0 | 55,963,764 | 100% | ||
bgains | 0 | 55,954,015 | 100% | ||
joelhovell | 0 | 55,939,866 | 100% | ||
magickalmalia | 0 | 644,095,508 | 100% | ||
yung1 | 0 | 55,922,231 | 100% | ||
yormanfeliz | 0 | 55,908,148 | 100% | ||
igetgames | 0 | 55,906,141 | 100% | ||
sponge-bob | 0 | 1,022,918,000 | 100% | ||
dennislee | 0 | 94,101,005 | 100% | ||
greatdabu | 0 | 51,625,555 | 100% | ||
techslut | 0 | 0 | 100% | ||
decebal2dac | 0 | 0 | 100% | ||
bellekaur | 0 | 0 | 100% | ||
akkha | 0 | 0 | 100% | ||
bobthebot | 0 | 0 | 1% | ||
amja | 0 | 0 | 100% | ||
ayishagisel | 0 | 0 | 100% | ||
physics-o-mania | 0 | 0 | 100% | ||
zitronenstern | 0 | 0 | 0% | ||
martinjurca | 0 | 0 | 100% | ||
blackforcewitch | 0 | 0 | 100% | ||
ameur1 | 0 | 0 | 0% | ||
revitellect | 0 | 0 | 100% | ||
smcaterpillar | 0 | 0 | 100% |
Interesting. Ordered by what?
author | abit |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t210456853z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 21:05:06 |
last_update | 2016-08-09 21:05:06 |
depth | 1 |
children | 1 |
last_payout | 2016-09-09 03:59: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 | 29 |
author_reputation | 141,171,499,037,785 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 711,497 |
net_rshares | 0 |
There's no ordering. It's grouped by day and distributed over the number of upvotes in each hour in the day for all upvotes in July.
author | bitcalm |
---|---|
permlink | re-abit-re-bitcalm-when-do-whales-upvote-20160810t052745723z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-10 05:27:36 |
last_update | 2016-08-10 05:27:36 |
depth | 2 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 132 |
author_reputation | 24,919,530,803,138 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 718,956 |
net_rshares | 0 |
thanks for sharing the interesting insight. so, the real humans seeming identified by you do take rest too. :-)
author | ace108 |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160810t010525131z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-10 01:02:15 |
last_update | 2016-08-10 01:02:15 |
depth | 1 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 111 |
author_reputation | 1,230,316,950,530,522 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 715,321 |
net_rshares | 0 |
Great Post ! Thank you for your effort ! 
author | akkha |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20170531t185520298z |
category | programming |
json_metadata | {"tags":["programming"],"image":["https://steemitimages.com/DQmcxhQm8weYpmQHp1PA8RkxpoZzMgHWYwykm7vcQH3jug9/thumbs%20up%20steem%20with%20akkha.jpg"],"app":"steemit/0.1"} |
created | 2017-05-31 18:55:18 |
last_update | 2017-05-31 18:55:18 |
depth | 1 |
children | 0 |
last_payout | 2017-06-07 18:55: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 | 188 |
author_reputation | 6,662,251,112,812 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,004,579 |
net_rshares | 0 |
Pretty insightful stuff if you're out to go "Whaling" in hopes of grabbing one's attention. Math never lies and these graphs seem very concise. While I'm sure these graphs will come in handy for those hoping to win the Whale "Lottery" so to speak, I would rather hope my work speaks for itself. Having seen the changes coming in the next hard fork, it looks like the 12 hour window is likely being extended to 24 hours. Most likely because as you pointed out above, people have lives, and do need sleep. If you figure the average person sleeps for 6 to 8 hours a night, your post's window for discovery becomes that much smaller if you post it during off-peak hours. This was a great analysis with code included so your peers can also see for themselves first hand the voting (and possibly sleeping) habits of other fellow Steemians. A+ to you Sir for a job well done!
author | alifton |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160810t043253490z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-10 04:32:51 |
last_update | 2016-08-10 04:32:51 |
depth | 1 |
children | 1 |
last_payout | 2016-09-09 03:59: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 | 877 |
author_reputation | 661,948,714,392 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 718,280 |
net_rshares | 0 |
Math doesn't lie but people can present facts in different ways to influence behaviour. Check out my post on [the framing effect](https://steemit.com/psychology/@bitcalm/the-lies-we-tell-ourselves-the-framing-effect) to see what I mean. Also, I may have made a mistake :) I wasn't aware of the limit being extended back to 24 hours. It'll be interesting to see what that does to upvoting behaviour.
author | bitcalm |
---|---|
permlink | re-alifton-re-bitcalm-when-do-whales-upvote-20160810t053231705z |
category | programming |
json_metadata | {"tags":["programming"],"links":["https://steemit.com/psychology/@bitcalm/the-lies-we-tell-ourselves-the-framing-effect"]} |
created | 2016-08-10 05:32:24 |
last_update | 2016-08-10 05:32:24 |
depth | 2 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 399 |
author_reputation | 24,919,530,803,138 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 719,011 |
net_rshares | 0 |
following you now of course! and amazing analysis! Loved the geeky graphs! haha So conclusion... post whenever :P
author | allasyummyfood |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t112926618z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 11:29:27 |
last_update | 2016-08-09 11:29:27 |
depth | 1 |
children | 3 |
last_payout | 2016-09-09 03:59: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 | 113 |
author_reputation | 283,763,839,951,286 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 701,492 |
net_rshares | 62,283,361 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
vietnamese | 0 | 62,283,361 | 100% |
Don't make fun of my conclusion! :) Yes, conclusion is there are enough whales (probably) that it doesn't matter. Although, targeting the avid upvoting big whales might pay off.
author | bitcalm |
---|---|
permlink | re-allasyummyfood-re-bitcalm-when-do-whales-upvote-20160809t123320730z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 12:33:12 |
last_update | 2016-08-09 12:33:12 |
depth | 2 |
children | 2 |
last_payout | 2016-09-09 03:59: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 | 177 |
author_reputation | 24,919,530,803,138 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 702,303 |
net_rshares | 0 |
ummm ;P
author | allasyummyfood |
---|---|
permlink | re-bitcalm-re-allasyummyfood-re-bitcalm-when-do-whales-upvote-20160809t123734837z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 12:37:33 |
last_update | 2016-08-09 12:37:33 |
depth | 3 |
children | 1 |
last_payout | 2016-09-09 03:59: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 | 7 |
author_reputation | 283,763,839,951,286 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 702,363 |
net_rshares | 0 |
omg nice job ;))) hahaha
author | allasyummyfood |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t171428567z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 17:14:27 |
last_update | 2016-08-09 17:14:27 |
depth | 1 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 283,763,839,951,286 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 706,949 |
net_rshares | 4,264,720,934 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bitcalm | 0 | 4,264,720,934 | 100% |
Nice tip man!!
author | anwar78 |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t193013497z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 19:30:15 |
last_update | 2016-08-09 19:30:15 |
depth | 1 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 14 |
author_reputation | 23,452,817,298 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 709,579 |
net_rshares | 0 |
@bitcalm, Wow .. good posts, thanks for your info .. :) https://s10.postimg.org/8exmn71uh/13820847_10206443367717147_1438664747_n.gif
author | arisromansyah88 |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t133517947z |
category | programming |
json_metadata | {"tags":["programming"],"users":["bitcalm"],"image":["https://s10.postimg.org/8exmn71uh/13820847_10206443367717147_1438664747_n.gif"]} |
created | 2016-08-09 13:36:09 |
last_update | 2016-08-09 13:36:09 |
depth | 1 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 134 |
author_reputation | -818,215,108,010 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 703,228 |
net_rshares | 1,083,941,227 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kalimor | 0 | 1,004,800,041 | 100% | ||
arisromansyah88 | 0 | 79,141,186 | 100% |
But what do the whales actually vote on? I was hoping that my latest post would catch a few of them. How does that happen? Do I need more followers? And what's with the 30-minute talk about rewards? I would think that a post like this would at least get a little more attention from whales and bots: https://steemit.com/anarchism/@ats-david/enriching-lives-through-the-power-of-steemit
author | ats-david |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t180626656z |
category | programming |
json_metadata | {"tags":["programming"],"links":["https://steemit.com/anarchism/@ats-david/enriching-lives-through-the-power-of-steemit"]} |
created | 2016-08-09 18:06:27 |
last_update | 2016-08-09 18:06:27 |
depth | 1 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 386 |
author_reputation | 324,017,334,201,433 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 707,931 |
net_rshares | 0 |
I thought bots weren't allow. Now I'm wondering if the only way to make money is to get upvoted by a whale. I'm new here and just figuring things out before I do my first post.
author | ayishagisel |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20170622t082829505z |
category | programming |
json_metadata | {"tags":["programming"],"app":"steemit/0.1"} |
created | 2017-06-22 08:28:30 |
last_update | 2017-06-22 08:28:30 |
depth | 1 |
children | 0 |
last_payout | 2017-06-29 08:28: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 | 178 |
author_reputation | 9,603,148,553 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 5,603,674 |
net_rshares | 986,601,444 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ayishagisel | 0 | 986,601,444 | 100% |
Just reading this now- fantastic into - thanks for taking the time to put this together & share - awesome work!
author | azurejasper |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160810t005228628z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-10 00:52:30 |
last_update | 2016-08-10 00:52:30 |
depth | 1 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 111 |
author_reputation | 11,951,841,900,510 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 715,215 |
net_rshares | 0 |
I liked you post...upvote has to be always there for a good post like this which explains the statistics well...
author | bhavnapatel68 |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t224644749z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 22:46:45 |
last_update | 2016-08-09 22:46:45 |
depth | 1 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 112 |
author_reputation | 4,976,629,087,476 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 713,293 |
net_rshares | 338,182,018 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bhavnapatel68 | 0 | 338,182,018 | 100% |
Wait, I don't get it. So maybe a Whale will upvote you. So this program will guarantee a whale upvote?
author | binkyprod |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20170821t064639685z |
category | programming |
json_metadata | {"tags":["programming"],"app":"steemit/0.1"} |
created | 2017-08-21 06:46:39 |
last_update | 2017-08-21 06:46:39 |
depth | 1 |
children | 0 |
last_payout | 2017-08-28 06:46: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 | 102 |
author_reputation | 103,994,393,290,019 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,411,206 |
net_rshares | 0 |
# Absolute friggin gold. https://www.steemimg.com/images/2016/08/05/18i15tc6517.jpg
author | blakemiles84 |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t154915020z |
category | programming |
json_metadata | {"tags":["programming"],"image":["https://www.steemimg.com/images/2016/08/05/18i15tc6517.jpg"]} |
created | 2016-08-09 15:49:09 |
last_update | 2016-08-09 15:49:09 |
depth | 1 |
children | 2 |
last_payout | 2016-09-09 03:59:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.274 HBD |
curator_payout_value | 0.004 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 85 |
author_reputation | 51,861,865,663,185 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 705,457 |
net_rshares | 416,000,922,820 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
blakemiles84 | 0 | 386,559,380,446 | 100% | ||
joelkatz | 0 | 28,846,436,090 | 100% | ||
scottcal | 0 | 235,981,771 | 100% | ||
sliznut | 0 | 112,910,108 | 100% | ||
shadowspub | 0 | 56,037,872 | 100% | ||
lesliestarrohara | 0 | 121,831,385 | 100% | ||
fastboy619 | 0 | 68,345,148 | 100% |
Your perverted, you know that! lol
author | keithwillshine |
---|---|
permlink | re-blakemiles84-re-bitcalm-when-do-whales-upvote-20160809t182052942z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 18:20:54 |
last_update | 2016-08-09 18:20:54 |
depth | 2 |
children | 1 |
last_payout | 2016-09-09 03:59: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 | 34 |
author_reputation | 6,275,954,556,208 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 708,247 |
net_rshares | 0 |
I see what you did there...
author | blakemiles84 |
---|---|
permlink | re-keithwillshine-re-blakemiles84-re-bitcalm-when-do-whales-upvote-20160809t205631838z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 20:56:33 |
last_update | 2016-08-09 20:56:33 |
depth | 3 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 27 |
author_reputation | 51,861,865,663,185 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 711,293 |
net_rshares | 0 |
Oh Man, you stole my thunder! http://catchawhale.com Was going to publish my results soon, but looks like you beat me to the chase. I will still of course be publishing my findings but this looks pretty damn good.
author | blueorgy |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t163242469z |
category | programming |
json_metadata | {"tags":["programming"],"links":["http://catchawhale.com"]} |
created | 2016-08-09 16:32:42 |
last_update | 2016-08-09 16:32:42 |
depth | 1 |
children | 2 |
last_payout | 2016-09-09 03:59:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.110 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 215 |
author_reputation | 56,287,880,276,342 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 706,189 |
net_rshares | 174,260,746,905 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
blueorgy | 0 | 168,781,989,958 | 100% | ||
bitcalm | 0 | 4,351,756,055 | 100% | ||
lorddominik007 | 0 | 956,144,221 | 100% | ||
dobbydaba | 0 | 58,132,384 | 100% | ||
guyvoltaire | 0 | 56,686,415 | 100% | ||
shadowspub | 0 | 56,037,872 | 100% |
But you made a cool web app out of it. I was too lazy to do that (well actually it's cause I'm going on holiday soon and wouldn't finish it in time). Looking forward to your post. Oh and I'm following you now :D
author | bitcalm |
---|---|
permlink | re-blueorgy-re-bitcalm-when-do-whales-upvote-20160809t172045027z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 17:20:45 |
last_update | 2016-08-09 17:20:45 |
depth | 2 |
children | 1 |
last_payout | 2016-09-09 03:59:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.098 HBD |
curator_payout_value | 0.008 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 212 |
author_reputation | 24,919,530,803,138 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 707,086 |
net_rshares | 168,782,402,474 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
blueorgy | 0 | 168,782,402,474 | 100% |
As am I! We should collaborate in the near future!
author | blueorgy |
---|---|
permlink | re-bitcalm-re-blueorgy-re-bitcalm-when-do-whales-upvote-20160809t173100767z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 17:31:00 |
last_update | 2016-08-09 17:31:00 |
depth | 3 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 50 |
author_reputation | 56,287,880,276,342 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 707,308 |
net_rshares | 0 |
Any whales want to vote on this one perhaps ;) I spent my birthday helping the homeless in Argentina. Upvoting = making a donation for free! https://steemit.com/travel/@budgetbucketlist/an-unforgettable-birthday-party-with-the-homeless-people-of-buenos-aires-made-possible-by-steemit
author | budgetbucketlist |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t153511697z |
category | programming |
json_metadata | {"tags":["programming"],"links":["https://steemit.com/travel/@budgetbucketlist/an-unforgettable-birthday-party-with-the-homeless-people-of-buenos-aires-made-possible-by-steemit"]} |
created | 2016-08-09 15:35:06 |
last_update | 2016-08-09 15:35:06 |
depth | 1 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 287 |
author_reputation | 52,748,266,682,213 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 705,202 |
net_rshares | 5,247,691,210 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fjccoin | 0 | 982,970,276 | 100% | ||
bitcalm | 0 | 4,264,720,934 | 100% |
Wow amazing post, very thorough I have often wonder when the whales are voting and now we know.
author | bythenumbers432 |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160810t023142809z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-10 02:31:24 |
last_update | 2016-08-10 02:31:24 |
depth | 1 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 95 |
author_reputation | 655,688,292,786 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 716,644 |
net_rshares | 0 |
@steemed, @itsascam, and @steemroller are bots???!?!?!
author | c082832 |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t185921873z |
category | programming |
json_metadata | {"tags":["programming"],"users":["steemed","itsascam","steemroller"]} |
created | 2016-08-09 18:59:21 |
last_update | 2016-08-09 18:59:21 |
depth | 1 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 54 |
author_reputation | 5,187,432,801,760 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 709,015 |
net_rshares | 0 |
Some fantastic work by you here. It is a real pity there are so few whales - there just arn't enough to go around.
author | candy49 |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t122357797z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 12:23:54 |
last_update | 2016-08-09 12:23:54 |
depth | 1 |
children | 1 |
last_payout | 2016-09-09 03:59:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.020 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 114 |
author_reputation | 8,256,286,200,499 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 702,188 |
net_rshares | 81,731,792,732 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
teatree | 0 | 24,134,295,297 | 100% | ||
aenor | 0 | 57,597,497,435 | 100% |
Thanks! They say this will change as time goes on and power is more distributed. We'll see.
author | bitcalm |
---|---|
permlink | re-candy49-re-bitcalm-when-do-whales-upvote-20160809t130953014z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 13:09:45 |
last_update | 2016-08-09 13:09:57 |
depth | 2 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 91 |
author_reputation | 24,919,530,803,138 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 702,803 |
net_rshares | 0 |
Great work! And thanks for the code that you used!
author | clement |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t114422352z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 11:44:21 |
last_update | 2016-08-09 11:44:21 |
depth | 1 |
children | 1 |
last_payout | 2016-09-09 03:59: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 | 50 |
author_reputation | 12,800,792,022,668 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 701,677 |
net_rshares | 0 |
You're welcome. Hopefully others can use it as a basis for even cooler stats.
author | bitcalm |
---|---|
permlink | re-clement-re-bitcalm-when-do-whales-upvote-20160809t131033619z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 13:10:27 |
last_update | 2016-08-09 13:10:27 |
depth | 2 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 77 |
author_reputation | 24,919,530,803,138 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 702,811 |
net_rshares | 0 |
I can assure you that I am not a bot ... I just happen to enjoy most posts I read.
author | complexring |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t131301984z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 13:13:00 |
last_update | 2016-08-09 13:13:00 |
depth | 1 |
children | 1 |
last_payout | 2016-09-09 03:59:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.224 HBD |
curator_payout_value | 0.065 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 82 |
author_reputation | 62,649,292,215,598 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 702,845 |
net_rshares | 430,337,388,977 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
edgeland | 0 | 110,627,363,231 | 100% | ||
billbutler | 0 | 177,622,359,946 | 100% | ||
coinbitgold | 0 | 113,617,690,468 | 100% | ||
keithwillshine | 0 | 19,896,546,718 | 100% | ||
supermeatboy | 0 | 2,311,077,764 | 100% | ||
raymonjohnstone | 0 | 116,635,218 | 100% | ||
rfbb | 0 | 65,609,243 | 100% | ||
bitcalm | 0 | 4,351,756,055 | 100% | ||
stylo | 0 | 1,529,620,212 | 100% | ||
gduran | 0 | 57,351,357 | 100% | ||
wadesteems | 0 | 53,409,336 | 100% | ||
steemwatch | 0 | 87,969,429 | 100% |
Hehe my analysis was anything but in depth, and I'm no statistician. Hope you weren't offended :D I hear you're a mathematician. Any tips for future stats posts?
author | bitcalm |
---|---|
permlink | re-complexring-re-bitcalm-when-do-whales-upvote-20160809t135625620z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 13:56:18 |
last_update | 2016-08-09 14:15:39 |
depth | 2 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 161 |
author_reputation | 24,919,530,803,138 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 703,537 |
net_rshares | 0 |
I'd say avoid 8-16UTC time, which is 9-5 UK time! kinda convenient if you live in UK and want help with your Steem addiction!
author | cryptosi |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t120327244z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 12:03:21 |
last_update | 2016-08-09 12:03:21 |
depth | 1 |
children | 2 |
last_payout | 2016-09-09 03:59: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 | 125 |
author_reputation | 378,844,291,332 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 701,898 |
net_rshares | 5,446,895,616 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cryptosi | 0 | 5,446,895,616 | 100% |
Yeah. The next question to answer is after posting, when do the most rewards happen. Do most come in the first hour? Is 30 minutes really the cutoff? Is there a point where posts just stop getting attention even though it's inside the reward time limit? The blockchain has the answer! :)
author | bitcalm |
---|---|
permlink | re-cryptosi-re-bitcalm-when-do-whales-upvote-20160809t121242838z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 12:12:36 |
last_update | 2016-08-09 12:12:36 |
depth | 2 |
children | 1 |
last_payout | 2016-09-09 03:59:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.090 HBD |
curator_payout_value | 0.026 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 288 |
author_reputation | 24,919,530,803,138 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 702,044 |
net_rshares | 185,334,667,968 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
billbutler | 0 | 177,622,359,946 | 100% | ||
cryptobro | 0 | 6,590,451,709 | 100% | ||
lorddominik007 | 0 | 956,144,221 | 100% | ||
cryptomental | 0 | 109,025,677 | 100% | ||
guyvoltaire | 0 | 56,686,415 | 100% |
This was my next question as I read through your post. Are you reading my mind? You have a new follower.
author | cryptobro |
---|---|
permlink | re-bitcalm-re-cryptosi-re-bitcalm-when-do-whales-upvote-20160809t131823392z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 13:18:24 |
last_update | 2016-08-09 13:18:24 |
depth | 3 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 106 |
author_reputation | 912,384,027,106 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 702,942 |
net_rshares | 0 |
Which time zone it is?
author | cuckoo |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t220844090z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 22:08:45 |
last_update | 2016-08-09 22:08:45 |
depth | 1 |
children | 1 |
last_payout | 2016-09-09 03:59: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 | 22 |
author_reputation | 550,621,144,979 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 712,690 |
net_rshares | 0 |
It's in the post. UTC stands for Coordinated Universal Time. There are many online tools for translating UTC time to the time zone you're in.
author | bitcalm |
---|---|
permlink | re-cuckoo-re-bitcalm-when-do-whales-upvote-20160810t053351297z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-10 05:33:42 |
last_update | 2016-08-10 05:33:42 |
depth | 2 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 141 |
author_reputation | 24,919,530,803,138 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 719,033 |
net_rshares | 0 |
cool work
author | decrypt |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160810t024149759z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-10 02:41:51 |
last_update | 2016-08-10 02:41:51 |
depth | 1 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 9 |
author_reputation | 987,629,623,608 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 716,818 |
net_rshares | 0 |
Great job!
author | defiant |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160810t012004159z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-10 01:20:03 |
last_update | 2016-08-10 01:20:03 |
depth | 1 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 10 |
author_reputation | 80,769,043,128 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 715,593 |
net_rshares | 0 |
This is really helpful. Thanks for building. What lis next?
author | dennygalindo |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t113537436z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 11:35:36 |
last_update | 2016-08-09 11:35:36 |
depth | 1 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 59 |
author_reputation | 6,552,498,469,686 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 701,585 |
net_rshares | 57,963,848 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
michel | 0 | 57,963,848 | 100% |
Fascinating and clever. Thank you!
author | epiphany |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t220053293z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 22:00:48 |
last_update | 2016-08-09 22:00:48 |
depth | 1 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 34 |
author_reputation | 961,293,231,586 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 712,536 |
net_rshares | 0 |
Thanks for your work on this. Pretty cool. It really ended up being a sort of interesting sideshow more than helping to figure out when to post, eh? Can't seem to get traction with my posts, so was excited to see the title. Just keeping on I guess... :)
author | escapeamericanow |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160810t002110121z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-10 00:21:12 |
last_update | 2016-08-10 00:21:12 |
depth | 1 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 253 |
author_reputation | 12,411,720,457,033 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 714,761 |
net_rshares | 0 |
Fantastic post! Thank you for doing the analysis and sharing the code. This post is definitely making it to my FAVORITES! Steem on! Mike
author | etcmike |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t210148784z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 21:01:48 |
last_update | 2016-08-09 21:01:48 |
depth | 1 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 139 |
author_reputation | 534,676,096,189,306 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 711,425 |
net_rshares | 0 |
Interesting research, but people can still post everyday, this is not a reason to just post on those specific days in those specific hours.
author | freddy008 |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t160144100z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 16:01:45 |
last_update | 2016-08-09 16:01:45 |
depth | 1 |
children | 1 |
last_payout | 2016-09-09 03:59:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.036 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 139 |
author_reputation | 1,469,326,629,460 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 705,648 |
net_rshares | 81,098,004,691 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
soulsistashakti | 0 | 81,098,004,691 | 100% |
I don't have time for all that. Steemit is just one of the many things I do, I can't be up all in this bizness 24/7 I have other things to do. Money doesn't run my life :)
author | soulsistashakti |
---|---|
permlink | re-freddy008-re-bitcalm-when-do-whales-upvote-20160809t182249129z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 18:22:48 |
last_update | 2016-08-09 18:22:48 |
depth | 2 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 173 |
author_reputation | 16,661,384,249,815 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 708,286 |
net_rshares | 57,843,281 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
guyvoltaire | 0 | 57,843,281 | 100% |
I think we need ro focus on our posts. If not we will get crazy trying to catch a whale
author | gargon |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t141054659z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 14:10:54 |
last_update | 2016-08-09 14:10:54 |
depth | 1 |
children | 2 |
last_payout | 2016-09-09 03:59: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 | 87 |
author_reputation | 169,359,743,811,801 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 703,758 |
net_rshares | 0 |
You're right, people shouldn't "go overboard" (see what I did there?) trying to get whale votes. The reason I did this was for the fun and just in case there was a really obvious pattern, like whales never upvoting on Fridays. Not the case.
author | bitcalm |
---|---|
permlink | re-gargon-re-bitcalm-when-do-whales-upvote-20160809t141310285z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 14:13:03 |
last_update | 2016-08-09 14:13:03 |
depth | 2 |
children | 1 |
last_payout | 2016-09-09 03:59: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 | 240 |
author_reputation | 24,919,530,803,138 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 703,786 |
net_rshares | 870,575,932 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gargon | 0 | 870,575,932 | 100% |
Anyway, I think you always make good points and post that generate discussion. You were one of the first ones I followed. Keep the good work!
author | gargon |
---|---|
permlink | re-bitcalm-re-gargon-re-bitcalm-when-do-whales-upvote-20160810t095021060z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-10 09:50:21 |
last_update | 2016-08-10 09:50:21 |
depth | 3 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 141 |
author_reputation | 169,359,743,811,801 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 721,808 |
net_rshares | 0 |
Here's some helpful information! @seedsofliberty @jaredhowe @dragonanarchist @larkenrose
author | go-voluntary |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t193822534z |
category | programming |
json_metadata | {"tags":["programming"],"users":["seedsofliberty","jaredhowe","dragonanarchist","larkenrose"]} |
created | 2016-08-09 19:38:24 |
last_update | 2016-08-09 19:38:24 |
depth | 1 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 88 |
author_reputation | 14,053,671,653 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 709,725 |
net_rshares | 0 |
I usually finish writing my posts around midnight Hawaii time and find that it's better to just leave it overnight and post the next morning for better visibility. Purely anecdotal, no data to back it up, but seems to be working out ok.
author | grolelo |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160810t062348703z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-10 06:23:48 |
last_update | 2016-08-10 06:23:48 |
depth | 1 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 237 |
author_reputation | 1,646,650,171,375 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 719,656 |
net_rshares | 0 |
Whoah man what a great post! upvoted and followed
author | guinsanity |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t220242625z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 22:10:33 |
last_update | 2016-08-09 22:10:33 |
depth | 1 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 49 |
author_reputation | 27,030,404,862 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 712,724 |
net_rshares | 0 |
I'm sure this isn't a very original thing to say but kudos to you for compiling this and coding the script/program? yourself. Very interesting idea, I never really gave much thought as to posting and upvoting times trends throughout the day until now. I think I'd to like follow further posts relevant to this. Could you maybe suggest a few of the steemtools you think are most useful or interesting for a new member?
author | guyvoltaire |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t183034156z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 18:30:36 |
last_update | 2016-08-09 18:30:36 |
depth | 1 |
children | 2 |
last_payout | 2016-09-09 03:59: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 | 417 |
author_reputation | 13,222,980,324 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 708,437 |
net_rshares | 0 |
I use steemstats and not much else. I'm in steemit.chat a lot, but that's not what you mean. @furion has a nice developer's guide if you're interested in getting into it yourself, and @blueorgy has a stats website that works with live data. I'm sure there are more.
author | bitcalm |
---|---|
permlink | re-guyvoltaire-re-bitcalm-when-do-whales-upvote-20160809t185025933z |
category | programming |
json_metadata | {"tags":["programming"],"users":["furion","blueorgy"]} |
created | 2016-08-09 18:50:24 |
last_update | 2016-08-09 18:50:24 |
depth | 2 |
children | 1 |
last_payout | 2016-09-09 03:59: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 | 265 |
author_reputation | 24,919,530,803,138 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 708,826 |
net_rshares | 0 |
Alright cool I'll be sure to check steemstats, furion's guide and the chat and stats website! Thanks again :)
author | guyvoltaire |
---|---|
permlink | re-bitcalm-re-guyvoltaire-re-bitcalm-when-do-whales-upvote-20160810t033958560z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-10 03:40:03 |
last_update | 2016-08-10 03:40:03 |
depth | 3 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 110 |
author_reputation | 13,222,980,324 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 717,558 |
net_rshares | 0 |
Brilliant work and I imagine it took hours of work. My experience on social media has been to post whenever I can. Preferably in the am since most of my followers are in North, Central or South America. On Steemit with the window being shortlived I think 10am EST is a safe time for my account.
author | hilarski |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t154505059z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 15:45:06 |
last_update | 2016-08-09 15:45:06 |
depth | 1 |
children | 1 |
last_payout | 2016-09-09 03:59: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 | 294 |
author_reputation | 488,873,580,141,533 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 705,379 |
net_rshares | 0 |
Yeah it took about 5 hours. I spent ages tweaking it. Converting a date to a block number wasn't really necessary, but it makes it easier to use. Also, that method is super slow. I bet it can be done better.
author | bitcalm |
---|---|
permlink | re-hilarski-re-bitcalm-when-do-whales-upvote-20160809t155108300z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 15:51:00 |
last_update | 2016-08-09 15:51:00 |
depth | 2 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 207 |
author_reputation | 24,919,530,803,138 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 705,482 |
net_rshares | 9,820,073,617 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
hilarski | 0 | 9,820,073,617 | 100% |
Oh, man, @bitcalm. Your posts never cease to amaze me. I don't know if it's just because you're posting topics that I can relate to or are interested in, but you get all my upvotes. I've been meaning to code something like this for a while now, but opted to experiment posting on different times with different kinds of content. This post is very insightful and is shaping up to be one of my most favorite posts in Steemit so far. I guess an improvement to this is to factor in the tags or types of post they upvote along with their voting time. This really has a potential to analyze whale voting behavior. By the way, @complexring is 100% human, and an accomplished mathematician. As to why his voting behavior looks like that, I'm not sure. But, he's a cool guy who has an inclination to fiction posts.
author | jedau |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t113729358z |
category | programming |
json_metadata | {"tags":["programming"],"users":["bitcalm","complexring"]} |
created | 2016-08-09 11:37:30 |
last_update | 2016-08-09 11:37:30 |
depth | 1 |
children | 22 |
last_payout | 2016-09-09 03:59:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 5.276 HBD |
curator_payout_value | 0.696 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 806 |
author_reputation | 50,429,040,590,557 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 701,608 |
net_rshares | 4,563,261,711,223 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lafona-miner | 0 | 3,179,470,399,664 | 100% | ||
lafona | 0 | 384,196,454,618 | 100% | ||
lafona5 | 0 | 314,149,363,357 | 100% | ||
theoretical | 0 | 297,108,369,427 | 100% | ||
edgeland | 0 | 110,627,363,231 | 100% | ||
billbutler | 0 | 177,622,359,946 | 100% | ||
writewords | 0 | 461,163,061 | 100% | ||
keithwillshine | 0 | 19,896,546,718 | 100% | ||
jasonmcz | 0 | 63,743,478,598 | 100% | ||
andreicon | 0 | 211,401,538 | 100% | ||
cryptobro | 0 | 6,590,451,709 | 100% | ||
karchersmith | 0 | 264,804,571 | 100% | ||
spookypooky | 0 | 2,525,476,141 | 100% | ||
merej99 | 0 | 772,261,165 | 100% | ||
usnewspress | 0 | 86,443,003 | 100% | ||
kalimor | 0 | 1,004,800,041 | 100% | ||
rfbb | 0 | 65,609,243 | 100% | ||
bitcalm | 0 | 4,351,756,055 | 100% | ||
philadelphia | 0 | 59,026,975 | 100% | ||
codymac40 | 0 | 54,182,162 | 100% | ||
ayishagisel | 0 | 0 | 100% | ||
yellowflash32 | 0 | 0 | 100% | ||
blackforcewitch | 0 | 0 | 100% |
You're welcome. I'm glad you enjoy my posts. This one took a bit more effort than the others, but it was a lot of fun. It's only touching the surface of the kind of statistical analysis you can do on the blockchain.
author | bitcalm |
---|---|
permlink | re-jedau-re-bitcalm-when-do-whales-upvote-20160809t121030294z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 12:10:24 |
last_update | 2016-08-09 12:10:24 |
depth | 2 |
children | 5 |
last_payout | 2016-09-09 03:59: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 | 215 |
author_reputation | 24,919,530,803,138 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 702,014 |
net_rshares | 0 |
Good for you for blazing the trail. Personally, I've been mostly scared of making any analysis out of fear of making a mistake and being criticized for it. I really hope posts like this gain some traction to increase the confidence of people like myself. I agree that there are tons of insights to be mined.
author | jedau |
---|---|
permlink | re-bitcalm-re-jedau-re-bitcalm-when-do-whales-upvote-20160809t121233378z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 12:12:33 |
last_update | 2016-08-09 12:12:33 |
depth | 3 |
children | 2 |
last_payout | 2016-09-09 03:59: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 | 307 |
author_reputation | 50,429,040,590,557 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 702,042 |
net_rshares | 4,177,795,274 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fjccoin | 0 | 982,970,276 | 100% | ||
talyvale | 0 | 3,194,824,998 | 100% |
Do you think you could find out the general topics they upvote on? Not really because I want to posting about those topics but more to see the direction in which steem it might be heading in. After all the whales are the curators of steem.
author | rushd |
---|---|
permlink | re-bitcalm-re-jedau-re-bitcalm-when-do-whales-upvote-20160809t190427455z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 19:04:33 |
last_update | 2016-08-09 19:05:21 |
depth | 3 |
children | 1 |
last_payout | 2016-09-09 03:59: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 | 239 |
author_reputation | 172,953,944,203 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 709,123 |
net_rshares | 0 |
Good to know @complexring is human. Hope he figure out the sleep problem ;) Actually, it'd be cool to have a mathematician weigh in on this. Can you pass the link on?
author | bitcalm |
---|---|
permlink | re-jedau-re-bitcalm-when-do-whales-upvote-20160809t122239772z |
category | programming |
json_metadata | {"tags":["programming"],"users":["complexring"]} |
created | 2016-08-09 12:22:33 |
last_update | 2016-08-09 12:22:33 |
depth | 2 |
children | 6 |
last_payout | 2016-09-09 03:59:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.052 HBD |
curator_payout_value | 0.014 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 166 |
author_reputation | 24,919,530,803,138 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 702,167 |
net_rshares | 110,924,385,767 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
edgeland | 0 | 110,627,363,231 | 100% | ||
spinbunny | 0 | 210,579,533 | 100% | ||
usnewspress | 0 | 86,443,003 | 100% |
Like ur post @bitcalm , follow u
author | faraz |
---|---|
permlink | re-bitcalm-re-jedau-re-bitcalm-when-do-whales-upvote-20160809t191436920z |
category | programming |
json_metadata | {"tags":["programming"],"users":["bitcalm"]} |
created | 2016-08-09 19:14:42 |
last_update | 2016-08-09 19:14:42 |
depth | 3 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 32 |
author_reputation | 324,357,724,493 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 709,331 |
net_rshares | 205,899,987 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
spinbunny | 0 | 205,899,987 | 100% |
Sure thing! I hope he replies on this thread with his thoughts
author | jedau |
---|---|
permlink | re-bitcalm-re-jedau-re-bitcalm-when-do-whales-upvote-20160809t122330158z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 12:23:30 |
last_update | 2016-08-09 12:23:30 |
depth | 3 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 62 |
author_reputation | 50,429,040,590,557 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 702,184 |
net_rshares | 0 |
πnice showing graphics to know @bitcalm
author | meteor78 |
---|---|
permlink | re-bitcalm-re-jedau-re-bitcalm-when-do-whales-upvote-20160809t183840400z |
category | programming |
json_metadata | {"tags":["programming"],"users":["bitcalm"]} |
created | 2016-08-09 18:38:45 |
last_update | 2016-08-09 18:38:45 |
depth | 3 |
children | 1 |
last_payout | 2016-09-09 03:59: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 | 39 |
author_reputation | 184,361,553,890 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 708,606 |
net_rshares | 210,579,533 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
spinbunny | 0 | 210,579,533 | 100% |
I was giggling as I read, wondering if any of the possibly-a-bot-but-really-a-human whales were rethinking their sleep schedules.
author | steemitpatina |
---|---|
permlink | re-bitcalm-re-jedau-re-bitcalm-when-do-whales-upvote-20160809t141432198z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 14:14:33 |
last_update | 2016-08-09 14:14:33 |
depth | 3 |
children | 1 |
last_payout | 2016-09-09 03:59: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 | 129 |
author_reputation | 7,507,292,756,109 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 703,815 |
net_rshares | 57,205,327 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
shadowspub | 0 | 57,205,327 | 100% |
@bitcalm nailed it on this post. I would love to see this trend month over month!
author | cryptobro |
---|---|
permlink | re-jedau-re-bitcalm-when-do-whales-upvote-20160809t131653354z |
category | programming |
json_metadata | {"tags":["programming"],"users":["bitcalm"]} |
created | 2016-08-09 13:16:54 |
last_update | 2016-08-09 13:16:54 |
depth | 2 |
children | 1 |
last_payout | 2016-09-09 03:59:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.068 HBD |
curator_payout_value | 0.018 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 82 |
author_reputation | 912,384,027,106 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 702,917 |
net_rshares | 142,283,657,499 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jamtaylor | 0 | 131,022,309,814 | 100% | ||
crossroads | 0 | 8,405,658,182 | 100% | ||
jedau | 0 | 2,855,689,503 | 100% |
Right you are!
author | jedau |
---|---|
permlink | re-cryptobro-re-jedau-re-bitcalm-when-do-whales-upvote-20160809t132722632z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 13:27:21 |
last_update | 2016-08-09 13:27:21 |
depth | 3 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 14 |
author_reputation | 50,429,040,590,557 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 703,073 |
net_rshares | 0 |
Wow that was way to dam helpful !! OK if anyone agrees smash dat mfcking up vote! Also how has this helped others??
author | flyboyzombie |
---|---|
permlink | re-jedau-re-bitcalm-when-do-whales-upvote-20160809t225233045z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 22:52:36 |
last_update | 2016-08-09 22:52:36 |
depth | 2 |
children | 1 |
last_payout | 2016-09-09 03:59: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 | 115 |
author_reputation | 5,788,213,054,794 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 713,396 |
net_rshares | 0 |
The upvote button for this post has been so smashed, I don't know if we could even resuscitate it.
author | jedau |
---|---|
permlink | re-flyboyzombie-re-jedau-re-bitcalm-when-do-whales-upvote-20160810t033724299z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-10 03:37:24 |
last_update | 2016-08-10 03:37:24 |
depth | 3 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 98 |
author_reputation | 50,429,040,590,557 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 717,536 |
net_rshares | 0 |
What @jedau said. I've been posting whenever and wherever I can since I've got to wait about 2 weeks to get internet at my house, so parking lot hopping with free wifi has been my life the last few days since I moved. Yay Me! Anyway - I saw your list of bots and I'm thinking, "Well, I'm a frikken idiot" because I've been seeking those usernames out and trying to engage...maybe get on their radar...and I might as well be talking to my stereo. *sigh* I kind of have to laugh at myself. LOL
author | merej99 |
---|---|
permlink | re-jedau-re-bitcalm-when-do-whales-upvote-20160809t141323201z |
category | programming |
json_metadata | {"tags":["programming"],"users":["jedau"]} |
created | 2016-08-09 14:13:03 |
last_update | 2016-08-09 14:13:03 |
depth | 2 |
children | 2 |
last_payout | 2016-09-09 03:59: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 | 497 |
author_reputation | 109,727,414,619,488 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 703,787 |
net_rshares | 27,268,355,984 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
meiisheree | 0 | 19,934,959,554 | 100% | ||
rushd | 0 | 1,168,063,130 | 100% | ||
jedau | 0 | 2,855,689,503 | 100% | ||
talyvale | 0 | 3,194,824,998 | 100% | ||
dobbydaba | 0 | 58,132,384 | 100% | ||
guyvoltaire | 0 | 56,686,415 | 100% |
It's good you were notified they were bots before you got emotionally invested in them LOL :D seriously though, great effort trying to find places to post from. I really hope that my upvote for you was worth more but sadly it isn't.
author | jedau |
---|---|
permlink | re-merej99-re-jedau-re-bitcalm-when-do-whales-upvote-20160809t142542505z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 14:25:42 |
last_update | 2016-08-09 14:25:42 |
depth | 3 |
children | 1 |
last_payout | 2016-09-09 03:59: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 | 232 |
author_reputation | 50,429,040,590,557 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 704,037 |
net_rshares | 4,408,442,470 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bitcalm | 0 | 4,351,756,055 | 100% | ||
guyvoltaire | 0 | 56,686,415 | 100% |
Data is beautiful.
author | spookypooky |
---|---|
permlink | re-jedau-re-bitcalm-when-do-whales-upvote-20160809t193728641z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 19:37:30 |
last_update | 2016-08-09 19:37:30 |
depth | 2 |
children | 1 |
last_payout | 2016-09-09 03:59: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 | 18 |
author_reputation | 2,591,924,956,536 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 709,705 |
net_rshares | 0 |
I agree with this wholeheartedly. If only data wasn't shared by all, I would've put a ring on it instantly. That's how much I like it.
author | jedau |
---|---|
permlink | re-spookypooky-re-jedau-re-bitcalm-when-do-whales-upvote-20160810t033630066z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-10 03:36:30 |
last_update | 2016-08-10 03:36:30 |
depth | 3 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 134 |
author_reputation | 50,429,040,590,557 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 717,525 |
net_rshares | 0 |
Thats some mighty fine whale stalking you've been doing here. Bravo for the effort man!
author | justtryme90 |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160810t014920870z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-10 01:48:39 |
last_update | 2016-08-10 01:48:39 |
depth | 1 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 87 |
author_reputation | 140,118,479,939,905 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 716,011 |
net_rshares | 101,922,286 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lordvader | 0 | 101,922,286 | 100% |
Good to have this information @bitcalm, its very useful to people like me who wanted to be upvoted by whales. The only trouble here is the time, I live on the other side of the world where days here are night there but I can find a way, I have to find a way.
author | juvyjabian |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t224651903z |
category | programming |
json_metadata | {"tags":["programming"],"users":["bitcalm"]} |
created | 2016-08-09 21:56:24 |
last_update | 2016-08-09 21:56:24 |
depth | 1 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 258 |
author_reputation | 185,700,092,637,158 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 712,458 |
net_rshares | 0 |
author | kalimor |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t142920468z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 14:31:15 |
last_update | 2016-08-09 14:31:15 |
depth | 1 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 13 |
author_reputation | 945,706,095,176 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 704,128 |
net_rshares | 4,880,225,252 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cheetah14 | 0 | -101,740,910 | -100% | ||
cheetah15 | 0 | -171,343,078 | -100% | ||
cheetah16 | 0 | -101,624,073 | -100% | ||
cheetah17 | 0 | -101,622,783 | -100% | ||
kalimor | 0 | 1,004,800,041 | 100% | ||
bitcalm | 0 | 4,351,756,055 | 100% |
So the conclusion is: Content matter and not the time of the post. Nice to know. <p><a href="https://steemit.com/@lasseehlers/posts">Lasse Ehlers</a></p>
author | lasseehlers |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t153753074z |
category | programming |
json_metadata | {"tags":["programming"],"links":["https://steemit.com/@lasseehlers/posts"]} |
created | 2016-08-09 15:38:00 |
last_update | 2016-08-09 15:38:00 |
depth | 1 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 155 |
author_reputation | -19,498,697,845,818 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 705,258 |
net_rshares | 0 |
lol you crack me up with the "whales".
author | lkong87 |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t185314466z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 18:53:21 |
last_update | 2016-08-09 18:53:21 |
depth | 1 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 38 |
author_reputation | 343,276,759,037 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 708,895 |
net_rshares | 0 |
This is like asking ,"When do Sith Lords force choke someone?" http://img.cinemablend.com/cb/9/9/c/6/d/7/99c6d756088902e30f12e7775581a9fe7294eb6dfc2d20bf611f0c12d9fd6d0c.jpg Whenever they want.
author | lordvader |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t193340968z |
category | programming |
json_metadata | {"tags":["programming"],"image":["http://img.cinemablend.com/cb/9/9/c/6/d/7/99c6d756088902e30f12e7775581a9fe7294eb6dfc2d20bf611f0c12d9fd6d0c.jpg"]} |
created | 2016-08-09 19:33:39 |
last_update | 2016-08-09 19:37:06 |
depth | 1 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 195 |
author_reputation | 94,274,982,842,662 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 709,650 |
net_rshares | 0 |
I'm saving this post in my browser favs; it's worth to revisit from time to time. I like what you did here @bitcalm
author | mac-o |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t212149734z |
category | programming |
json_metadata | {"tags":["programming"],"users":["bitcalm"]} |
created | 2016-08-09 21:21:48 |
last_update | 2016-08-09 21:21:48 |
depth | 1 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 115 |
author_reputation | 542,049,933,877 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 711,800 |
net_rshares | 0 |
besides the time frame, any particular lure i can use to attract these whales to my posts. they seem to pass by pretty much unnoticed no mather what
author | mac-o |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160810t034253519z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-10 03:42:54 |
last_update | 2016-08-10 03:42:54 |
depth | 1 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 148 |
author_reputation | 542,049,933,877 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 717,589 |
net_rshares | 0 |
no matter when you posted, YOU made it!!! :^) @bitcalm
author | matherly |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160810t020949750z |
category | programming |
json_metadata | {"tags":["programming"],"users":["bitcalm"]} |
created | 2016-08-10 02:09:51 |
last_update | 2016-08-10 02:09:51 |
depth | 1 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 5,036,194,561,090 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 716,344 |
net_rshares | 0 |
So, if @steemed, @itsascam, and @steemroller are all bot, how do they judge quality of a post? Does it mean that these whale bots are upvoting relying on some pre-defined parameter instead of post quality?
author | moonguy |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t173251844z |
category | programming |
json_metadata | {"tags":["programming"],"users":["steemed","itsascam","steemroller"]} |
created | 2016-08-09 17:32:51 |
last_update | 2016-08-09 17:32:51 |
depth | 1 |
children | 1 |
last_payout | 2016-09-09 03:59: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 | 205 |
author_reputation | 355,338,083,472 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 707,343 |
net_rshares | 0 |
To get on the author list you need to be pre-approved, and from what I've heard, what gets upvoted is checked and if the quality is poor, you risk being removed. So it's automated but still sort of curated. I get why you're not happy with it though. It's a big presumptuous to think that someone always writes good content; a kind of halo effect, if you like.
author | bitcalm |
---|---|
permlink | re-moonguy-re-bitcalm-when-do-whales-upvote-20160809t184759691z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 18:48:00 |
last_update | 2016-08-09 18:48:00 |
depth | 2 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 361 |
author_reputation | 24,919,530,803,138 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 708,782 |
net_rshares | 0 |
Awesome info now I just need a script to guide them to my blog lol just kidding you post is awesome. [](http://steemit.com/@mrgrey)
author | mrgrey |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t214226061z |
category | programming |
json_metadata | {"tags":["programming"],"image":["https://i.imgsafe.org/8cb9d0171b.jpg"]} |
created | 2016-08-09 21:42:24 |
last_update | 2016-08-09 21:42:24 |
depth | 1 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 180 |
author_reputation | 3,805,658,080,500 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 712,196 |
net_rshares | 0 |
This is cool. Great you made this statestic. ^^
author | nippel66 |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t120806386z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 12:08:21 |
last_update | 2016-08-09 12:08:21 |
depth | 1 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 47 |
author_reputation | 26,614,292,969,136 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 701,978 |
net_rshares | 6,786,216,500 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
nippel66 | 0 | 6,786,216,500 | 100% |
very detailed, making a clearer picture about "whales"
author | noor |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t153633570z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 15:36:33 |
last_update | 2016-08-09 15:36:33 |
depth | 1 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 54 |
author_reputation | 40,245,578,104 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 705,235 |
net_rshares | 0 |
Good work @bitcalm, I really like the way you displayed your information. I assume the times shown here are UTC? I posted something that looked at similar data not too long ago, but I tried looking at it on a calendar. [Check it out if your have a minute, I'd appreciate your input.](https://steemit.com/steemit/@owdy/steemit-analysis-3-upvotes-lots-of-them-how-understanding-the-whales-upvoting-cycles-can-increase-your-expected-payout)
author | owdy |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t190009926z |
category | programming |
json_metadata | {"tags":["programming"],"users":["bitcalm"],"links":["https://steemit.com/steemit/@owdy/steemit-analysis-3-upvotes-lots-of-them-how-understanding-the-whales-upvoting-cycles-can-increase-your-expected-payout"]} |
created | 2016-08-09 19:00:12 |
last_update | 2016-08-09 19:00:12 |
depth | 1 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 439 |
author_reputation | 3,152,666,625,062 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 709,036 |
net_rshares | 2,084,442,170 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
owdy | 0 | 2,084,442,170 | 100% |
Great analysis. Now we can cast our fishing rod at the right time trying to catch a whale :)
author | penguinpablo |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t142323084z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 14:23:21 |
last_update | 2016-08-09 14:23:21 |
depth | 1 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 92 |
author_reputation | 792,312,678,950,166 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 703,994 |
net_rshares | 4,438,791,176 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bitcalm | 0 | 4,438,791,176 | 100% |
We need to check
author | persik |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t173853988z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 17:39:00 |
last_update | 2016-08-09 17:39:00 |
depth | 1 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 16 |
author_reputation | 60,573,820,387 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 707,455 |
net_rshares | 0 |
I really love posts with stats because they show me so much more than reading words that make me scared to say them out loud. Thank you for sharing this with us all and giving us some more insight on what plays around here and around what time. Not that I think it will do me good seeing I am awake when all the whales sleep. But then again, I am rather enjoying myself here even without the whales. I love goldfish.
author | poeticsnake |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t182000258z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 18:20:12 |
last_update | 2016-08-09 18:20:12 |
depth | 1 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 416 |
author_reputation | 147,782,814,593,781 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 708,225 |
net_rshares | 0 |
Automated whale watching. Really great bit of code!
author | professorx |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160810t020302386z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-10 02:03:03 |
last_update | 2016-08-10 02:03:03 |
depth | 1 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 51 |
author_reputation | 2,328,048,423,342 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 716,235 |
net_rshares | 0 |
This was actually much more interesting that I expected, good job :) I can confirm I don't use a bot to vote for me; it's all done manually by yours truly, at least for now. I'm a bit surprised that I'm a "low upvoting whale" since I feel like I vote *a lot*, but as I don't use bots or have a team of people curating for me I suppose that's normal. I'm also trying to refrain from voting on posts that already have $1000+ payouts in order to balance things out a little, so I guess that factors in as well.
author | rainman |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t183813158z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 18:38:12 |
last_update | 2016-08-09 18:38:12 |
depth | 1 |
children | 4 |
last_payout | 2016-09-09 03:59: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 | 510 |
author_reputation | 8,323,904,861,044 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 708,592 |
net_rshares | 11,187,128,048 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
veralynn | 0 | 5,532,992,967 | 100% | ||
bitcalm | 0 | 4,264,720,934 | 100% | ||
cehuneke | 0 | 1,274,219,509 | 100% | ||
guyvoltaire | 0 | 57,843,281 | 100% | ||
gduran | 0 | 57,351,357 | 100% |
Nice to hear you don't use a bot. It was difficult to tell with you because it could have just been (and probably was) the way things averaged out....or you're telling porkies ;) It makes sense that the bot powered whales are upvoting more. Perhaps that's a good metric to determine if someone is a bot - I can imagine bots upvote more than regular users (and also never post articles). At the same time, I literally just looked at the images to compare them. I wanted to add the total count to each plot, but I'd already generated them and took 30 mins - laziness won. :) Nice to hear that you hold back on large reward posts. I think a lot of users will be happy to hear that.
author | bitcalm |
---|---|
permlink | re-rainman-re-bitcalm-when-do-whales-upvote-20160809t185823606z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 18:58:24 |
last_update | 2016-08-09 18:58:24 |
depth | 2 |
children | 2 |
last_payout | 2016-09-09 03:59: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 | 680 |
author_reputation | 24,919,530,803,138 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 708,987 |
net_rshares | 0 |
Your power has grown! Impressive. Most impressive.
author | lordvader |
---|---|
permlink | re-bitcalm-re-rainman-re-bitcalm-when-do-whales-upvote-20160813t065816468z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-13 06:58:15 |
last_update | 2016-08-13 06:58:15 |
depth | 3 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 50 |
author_reputation | 94,274,982,842,662 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 778,921 |
net_rshares | 0 |
You did get my vote nevertheless ;) I could be telling porkies of course but that doesn't come natural to me so I don't :) My curation rewards probably would've been way higher had I used a bot in any way, and being sick like I was for the last 3-4 days would not have made such a big impact. I'm fine with the lesser rewards though, and to be honest I feel the system is a bit too skewed towards whale curators at the moment. Us whales working hard to optimize our curation rewards will not help with the distribution issue, so I prefer to take a relaxed attitude towards it.
author | rainman |
---|---|
permlink | re-bitcalm-re-rainman-re-bitcalm-when-do-whales-upvote-20160809t191603592z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 19:16:03 |
last_update | 2016-08-09 19:16:03 |
depth | 3 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 579 |
author_reputation | 8,323,904,861,044 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 709,358 |
net_rshares | 4,177,685,813 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bitcalm | 0 | 4,177,685,813 | 100% |
Hi Rainman, its great to see you communicate with us. i think it doesn't matter, if one uses a bot or votes himself. through you own reading , you will catch more valuable stuff than the bots, the bots on the other hand, will be able to spread more earnings to many authors. so both sides have good and bad aspects. maybe you could do me a favor and check this out, https://steemit.com/food/@knozaki2015/britafilters-hacked-read-the-whole-hacking-story-steemit-exclusive i co-authored it with a friend (100% of the Steem $ going to him) , and this is my piece i think was my best post of all in my Steemit history. thanks !
author | knozaki2015 |
---|---|
permlink | re-rainman-re-bitcalm-when-do-whales-upvote-20160809t222242566z |
category | programming |
json_metadata | {"tags":["programming"],"links":["https://steemit.com/food/@knozaki2015/britafilters-hacked-read-the-whole-hacking-story-steemit-exclusive"]} |
created | 2016-08-09 22:22:45 |
last_update | 2016-08-09 22:22:45 |
depth | 2 |
children | 0 |
last_payout | 2016-09-09 03:59:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.100 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 631 |
author_reputation | 1,102,353,973,346,032 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 712,903 |
net_rshares | 160,104,760,041 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cmtzco | 0 | 2,624,505,884 | 100% | ||
knozaki2015 | 0 | 157,267,097,001 | 100% | ||
krushing | 0 | 43,514,489 | 100% | ||
lordvader | 0 | 99,883,840 | 100% | ||
salebored | 0 | 34,237,977 | 100% | ||
smashalee | 0 | 35,520,850 | 100% |
Now?
author | ranko-k |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t183954170z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 18:39:57 |
last_update | 2016-08-09 18:39:57 |
depth | 1 |
children | 0 |
last_payout | 2016-09-09 03:59:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.028 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 4 |
author_reputation | 6,755,527,628,023 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 708,626 |
net_rshares | 47,070,988,926 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ranko-k | 0 | 47,070,988,926 | 100% |
I meant to write some code that did something similar. Hopefully this helps you understand what I've been doing this whole time. YOU ARE THE MAN! http://i247.photobucket.com/albums/gg140/scottcal/ahh-procrastination.jpg
author | scottcal |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160810t041309619z |
category | programming |
json_metadata | {"tags":["programming"],"image":["http://i247.photobucket.com/albums/gg140/scottcal/ahh-procrastination.jpg"]} |
created | 2016-08-10 04:13:09 |
last_update | 2016-08-10 04:13:09 |
depth | 1 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 219 |
author_reputation | 1,147,005,007 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 718,003 |
net_rshares | 0 |
Excellent post @bitcalm. I'll take a look at that code as well. Upvoted. Oh, also take a peek at this, @katecloud! Hopefully this can help you with your awesome artwork!! :)
author | scottvanfossen |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t214624972z |
category | programming |
json_metadata | {"tags":["programming"],"users":["bitcalm","katecloud"]} |
created | 2016-08-09 21:46:24 |
last_update | 2016-08-09 21:47:18 |
depth | 1 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 177 |
author_reputation | 179,894,142,228 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 712,275 |
net_rshares | 290,605,787 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
scottvanfossen | 0 | 290,605,787 | 100% |
I posted a Visual Timezone Aide over here, citing this post for the inspiration. Hope this helps people! https://steemit.com/programming/@scottvanfossen/need-a-visual-aide-in-time-zones-post-when-the-whales-will-see-you
author | scottvanfossen |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t235703914z |
category | programming |
json_metadata | {"tags":["programming"],"links":["https://steemit.com/programming/@scottvanfossen/need-a-visual-aide-in-time-zones-post-when-the-whales-will-see-you"]} |
created | 2016-08-09 23:57:06 |
last_update | 2016-08-09 23:57:06 |
depth | 1 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 219 |
author_reputation | 179,894,142,228 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 714,415 |
net_rshares | 290,605,787 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
scottvanfossen | 0 | 290,605,787 | 100% |
Fascinating article and good work on the program. Thanks for sharing with all of us.
author | seanengman |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160810t013858933z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-10 01:39:03 |
last_update | 2016-08-10 01:39:03 |
depth | 1 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 84 |
author_reputation | 1,081,578,404,830 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 715,865 |
net_rshares | 0 |
LOL! Great :)
author | soulsistashakti |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t181335469z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 18:13:33 |
last_update | 2016-08-09 18:13:33 |
depth | 1 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 14 |
author_reputation | 16,661,384,249,815 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 708,072 |
net_rshares | 0 |
Very interesting even tho I will admit I don't understand the detailsπ
author | spinbunny |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t192858717z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 19:29:03 |
last_update | 2016-08-09 19:29:03 |
depth | 1 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 70 |
author_reputation | 115,763,566,190,375 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 709,559 |
net_rshares | 0 |
This is the Willy Report of Steemit.
author | stephaniemurphy |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t201449025z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 20:14:48 |
last_update | 2016-08-09 20:14:48 |
depth | 1 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 36 |
author_reputation | 985,490 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 710,393 |
net_rshares | 63,071,415 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
turkish | 0 | 63,071,415 | 100% |
Looks like a tombstone have a nice Friday morning https://www.steemimg.com/images/2016/08/09/sxxsc8479.png
author | summonerrk |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t170047134z |
category | programming |
json_metadata | {"tags":["programming"],"image":["https://www.steemimg.com/images/2016/08/09/sxxsc8479.png"]} |
created | 2016-08-09 17:00:48 |
last_update | 2016-08-09 17:00:48 |
depth | 1 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 107 |
author_reputation | 46,064,707,665,216 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 706,717 |
net_rshares | 4,264,720,934 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bitcalm | 0 | 4,264,720,934 | 100% |
This is great. I actually have just finished a step-by-step guide to [extracting and analysing data from the blockchain](https://steemit.com/programming/@sunjata/a-data-scientist-s-guide-to-steem-s-blockchain) that you, and others inspired by your post, might find interesting. I did some basic time-series stuff (rolling mean) on post payouts, which is definitely an analysis that you could use on vote frequency to smooth out the fluctuations.
author | sunjata |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160810t023820695z |
category | programming |
json_metadata | {"tags":["programming"],"links":["https://steemit.com/programming/@sunjata/a-data-scientist-s-guide-to-steem-s-blockchain"]} |
created | 2016-08-10 02:38:21 |
last_update | 2016-08-10 02:38:21 |
depth | 1 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 445 |
author_reputation | 2,215,677,577,306 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 716,760 |
net_rshares | 0 |
Good stuff, I was wondering what best post times would be. Steemians, it's wise to do your best with the knowledge @bitcalm just posted!
author | thebatchman |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t113122571z |
category | programming |
json_metadata | {"tags":["programming"],"users":["bitcalm"]} |
created | 2016-08-09 11:31:33 |
last_update | 2016-08-09 11:31:33 |
depth | 1 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 136 |
author_reputation | 10,499,752,392,175 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 701,521 |
net_rshares | 24,491,275,911 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
thebatchman | 0 | 18,637,517,672 | 100% | ||
leksimus | 0 | 1,378,576,272 | 100% | ||
libyan | 0 | 61,735,525 | 100% | ||
bitcalm | 0 | 4,351,756,055 | 100% | ||
iosif | 0 | 61,690,387 | 100% |
That was a good laugh. lol. There are real people behind whale :)
author | thebluepanda |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t154504486z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 15:44:57 |
last_update | 2016-08-09 15:44:57 |
depth | 1 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 65 |
author_reputation | 37,591,154,470,762 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 705,375 |
net_rshares | 4,264,720,934 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bitcalm | 0 | 4,264,720,934 | 100% |
Good work....I assume their different geographical locations also influence what is reflected as 'post times'
author | themagus |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160810t061545477z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-10 06:15:15 |
last_update | 2016-08-10 06:15:15 |
depth | 1 |
children | 2 |
last_payout | 2016-09-09 03:59: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 | 109 |
author_reputation | 95,451,799,136,793 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 719,551 |
net_rshares | 0 |
The graphs show time in UTC (coordinated universal time) which is not specific to a time zone. I'm assuming that an eight hour period is when they are asleep, so can infer their time zone. If you want to know when you should post when given such a graph, you need to convert a given time in UTC to your local time. There are tools online for this.
author | bitcalm |
---|---|
permlink | re-themagus-re-bitcalm-when-do-whales-upvote-20160810t174508645z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-10 17:45:09 |
last_update | 2016-08-10 17:45:09 |
depth | 2 |
children | 1 |
last_payout | 2016-09-09 03:59: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 | 347 |
author_reputation | 24,919,530,803,138 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 728,985 |
net_rshares | 0 |
Never too old to learn. Thank you my friend.... I shall research.
author | themagus |
---|---|
permlink | re-bitcalm-re-themagus-re-bitcalm-when-do-whales-upvote-20160811t060033423z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-11 06:00:39 |
last_update | 2016-08-11 06:00:39 |
depth | 3 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 65 |
author_reputation | 95,451,799,136,793 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 740,696 |
net_rshares | 0 |
wow! i was thinking about this the other day. unfortunately i dont have the knowledge to this. so thanks a mil for this
author | warrensteem |
---|---|
permlink | re-bitcalm-when-do-whales-upvote-20160809t155235890z |
category | programming |
json_metadata | {"tags":["programming"]} |
created | 2016-08-09 15:51:12 |
last_update | 2016-08-09 15:51:12 |
depth | 1 |
children | 0 |
last_payout | 2016-09-09 03:59: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 | 120 |
author_reputation | 29,924,587,138,042 |
root_title | "When do whales upvote?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 705,487 |
net_rshares | 0 |