保守估计十亿身家大佬送我的造富机我一直没能好好利用起来,辜负了当初大佬***养猪致富,星辰大海***的寄语,对此我一直深表惭愧。  (图源 :[pixabay](https://pixabay.com/vectors/money-rich-man-boss-relaxing-cash-6163908/)) 其实在这台机器上也没少折腾,比如测试了Thinkpad T60上的SATA Ⅰ代硬盘,跑个Windows10,磁盘IO都是满载让我知道了太老旧的硬件可以淘汰了。 又比如通过这台机器遇到的一个内存问题,我才第一次知道且最终搞明白了内存密度(RAM Density)到底是啥以及如何计算了。 也是因为这台机器遇到的内存密度问题,我第一次使用了咸鱼购入二手内存,嗯,感觉还不错,价格便宜,交易体验丝滑。 最后又折腾了给它换上了SSD硬盘(WD Blue),又从朋友那搞来了2条DDR3L 4G(共8G)内存条,又手欠折腾把系统升级至Ubuntu 24.04 LTS。 这样看起来,万事俱备,唯独没有和造富相关的内容呢?所以,我决定必须让造富机开始工作,也许永远无法拉近和大佬的差距,但是不要被大佬落得更远。 有啥造富思路呢?我想了一下,很久以前我就发帖强调过HBD利息以及复利作用,如果我们每天发帖收益中的HBD都能及时存成HBD Saving,无疑会将利益最大化。 但是好多年以来,我都是想起来的时候才存一下,甚至有时候HBD Saving利息发放已经过了30天,我还没去触动利息发放,这损失不能说有多大,但是多少还是有一些的,和造富的梦想相去甚远。 那就先在造富机上搞一个自动的HBD存款脚本吧,不过这之前,先要让造富机能运行HIVE脚本呢。 # Python虚拟环境的创建 一个首先要做的事情就是在造富机上创建Python虚拟运行环境,这样方便我们折腾,不必担心把主环境折腾得乱七八糟。 找了一下自己以前的日记,发现创建虚拟环境我几乎用过各种方法: >* `sudo apt install virtualenv` >* `pip install virtualenv` >* `python -m venv .venv` 比如这个:`sudo apt install virtualenv`  竟然要在我系统里安装这么多软件包,还是放弃吧! 而使用这个:`python -m venv .venv`,提示我要先安装`python3.12-venv`:  那就装一下呗:`sudo apt install python3.12-venv`  装完之后再次执行`python -m venv .venv`,我们要的虚拟环境创建成功。 至于我为什么折腾过好多方法,因为我折腾过Windows、Linux(Ubuntu的各个版本)、树莓派/香蕉派等设备,因为系统环境以及Python版本的差异,有些指令好用,有些不好用呀。 也懒得调查这些指令之间的区别,反正是好用的前提下,哪个对系统修改最少就用哪个。 # Python 虚拟环境的进入与退出 创建好虚拟环境后,就需要考虑如何进入到虚拟环境下的问题。 以我们的虚拟环境为例,进入到虚拟环境的指令如下: >`source .venv/bin/activate` 进入之后,我们可以使用如下指令退出虚拟环境: >`deactivate` 由于我们经常要在虚拟环境下工作,所以建议编辑.bashrc(`vi .bashrc`),并在文件末尾添加(`source .venv/bin/activate`),这样我们只需登录这个账户,就会自动激活Python虚拟运行环境并进入啦:  # 部署Hive Python库 为了便于自己写脚本,我曾自己写了个Python版本的HIVE库,基本上实现了HIVE区块链上的一些基本操作。 所以这个步骤我只需安装自己的Python库就可以啦: >`pip install cutehive-0.0.3-py3-none-any.whl` 因为这个库距离成熟还有十万八千里的距离,所以并未发布,小伙伴们可以用官方或者第三方成熟的Python HIVE库来完成这步。 # 修改HIVE节点监听IP 我在家里一台主力机器上运行一个HIVE节点,方便进行一些操作,不过之前家里并无其它机器运行HIVE相关脚本,所以我设置的hived只监听本机连接。 亦即配置文件中设置: >`webserver-ws-endpoint = 127.0.0.1:8091` >`webserver-http-endpoint = 127.0.0.1:8081` 为了让造富机上的脚本也能使用这个节点,需要将上述配置修改为: >`webserver-ws-endpoint = 127.0.0.1:8091` >`webserver-http-endpoint = 0.0.0.0:8081` 至于为啥`webserver-ws-endpoint`这个IP没修改,因为暂时没打算在造富机上运行命令行钱包之类的,所以用不到喽。 # 测试一下 撰写如下测试测试脚本: ``` #!/usr/bin/env python import os import sys from pprint import pprint rpc_node = "http://192.168.x.xx:8081" def main(argv=None): from cutehive.hived import Hive client = Hive(node=rpc_node) pprint(client.get_info()) if __name__ == '__main__': sys.exit(main()) ``` 运行一下上述脚本,相当于给节点发送如下请求内容: >`{'jsonrpc': '2.0', 'method': 'database_api.get_dynamic_global_properties', 'params': {}, 'id': 1}` 返回结果如下:  成功!万事俱备,接下来我就可以为我的造富脚本而努力啦,敬请期待哦。 你可能会问,既然已经有个主力机在运行HIVE节点,何不直接在主力机上运行相关的HIVE脚本呢?答案是我必须让造富机跑起来呀,沾沾十亿身家大佬的光呢。
author | oflyhigh |
---|---|
permlink | ubuntu-24-04-lts-hive |
category | hive-105017 |
json_metadata | {"tags":["cn","life","blog","hive","script","python","study"],"image":["https://images.hive.blog/DQmXQU2Dkq1wnFqAMiJGBTkj8ocLawr91WfcbNr3J5kwR6p/money-6163908_960_720.webp","https://images.hive.blog/DQmbLQaHE9jtz79kxRG1AcjiARTiC3uzhPCuUxSjsxNHCQi/1729342501808.png","https://images.hive.blog/DQmXGusNcoCfT1hs354ixwGWPTYDM96guuEBJR25FJqGQW4/1729342289713.png","https://images.hive.blog/DQmYpXpV4bAqLMqhEtFCvv1ycxgLsiSZ6q7qLdD3k961ajs/1729342455569.png","https://images.hive.blog/DQmWVYHTjSByQgQHmUYGieWGUJHC4e3FGtSHJWCipmjx6fF/1729343441803.png","https://images.hive.blog/DQmPabyKVA7wftWo1fKL1pmgGZoHXJBG52bT98q6gF5AAjp/1729416196882.png"],"links":["https://pixabay.com/vectors/money-rich-man-boss-relaxing-cash-6163908/"],"app":"hiveblog/0.1","format":"markdown"} |
created | 2024-10-20 09:40:18 |
last_update | 2024-10-20 09:40:18 |
depth | 0 |
children | 8 |
last_payout | 2024-10-27 09:40:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 30.452 HBD |
curator_payout_value | 30.426 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 3,397 |
author_reputation | 6,398,527,579,660,337 |
root_title | "(造富机)在Ubuntu 24.04 LTS上运行Hive相关脚本" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 137,959,234 |
net_rshares | 221,742,658,483,415 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abit | 0 | 25,229,317,945,147 | 100% | ||
adm | 0 | 24,300,988,213,592 | 100% | ||
team | 0 | 194,767,519,882 | 20% | ||
good-karma | 0 | 11,653,165,970 | 1% | ||
deanliu | 0 | 5,664,186,504,105 | 100% | ||
ace108 | 0 | 1,073,340,555,055 | 26% | ||
logic | 0 | 24,022,155,997 | 80% | ||
kaykunoichi | 0 | 1,085,488,544 | 50% | ||
magicmonk | 0 | 9,621,412,245,093 | 100% | ||
laoyao | 0 | 70,847,395,865 | 100% | ||
midnightoil | 0 | 250,428,141,837 | 100% | ||
xiaohui | 0 | 22,024,235,742 | 100% | ||
joele | 0 | 4,504,651,220 | 100% | ||
rivalhw | 0 | 1,849,142,558,074 | 100% | ||
helene | 0 | 1,592,118,321,791 | 100% | ||
ffcrossculture | 0 | 195,768,140,114 | 100% | ||
daveks | 0 | 3,477,178,431,602 | 78% | ||
penguinpablo | 0 | 229,036,551,648 | 14% | ||
cnfund | 0 | 114,009,545,771 | 50% | ||
funnyman | 0 | 1,462,413,314 | 5.6% | ||
steemcleaners | 0 | 2,290,560,004,171 | 80% | ||
btshuang | 0 | 746,785,498 | 50% | ||
redes | 0 | 4,486,699,812,315 | 49% | ||
dapeng | 0 | 96,914,691,020 | 100% | ||
esteemapp | 0 | 2,572,082,600 | 1% | ||
azazqwe | 0 | 553,663,320,034 | 100% | ||
bxt | 0 | 843,394,110,920 | 100% | ||
sudutpandang | 0 | 129,002,103 | 100% | ||
justinashby | 0 | 461,962,856 | 100% | ||
trafalgar | 0 | 52,455,565,627,435 | 100% | ||
raindrop | 0 | 811,809,481,582 | 100% | ||
teachblogger | 0 | 2,117,427,082 | 50% | ||
passion-fruit | 0 | 12,411,191,768 | 92% | ||
htliao | 0 | 3,131,778,768 | 20% | ||
fortune-master | 0 | 12,238,727,047 | 92% | ||
trayan | 0 | 23,167,436,663 | 100% | ||
curly-q | 0 | 2,411,943,925 | 100% | ||
uruiamme | 0 | 5,974,031,057 | 50% | ||
nanosesame | 0 | 7,881,717,097 | 80% | ||
exec | 0 | 2,062,913,942,327 | 100% | ||
eval | 0 | 4,201,994,202,473 | 100% | ||
alphacore | 0 | 7,370,149,960 | 7.12% | ||
techken | 0 | 26,794,197,327 | 30% | ||
joeyarnoldvn | 0 | 561,422,405 | 1.76% | ||
geekgirl | 0 | 4,943,558,541,655 | 100% | ||
susanli3769 | 0 | 1,493,959,021,066 | 100% | ||
mrpointp | 0 | 702,759,474,093 | 100% | ||
travelgirl | 0 | 18,656,334,388 | 100% | ||
mygod | 0 | 743,197,974 | 50% | ||
catwomanteresa | 0 | 525,683,965,618 | 100% | ||
dine77 | 0 | 59,194,392,755 | 70% | ||
wolf-dawg | 0 | 500,964,901 | 100% | ||
oldman28 | 0 | 90,519,913,494 | 48% | ||
liangfengyouren | 0 | 3,438,687,371 | 50% | ||
ahlawat | 0 | 4,120,062,335 | 7% | ||
idx | 0 | 28,666,052,084 | 100% | ||
aafeng | 0 | 992,071,813,854 | 100% | ||
cn-reader | 0 | 17,699,566,567 | 50% | ||
tvb | 0 | 16,815,251,286 | 30% | ||
santigs | 0 | 397,325,188,853 | 51% | ||
floatinglin | 0 | 8,515,199,685 | 100% | ||
spaminator | 0 | 1,400,948,930,428 | 80% | ||
mrspointm | 0 | 886,795,260,583 | 100% | ||
stoodkev | 0 | 19,519,959,637,066 | 70% | ||
kimzwarch | 0 | 15,731,191,199 | 4% | ||
accelerator | 0 | 30,572,989,985 | 60% | ||
artonmysleeve | 0 | 7,411,911,906 | 39% | ||
tomiscurious | 0 | 215,762,065,350 | 37.7% | ||
chenlocus | 0 | 50,717,217,363 | 100% | ||
davidke20 | 0 | 254,115,867,932 | 100% | ||
rosatravels | 0 | 769,477,071,877 | 100% | ||
fatman | 0 | 9,127,978,551 | 2% | ||
votehero | 0 | 218,758,134,573 | 44.9% | ||
minloulou | 0 | 5,983,898,363 | 70% | ||
msp-makeaminnow | 0 | 21,670,936,002 | 24.5% | ||
victory622 | 0 | 177,963,094,452 | 100% | ||
gtpjfoodbank | 0 | 14,725,597,927 | 90% | ||
esteem.app | 0 | 301,820,712 | 1% | ||
investegg | 0 | 21,376,751,518 | 11.5% | ||
namchau | 0 | 6,113,785,694 | 70% | ||
japanguide | 0 | 1,619,483,455 | 100% | ||
jychbetter | 0 | 927,450,152,582 | 100% | ||
devosdevosi | 0 | 2,530,534,705 | 100% | ||
halleyleow | 0 | 6,423,397,905 | 80% | ||
travoved | 0 | 56,201,860,045 | 100% | ||
armentor | 0 | 21,062,231,462 | 100% | ||
traf | 0 | 4,405,884,198,144 | 100% | ||
ioioioioi | 0 | 2,291,808,946 | 100% | ||
itchyfeetdonica | 0 | 966,357,439,688 | 100% | ||
ahmadmangazap | 0 | 1,349,974,762 | 0.5% | ||
wiseagent | 0 | 28,179,096,552 | 15% | ||
cryptonized | 0 | 236,822,399 | 14% | ||
fourfourfun | 0 | 6,500,650,065 | 18.85% | ||
soufianechakrouf | 0 | 2,482,875,455 | 100% | ||
bengy | 0 | 2,054,045,541 | 3% | ||
tryskele | 0 | 5,466,721,534 | 20% | ||
suhunter | 0 | 961,902,227 | 50% | ||
mermaidvampire | 0 | 2,169,129,027 | 100% | ||
seikatsumkt | 0 | 5,324,391,735 | 75% | ||
aakom | 0 | 466,542,434 | 100% | ||
yumisee | 0 | 797,231,672 | 50% | ||
pankajwahane | 0 | 8,707,173,546 | 100% | ||
joeliew | 0 | 5,094,813,534 | 100% | ||
atongis | 0 | 33,656,179,229 | 10% | ||
emmali | 0 | 287,218,406,335 | 100% | ||
vamos-amigo | 0 | 5,050,364,498 | 100% | ||
atma-yoga | 0 | 731,185,398 | 50% | ||
yjcps | 0 | 6,210,686,956 | 100% | ||
rubelynmacion | 0 | 47,162,796,072 | 100% | ||
cst90 | 0 | 468,117,808,898 | 100% | ||
movement19 | 0 | 1,749,048,645 | 6.25% | ||
saulos | 0 | 128,214,061,962 | 100% | ||
lisfabian | 0 | 16,447,587,442 | 100% | ||
ethanlee | 0 | 5,819,352,763 | 100% | ||
fredo77200 | 0 | 3,665,154,696 | 100% | ||
louis88 | 0 | 465,166,353,929 | 20% | ||
pwangdu | 0 | 518,298,326 | 100% | ||
aellly | 0 | 419,689,982,907 | 100% | ||
radard | 0 | 19,503,432,176 | 100% | ||
kgakakillerg | 0 | 20,979,004,702 | 10% | ||
cedricguillas | 0 | 183,018,202,674 | 70% | ||
el-dee-are-es | 0 | 4,351,041,974 | 10% | ||
intelli-jan-tam | 0 | 2,611,825,284 | 100% | ||
solominer | 0 | 3,354,257,772,543 | 25% | ||
hmayak | 0 | 23,959,619,523 | 100% | ||
rahmat1 | 0 | 466,292 | 100% | ||
archisteem | 0 | 1,277,669,837 | 7.5% | ||
philiprenelee | 0 | 7,243,319,177 | 80% | ||
theluvbug | 0 | 7,459,924,596 | 100% | ||
dses | 0 | 57,623,482,604 | 80% | ||
digital.mine | 0 | 105,062,944,825 | 100% | ||
ambiguity | 0 | 47,300,158,112 | 100% | ||
yestermorrow | 0 | 12,217,901,157 | 31% | ||
pvinny69 | 0 | 71,816,104,717 | 100% | ||
surachai | 0 | 26,376,797,651 | 100% | ||
julian2013 | 0 | 87,889,043,706 | 100% | ||
cubapl | 0 | 3,789,669,121 | 30% | ||
cryptoyzzy | 0 | 106,682,101,650 | 28% | ||
voxmortis | 0 | 37,694,029,079 | 20% | ||
a-bot | 0 | 14,563,967,028 | 30% | ||
voter002 | 0 | 21,966,255,139 | 54.2% | ||
voter000 | 0 | 21,537,771,459 | 45.7% | ||
pet.society | 0 | 14,837,615,079 | 6% | ||
teerawith | 0 | 5,211,571,398 | 100% | ||
minminlou | 0 | 584,602,198 | 56% | ||
annepink | 0 | 701,079,874,816 | 100% | ||
jamzmie | 0 | 550,945,438 | 15% | ||
bichen | 0 | 2,123,737,618 | 100% | ||
sasaadrian | 0 | 15,794,135,593 | 20% | ||
starrouge | 0 | 1,048,492,524 | 50% | ||
zerofive | 0 | 872,902,987 | 50% | ||
muntaharaceh | 0 | 1,901,202,302 | 40% | ||
jacuzzi | 0 | 820,249,043 | 1.4% | ||
lestrange | 0 | 11,236,217,181 | 100% | ||
steemegg | 0 | 21,691,603,514 | 50% | ||
faithpersists | 0 | 1,397,244,231 | 72% | ||
cnstm | 0 | 127,048,227,013 | 100% | ||
likuang007 | 0 | 665,860,519 | 100% | ||
crowdwitness | 0 | 79,064,533,035 | 75% | ||
fusion.lover | 0 | 36,526,272,946 | 100% | ||
lianjingmedia | 0 | 998,868,828 | 100% | ||
goodcontentbot | 0 | 810,066,046 | 15% | ||
a-secondchance | 0 | 19,578,878,612 | 100% | ||
mia-cc | 0 | 13,926,925,393 | 100% | ||
hungrybear | 0 | 621,107,952 | 14% | ||
fintian | 0 | 549,097,728 | 100% | ||
goodcontentbot1 | 0 | 1,284,976,680 | 90% | ||
hungryharish | 0 | 25,498,591,858 | 100% | ||
kggymlife | 0 | 3,880,414,582 | 20% | ||
lovelemon | 0 | 745,318,451,624 | 100% | ||
hungryanu | 0 | 3,375,898,411 | 50% | ||
photographercr | 0 | 528,191,502 | 20% | ||
rj-photo | 0 | 1,586,389,844 | 100% | ||
bigmoneyman | 0 | 528,266,134 | 30% | ||
minigame | 0 | 309,653,520,360 | 100% | ||
dailyke20 | 0 | 2,724,639,975 | 100% | ||
omnivori | 0 | 2,265,709,558 | 90% | ||
borjan | 0 | 598,607,185,289 | 25% | ||
agmoore2 | 0 | 16,378,783,464 | 100% | ||
ying82 | 0 | 268,044,052,071 | 100% | ||
steemindian | 0 | 4,273,970,294 | 100% | ||
cxy | 0 | 1,922,691,206 | 50% | ||
jimhawkins | 0 | 521,131,946 | 64% | ||
kgswallet | 0 | 1,092,291,553 | 20% | ||
farm1 | 0 | 925,474,732,289 | 100% | ||
hyborian-strain | 0 | 2,425,096,328 | 30% | ||
atyh | 0 | 442,476,540,216 | 100% | ||
janaveda | 0 | 20,131,372,188 | 100% | ||
korver | 0 | 574,579,097 | 30% | ||
moleah | 0 | 666,034,382 | 100% | ||
gigel2 | 0 | 1,135,870,400,149 | 100% | ||
vickyli | 0 | 182,923,894,537 | 100% | ||
icon123456 | 0 | 21,576,017,774 | 100% | ||
natural.alfa | 0 | 1,021,265,466 | 100% | ||
marygong77777 | 0 | 297,812,134,229 | 100% | ||
therealyme | 0 | 548,598,290,573 | 100% | ||
dbfoodbank | 0 | 4,492,193,198 | 76% | ||
quiltedduckfarm | 0 | 503,045,408 | 100% | ||
lnakuma | 0 | 57,685,352,654 | 100% | ||
weddinggift | 0 | 1,599,615,305 | 100% | ||
stoodmonsters | 0 | 32,634,781,365 | 70% | ||
bpcvoter | 0 | 914,849,101 | 100% | ||
warmstill | 0 | 851,471,842 | 50% | ||
julesquirin | 0 | 9,947,009,291 | 50% | ||
curamax | 0 | 1,417,649,847,990 | 100% | ||
lovequeen | 0 | 421,785,981,638 | 100% | ||
hivewatchers | 0 | 1,981,318,612 | 55% | ||
softworld | 0 | 314,582,817,644 | 48% | ||
ecency | 0 | 401,706,177,516 | 1% | ||
woelfchen | 0 | 387,994,189,576 | 100% | ||
jywahaha | 0 | 2,248,692,991 | 100% | ||
roberto58 | 0 | 9,675,194,850 | 100% | ||
olaunlimited | 0 | 593,753,410 | 45% | ||
ecency.stats | 0 | 339,488,158 | 1% | ||
recoveryinc | 0 | 8,025,742,250 | 12.5% | ||
hive-108278 | 0 | 887,365,706 | 50% | ||
evahe | 0 | 454,381,956,296 | 100% | ||
dying | 0 | 885,425,768 | 25% | ||
blogstats | 0 | 893,380,540 | 100% | ||
philipmak | 0 | 1,394,048,709 | 50% | ||
kattycrochet | 0 | 81,405,621,185 | 50% | ||
bulkathos | 0 | 58,630,758,500 | 100% | ||
cocaaladioxine | 0 | 5,813,541,747 | 92% | ||
samrisso | 0 | 8,722,301,031 | 12.5% | ||
eturnerx-dbuzz | 0 | 21,414,650,517 | 61.6% | ||
tomtothetom | 0 | 3,313,034,385 | 25% | ||
drricksanchez | 0 | 282,968,623,834 | 50% | ||
reidenling90 | 0 | 5,554,256,155 | 100% | ||
hive.friends | 0 | 858,858,260 | 50% | ||
tingjie | 0 | 250,379,428,719 | 100% | ||
irenicus30 | 0 | 825,908,531,949 | 100% | ||
mao317 | 0 | 19,815,226,777 | 100% | ||
alpha-omega | 0 | 178,347,550,405 | 100% | ||
aequi | 0 | 45,234,142,558 | 70% | ||
victoradebiyiart | 0 | 11,052,425,852 | 100% | ||
mimi.ruby | 0 | 147,001,797,591 | 70% | ||
eolianpariah2 | 0 | 1,387,339,772 | 0.5% | ||
dsky | 0 | 19,811,404,839,882 | 100% | ||
maroone | 0 | 8,996,487,484 | 100% | ||
diochen | 0 | 79,413,385,126 | 100% | ||
ssebasv | 0 | 2,451,569,323 | 100% | ||
promokahka | 0 | 15,649,199,641 | 100% | ||
hoffmeister84 | 0 | 10,404,920,265 | 70% | ||
wellingt556 | 0 | 160,608,615,131 | 100% | ||
sagarkothari88 | 0 | 14,188,511,523 | 0.5% | ||
theindiankid | 0 | 10,535,743,651 | 100% | ||
henrietta27 | 0 | 7,336,839,328 | 25% | ||
bungongjaro | 0 | 1,267,560,440 | 90% | ||
pero82 | 0 | 3,112,390,295 | 40% | ||
love5200 | 0 | 37,363,507,316 | 100% | ||
xiaoyaodidi | 0 | 371,471,006,856 | 100% | ||
caelum1infernum | 0 | 4,940,585,233 | 10% | ||
franzpaulie | 0 | 44,881,804,676 | 100% | ||
kathyto | 0 | 107,193,673,931 | 100% | ||
eric.gundam | 0 | 1,600,049,757 | 64% | ||
coldbeetrootsoup | 0 | 895,499,940,080 | 100% | ||
tzae | 0 | 730,339,478 | 100% | ||
njn | 0 | 28,664,840,653 | 100% | ||
lyamalfonzo23 | 0 | 1,559,522,595 | 100% | ||
bgmoha | 0 | 3,963,336,730 | 55% | ||
queercoin | 0 | 96,717,698,082 | 50% | ||
hive-132595 | 0 | 1,553,096,499 | 100% | ||
artefactoestudio | 0 | 2,616,602,631 | 100% | ||
ibbtammy | 0 | 154,565,486,990 | 100% | ||
dovycola | 0 | 3,333,193,802 | 100% | ||
gunting | 0 | 44,676,423,528 | 100% | ||
thetoymaster | 0 | 0 | 100% | ||
nana-hive | 0 | 12,471,007,839 | 100% | ||
lifeisajourney | 0 | 787,178,620 | 72% | ||
like2cbrs | 0 | 556,276,350 | 100% | ||
eddyss | 0 | 54,195,700,824 | 100% | ||
monzo | 0 | 3,880,827,468 | 35% | ||
cbrsphilanthropy | 0 | 63,092,195,103 | 100% | ||
blackalas | 0 | 1,003,831,419 | 35% | ||
dbfbfutures | 0 | 16,963,234,638 | 100% | ||
ifhy | 0 | 857,054,201 | 17.5% | ||
justinmora | 0 | 65,361,416,566 | 100% | ||
setpiece | 0 | 754,086,874 | 100% | ||
fee-service-new | 0 | 5,484,045,986 | 100% | ||
daryh | 0 | 93,683,650,920 | 100% | ||
picazzy005 | 0 | 781,174,001 | 35% | ||
porqpin | 0 | 1,439,357,941 | 70% | ||
kc6729 | 0 | 6,879,350,089 | 100% | ||
mama21 | 0 | 21,596,140,269 | 100% | ||
hussain898 | 0 | 0 | 100% |
!HOPE !LOL !INDEED
author | cryptoyzzy |
---|---|
permlink | re-oflyhigh-sloxow |
category | hive-105017 |
json_metadata | {"tags":["hive-105017"],"app":"peakd/2024.9.20","image":[],"users":[]} |
created | 2024-10-21 05:24:33 |
last_update | 2024-10-21 05:24:33 |
depth | 1 |
children | 1 |
last_payout | 2024-10-28 05:24:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 18 |
author_reputation | 432,376,834,130,769 |
root_title | "(造富机)在Ubuntu 24.04 LTS上运行Hive相关脚本" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 137,973,357 |
net_rshares | 0 |
<div class='pull-right'><center><img src="https://lolztoken.com/lolz.png"><br><a href="https://lolztoken.com">lolztoken.com</a></p><br><br><br><br></center></div><p><center><strong>Did you hear about the alarm clock convention?<br>Total snooze fest.</strong><br><sub>Credit: <a href="https://peakd.com/@reddit">reddit</a></sub><br>@oflyhigh, I sent you an <a href="https://lolztoken.com">$LOLZ</a> on behalf of cryptoyzzy<br><br>(9/10)<br>NEW: <a href='https://peakd.com/@lolz.burner/posts'>Join LOLZ's Daily Earn and Burn Contest and win $LOLZ</a></center></p>
author | lolzbot |
---|---|
permlink | re-re-oflyhigh-sloxow-20241021t053047z |
category | hive-105017 |
json_metadata | "{"app": "beem/0.24.19"}" |
created | 2024-10-21 05:30:54 |
last_update | 2024-10-21 05:30:54 |
depth | 2 |
children | 0 |
last_payout | 2024-10-28 05:30:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 562 |
author_reputation | 196,300,462,593,765 |
root_title | "(造富机)在Ubuntu 24.04 LTS上运行Hive相关脚本" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 137,973,424 |
net_rshares | 0 |
<center><p><sub>(3/5)</sub><br>@oflyhigh! <b>@cryptoyzzy Wants to spread Hope!</b> so I just sent 1 <b>HOP</b> to your account on behalf of @cryptoyzzy. </p><p>Since we think the world can use more Hope, you can now already start spreading Hope yourself! <p><img src="https://images.ecency.com/DQmWgjquLMiUmRCMvttUVeLUJVQuUmJT2vEiXWuvBHtVEgZ/hope_s.png" style="width: 75px; height: 75px;" alt="Hope Logo"></p></center>
author | hopelizer |
---|---|
permlink | re-oflyhigh-20241021t052505 |
category | hive-105017 |
json_metadata | "" |
created | 2024-10-21 05:25:03 |
last_update | 2024-10-21 05:25:03 |
depth | 1 |
children | 0 |
last_payout | 2024-10-28 05:25:03 |
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 | 418 |
author_reputation | -1,139,624,065,804 |
root_title | "(造富机)在Ubuntu 24.04 LTS上运行Hive相关脚本" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 137,973,363 |
net_rshares | 0 |
<center><p><sub>(10/10)</sub><br>@oflyhigh! <b>@cryptoyzzy Totally agrees with your content!</b> so I just sent 1 <b>IDD</b> to your account on behalf of @cryptoyzzy. </p> <p><img src="https://images.ecency.com/DQmWb3w1G2BqK4FQdm7VzMnr7iwc2ESzQd4Nnb21Sbp8rK8/idd_s.png" style="width: 75px; height: 75px;" alt="Indeed Logo"> </p></center>
author | indeedly |
---|---|
permlink | re-oflyhigh-20241021t052615 |
category | hive-105017 |
json_metadata | "" |
created | 2024-10-21 05:26:15 |
last_update | 2024-10-21 05:26:15 |
depth | 1 |
children | 0 |
last_payout | 2024-10-28 05:26:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 338 |
author_reputation | -809,142,277,994 |
root_title | "(造富机)在Ubuntu 24.04 LTS上运行Hive相关脚本" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 137,973,375 |
net_rshares | 0 |
感谢O哥分享,十亿身家大佬的致富经验分享,还是得认真看看。。
author | love5200 |
---|---|
permlink | re-oflyhigh-20241021t35149942z |
category | hive-105017 |
json_metadata | {"tags":["cn","life","blog","hive","script","python","study"],"app":"ecency/4.0.1-vision","format":"markdown+html"} |
created | 2024-10-20 19:51:48 |
last_update | 2024-10-20 19:51:48 |
depth | 1 |
children | 2 |
last_payout | 2024-10-27 19:51:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 30 |
author_reputation | 545,212,257,372,358 |
root_title | "(造富机)在Ubuntu 24.04 LTS上运行Hive相关脚本" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 137,967,236 |
net_rshares | 0 |
争取我们将来都成为亿万富豪
author | oflyhigh |
---|---|
permlink | slossr |
category | hive-105017 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2024-10-21 03:38:51 |
last_update | 2024-10-21 03:38:51 |
depth | 2 |
children | 1 |
last_payout | 2024-10-28 03:38:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 13 |
author_reputation | 6,398,527,579,660,337 |
root_title | "(造富机)在Ubuntu 24.04 LTS上运行Hive相关脚本" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 137,972,251 |
net_rshares | 0 |
🤣好的,为成为亿万富豪,干杯!哈哈ヽ( ̄▽ ̄)وو
author | love5200 |
---|---|
permlink | re-oflyhigh-20241021t171112264z |
category | hive-105017 |
json_metadata | {"tags":["ecency"],"app":"ecency/4.0.1-vision","format":"markdown+html"} |
created | 2024-10-21 09:11:12 |
last_update | 2024-10-21 09:11:12 |
depth | 3 |
children | 0 |
last_payout | 2024-10-28 09:11:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 25 |
author_reputation | 545,212,257,372,358 |
root_title | "(造富机)在Ubuntu 24.04 LTS上运行Hive相关脚本" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 137,975,471 |
net_rshares | 0 |
补充相关链接 >* [Creating Virtual Environments](https://packaging.python.org/en/latest/tutorials/installing-packages/#creating-virtual-environments) >* [Create and Use Virtual Environments](https://packaging.python.org/en/latest/guides/installing-using-pip-and-virtual-environments/#create-and-use-virtual-environments)
author | oflyhigh |
---|---|
permlink | slnkip |
category | hive-105017 |
json_metadata | {"links":["https://packaging.python.org/en/latest/tutorials/installing-packages/#creating-virtual-environments"],"app":"hiveblog/0.1"} |
created | 2024-10-20 11:42:24 |
last_update | 2024-10-20 11:42:24 |
depth | 1 |
children | 0 |
last_payout | 2024-10-27 11:42:24 |
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 | 314 |
author_reputation | 6,398,527,579,660,337 |
root_title | "(造富机)在Ubuntu 24.04 LTS上运行Hive相关脚本" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 137,960,498 |
net_rshares | 0 |