create account

Diving into Python: You can teach an old dog new tricks! by bozz

View this thread on: hive.blogpeakd.comecency.com
· @bozz ·
$36.45
Diving into Python: You can teach an old dog new tricks!
<center>![IMG_20220215_072505.jpg](https://files.peakd.com/file/peakd-hive/bozz/23x15Ee5inCGBzq1u9ec2vQ3iuyMMkeT8per22nrRL345LjX32KM91HzdLgGQzSkgY8na.jpg)</center>

---------------

Many moons ago I was a university student majoring in Computer Information Systems.  Back then, things weren't as segmented as they are today.  You either majored in Computer Science which was mostly programming, or Computer Information Systems which was basically everything else.

These days, students have many more options, you can specialize in cyber security, networking, servers, you name it, there is probably a course track for it. 

Although I didn't go into Computer Science, I still had to do a bit of programming to satisfy the courses for my Bachelor's Degree. We mostly worked with C++ on a Unix terminal with tools like PICO, VI, and PINE (for email).  We also dabbled a bit in SQL, COBOL, Visual BASIC, and Assembly.  I was never the best at it, but I passed my classes and then I kind of put it on the shelf and forgot about it.

Sure, I did stuff with HTML over the years, but who didn't hard code their first webpage in a notepad file right?

<center>![image.png](https://files.peakd.com/file/peakd-hive/bozz/23swa4RobMVmTcm11ioBajkZNoAJzBKHCMsBgd1asugxWNk9ty8qs9NDMXJN6TAufuCet.png)</center>

------------------

When @slobberchops and @steevc started poking around with Hive using Python and Beem, it piqued my interest, but not enough for me to actually take any action and start learning Python.  At least not right away.  Clearly I eventually did, otherwise I wouldn't be writing this post. 

My first issue was deciding where to install it.  I tried installing some of the Windows versions of Python, but I couldn't get Beem to install properly. It had a bunch of dependencies or something that weren't very straightforward to resolve in Windows.

Instead, I decided to spin up a virtual machine on one of my servers here at work.  I installed Ubuntu Desktop 22 and I was able to get Python and Beem installed relatively easily.

You see, a while ago I had an account mute me on Hive.  I was a bit taken aback by that, so it got me thinking I wonder how many other people have me on mute.  As I explained [in my post last week](https://peakd.com/hive-193212/@bozz/friday-the-13th-comes-a-day-early), it's possible there is already an easy way to do this, but I thought it might be a good opening for me to try learning Python.

With Python and Beem installed, I started working on making my program.  Oh yeah, I should also point out, I got tired of the copy and paste restrictions between my desktop and my VM Host, so I ended up enabling SSH on my Ubuntu machine and I basically just do everything via the command line.

That means I am using Nano to write up my files.  It's basically just a newer version of Pico.  Not as powerful as VI, but in my opinion much more user friendly.

I ran into some snags with syntax that had me thinking something was wrong with my install, but luckily the legendary Marky helped me out with that in the Bro Discord.

<center>![image.png](https://files.peakd.com/file/peakd-hive/bozz/23u6YQd1RSC9GGfXTvTda1XuRv3JvzcUBCRcbfPVaa9MGsYevKbY5V9YAqHoeaAdB8MG3.png)</center>

-----------------

I started with a simple "Hello World" program, then a greater than/less than program that @slobberchops had to help me a bit with.  I was defining my variables incorrectly and it was leading to some crazy results.

From there I started working in Beem.  I did a simple program that showed what version of Hive I was running.  Then I wrote some code that showed what my HBD balance was.  I thought it might be cool to be able to pick who you wanted to see account information for without editing the code, so I added a prompt where you can enter a username and it provides the appropriate output.

At that point, I figured I was ready, so I started working with the account.get muters function in the Beem library.

It worked for the account I had entered, but I wanted to find that info for any account.  So I added the code to be able to prompt for user input.

Eventually, I had a program I was proud of and you can find it on my [Github page here](https://github.com/bozzj/Hive).

It's really quite simple, but I am proud of it for my first real go at programming in 25+ years.  You have to start somewhere right?

Let's have a look:

*from beem.account import Account
from beem import Hive
from beem.nodelist import NodeList*

- This is basically just pulling in the pieces we are going to be working with.

*nodelist = NodeList()
nodelist.update_nodes()
hive = Hive()*

- Then we set up some easier to type variables to make the rest of the code easier.

*print()
print ('Please input a Hive username:')
acc = str(input())
account = Account(acc, blockchain_instance=hive)
print()*

- This is the part that prompts for a user name.  We ask for the input, then we accept that input as the acc variable.  Finally, we tie that user input to an actual account on the Hive blockchain.


*print("accounts muting", acc, ":")
print('\n'.join(map(str,account.get_muters(raw_name_list=True, limit=100))))
print()*

- The rest is pretty easy, we have the system print a line of text saying "Accounts Muting Bozz" or whatever input you enter at the beginning.  Then, a quick line of text to output the accounts that are muting the input account.

It was originally outputting the accounts as a list separated by commas.  I decided I wanted it to list each account on a separate line in a vertical format, so I added the \n .join command to make it more visually pleasing.

I've recently discovered that Beem has kind of been defunct for a while and though it still works, it doesn't get updated.  There is another library called LightHive that does a lot of the same things.  I tried it out and what took me about 15 lines of code to do, I was able to accomplish in 5 with LightHive.  I think it is still a work in progress, but so far it seems pretty cool.

So there you go, my first dive into Python programming.  It's pretty cool so far and when I have more time I hope to dig into it a bit more.  @slobberchops [just made this great post yesterday](https://peakd.com/hive-129924/@slobberchops/python-libraries-easy-splinterlands-card-monitoring) about how he is using Python with Splinterlands.

Awesome stuff!

----------

<center>
### [Sports Talk Social - @bozz.sports](https://www.sportstalksocial.com/@bozz.sports)
</center>

----------

<center>![TEAMUSAhive_footer_bozz.jpg](https://files.peakd.com/file/peakd-hive/bozz/fXpCTKUZ-TEAMUSA-hive_footer_bozz.jpg)</center>

----------

<center>*All pictures/screenshots taken by myself or @mrsbozz unless otherwise sourced*</center>





👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 784 others
properties (23)
authorbozz
permlinkdiving-into-python-you-can-teach-an-old-dog-new-tricks
categoryhive-129924
json_metadata"{"app":"peakd/2023.10.1","format":"markdown","description":"Writing a simple program to see who mutes you","tags":["python","stemgeeks","inleo","discovery-it","ocd","gems","archon","pimp","tribes","silverbloggers"],"users":["slobberchops","steevc","bozz","bozz.sports","mrsbozz"],"image":["https://files.peakd.com/file/peakd-hive/bozz/23x15Ee5inCGBzq1u9ec2vQ3iuyMMkeT8per22nrRL345LjX32KM91HzdLgGQzSkgY8na.jpg","https://files.peakd.com/file/peakd-hive/bozz/23swa4RobMVmTcm11ioBajkZNoAJzBKHCMsBgd1asugxWNk9ty8qs9NDMXJN6TAufuCet.png","https://files.peakd.com/file/peakd-hive/bozz/23u6YQd1RSC9GGfXTvTda1XuRv3JvzcUBCRcbfPVaa9MGsYevKbY5V9YAqHoeaAdB8MG3.png","https://files.peakd.com/file/peakd-hive/bozz/fXpCTKUZ-TEAMUSA-hive_footer_bozz.jpg"]}"
created2023-10-19 10:50:18
last_update2023-10-19 10:50:18
depth0
children43
last_payout2023-10-26 10:50:18
cashout_time1969-12-31 23:59:59
total_payout_value18.296 HBD
curator_payout_value18.153 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6,719
author_reputation2,268,006,318,455,575
root_title"Diving into Python: You can teach an old dog new tricks!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id128,123,613
net_rshares80,567,647,149,477
author_curate_reward""
vote details (848)
@balikis95 ·
$0.03
Code words can be so exciting, though I am not fully learned in that aspect. I'd admit that the little code I know is because of Hive, which I find beautiful. 

I don't really understand much of what you've said about how you use codes, but I find them thrilling. It is like seeing a spy movie. Lol.

Thanks for yesterday. I truly appreciate you.

👍  , ,
properties (23)
authorbalikis95
permlinkre-bozz-20231019t12343104z
categoryhive-129924
json_metadata{"tags":["python","stemgeeks","inleo","discovery-it","ocd","gems","archon","pimp","tribes","silverbloggers"],"app":"ecency/3.0.36-vision","format":"markdown+html"}
created2023-10-19 11:03:42
last_update2023-10-19 11:03:42
depth1
children2
last_payout2023-10-26 11:03:42
cashout_time1969-12-31 23:59:59
total_payout_value0.012 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length348
author_reputation190,811,007,699,670
root_title"Diving into Python: You can teach an old dog new tricks!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id128,123,836
net_rshares58,872,728,209
author_curate_reward""
vote details (3)
@bozz ·
It's definitely not for everyone.  I'm still learning myself.  Thanks for stopping by.
👍  ,
properties (23)
authorbozz
permlinkre-balikis95-s2rwxa
categoryhive-129924
json_metadata{"tags":["hive-129924"],"app":"peakd/2023.10.1"}
created2023-10-19 11:22:21
last_update2023-10-19 11:22:21
depth2
children1
last_payout2023-10-26 11:22:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length86
author_reputation2,268,006,318,455,575
root_title"Diving into Python: You can teach an old dog new tricks!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id128,124,121
net_rshares105,723,932
author_curate_reward""
vote details (2)
@balikis95 ·
That's very right. You are welcome 😊.
👍  , ,
properties (23)
authorbalikis95
permlinkre-bozz-s2rx40
categoryhive-129924
json_metadata{"tags":["hive-129924"],"app":"peakd/2023.10.1"}
created2023-10-19 11:26:27
last_update2023-10-19 11:26:27
depth3
children0
last_payout2023-10-26 11:26:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length37
author_reputation190,811,007,699,670
root_title"Diving into Python: You can teach an old dog new tricks!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id128,124,194
net_rshares29,491,734,641
author_curate_reward""
vote details (3)
@dbooster · (edited)
$0.02
Hmm at my university (Ball State), Computer Science was very little programing and was mostly theory. We did have to learn enough assembly and machine language to be able to write a complete C++ complier our final project. Hmm... that was actually learning machine language mainly... had to first change the machine language to assembler, then change that to C++. Man, that took me forever to do. I still have it on a Zip disk somewhere (but I no longer have any Zip drives). But anyway it was on us to learn all the code—classes didn't help out in the details. Mostly theory and math. Ugh...all the math. Sounds like you actually got more exposure to programming languages than I did. Nice!

Looks like you have a great setup at work! Wow!! Meanwhile I am working on a tiny little 13" laptop. I'd love to get me four screens!

Edit: No, I'm thinking backwards, aren't I? Sorry, it's late here and my mind isn't working. We changed the code to assembler and then to machine language. I had pages and pages and pages of printouts for all the machine language instructions. 
👍  ,
properties (23)
authordbooster
permlinkre-bozz-s2s2tm
categoryhive-129924
json_metadata{"tags":"hive-129924"}
created2023-10-19 13:29:45
last_update2023-10-19 13:32:06
depth1
children4
last_payout2023-10-26 13:29:45
cashout_time1969-12-31 23:59:59
total_payout_value0.010 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,072
author_reputation1,026,990,781,250,820
root_title"Diving into Python: You can teach an old dog new tricks!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id128,126,483
net_rshares46,186,135,986
author_curate_reward""
vote details (2)
@bozz ·
I hated Assembly.  It was one of the few college courses I got a C in.  I did not enjoy it at all.  The only thing I was good at was hash tables in C++.  Those came pretty naturally to me.   
👍  ,
properties (23)
authorbozz
permlinkre-dbooster-s2svlm
categoryhive-129924
json_metadata{"tags":["hive-129924"],"app":"peakd/2023.10.1"}
created2023-10-19 23:51:21
last_update2023-10-19 23:51:21
depth2
children3
last_payout2023-10-26 23:51:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length191
author_reputation2,268,006,318,455,575
root_title"Diving into Python: You can teach an old dog new tricks!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id128,139,774
net_rshares22,766,519,430
author_curate_reward""
vote details (2)
@dbooster ·
I think I didn't mind so much because my first programming language when I was about 7 was BASIC on my Commodore 64 (and the tandy's at school. I think we have one Apple ][ as well). So BASIC trained me to be ok with that same kind of format that Assembly used...  That said, high level languages like C++ were so much nicer!<div><a href="https://engage.hivechain.app">![](https://i.imgur.com/XsrNmcl.png)</a></div>
👍  ,
properties (23)
authordbooster
permlinkre-1697803513463
categoryhive-129924
json_metadata{"app":"engage"}
created2023-10-20 12:05:12
last_update2023-10-20 12:05:12
depth3
children2
last_payout2023-10-27 12:05:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length415
author_reputation1,026,990,781,250,820
root_title"Diving into Python: You can teach an old dog new tricks!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id128,153,013
net_rshares43,708,678,268
author_curate_reward""
vote details (2)
@ecency ·
**Yay!** 🤗<br>Your content has been **boosted with Ecency Points**, by @whywhy. <br>Use Ecency daily to boost your growth on platform! <br><br><b>Support Ecency</b><br>[Vote for new Proposal](https://hivesigner.com/sign/update-proposal-votes?proposal_ids=%5B245%5D&approve=true)<br>[Delegate HP and earn more](https://ecency.com/hive-125125/@ecency/daily-100-curation-rewards)
👍  
properties (23)
authorecency
permlinkre-20231020t9492506z
categoryhive-129924
json_metadata{"tags":["ecency"],"app":"ecency/3.0.20-welcome","format":"markdown+html"}
created2023-10-20 09:49:03
last_update2023-10-20 09:49:03
depth1
children0
last_payout2023-10-27 09:49:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length376
author_reputation624,380,808,410,128
root_title"Diving into Python: You can teach an old dog new tricks!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id128,150,605
net_rshares43,352,117,311
author_curate_reward""
vote details (1)
@emrebeyler ·
$0.07
Looks good and have fun!

I'm interested with your feedback for both Beem and Lighthive.
👍  ,
properties (23)
authoremrebeyler
permlinks2uhna
categoryhive-129924
json_metadata{"app":"hiveblog/0.1"}
created2023-10-20 20:45:09
last_update2023-10-20 20:45:09
depth1
children1
last_payout2023-10-27 20:45:09
cashout_time1969-12-31 23:59:59
total_payout_value0.034 HBD
curator_payout_value0.035 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length88
author_reputation448,535,049,068,622
root_title"Diving into Python: You can teach an old dog new tricks!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id128,163,296
net_rshares155,154,267,469
author_curate_reward""
vote details (2)
@bozz ·
I'll have to dig into them more. I already feel like lighthive has been built out a bit more simply for the fact that I can do the same thing in fewer lines of code.
👍  
properties (23)
authorbozz
permlinkre-emrebeyler-20231020t21731764z
categoryhive-129924
json_metadata{"type":"comment","tags":["ecency"],"app":"ecency/3.0.44-mobile","format":"markdown+html"}
created2023-10-21 01:07:33
last_update2023-10-21 01:07:33
depth2
children0
last_payout2023-10-28 01:07:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length165
author_reputation2,268,006,318,455,575
root_title"Diving into Python: You can teach an old dog new tricks!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id128,168,702
net_rshares0
author_curate_reward""
vote details (1)
@joanstewart ·
$0.02
Years ago did A+ through American Based training course over here, yup DOS, later some SQL to tweak a few changes within a software used in corporate world, onto some web builds, now not touched in some time with too many interruptions breaking thought.  

Great to see you tackling once again it takes patience, well worthwhile to have one or two basics to help you through, well done! 
👍  , , ,
properties (23)
authorjoanstewart
permlinkre-bozz-20231019t14535139z
categoryhive-129924
json_metadata{"tags":["python","stemgeeks","inleo","discovery-it","ocd","gems","archon","pimp","tribes","silverbloggers"],"app":"ecency/3.0.36-vision","format":"markdown+html"}
created2023-10-19 12:05:36
last_update2023-10-19 12:05:36
depth1
children4
last_payout2023-10-26 12:05:36
cashout_time1969-12-31 23:59:59
total_payout_value0.012 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length387
author_reputation395,424,806,444,003
root_title"Diving into Python: You can teach an old dog new tricks!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id128,124,818
net_rshares57,577,943,115
author_curate_reward""
vote details (4)
@bozz ·
I studied for my A+, but I never got around to taking it.  I kind of wish I had sometimes. 
👍  
properties (23)
authorbozz
permlinkre-joanstewart-s2sw2r
categoryhive-129924
json_metadata{"tags":["hive-129924"],"app":"peakd/2023.10.1"}
created2023-10-20 00:01:39
last_update2023-10-20 00:01:39
depth2
children3
last_payout2023-10-27 00:01:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length91
author_reputation2,268,006,318,455,575
root_title"Diving into Python: You can teach an old dog new tricks!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id128,140,357
net_rshares0
author_curate_reward""
vote details (1)
@joanstewart ·
$0.03
I did it for the Y2K change. Purchasing new systems in offices required knowledge, able to substantiate cost involved from change over, know more than simply the workings most see, always need to delve a little deeper. My curiosity I suppose.
👍  ,
properties (23)
authorjoanstewart
permlinkre-bozz-s2tios
categoryhive-129924
json_metadata{"tags":["hive-129924"],"app":"peakd/2023.10.1"}
created2023-10-20 08:10:03
last_update2023-10-20 08:10:03
depth3
children2
last_payout2023-10-27 08:10:03
cashout_time1969-12-31 23:59:59
total_payout_value0.012 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length242
author_reputation395,424,806,444,003
root_title"Diving into Python: You can teach an old dog new tricks!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id128,149,029
net_rshares57,758,787,117
author_curate_reward""
vote details (2)
@mdasein · (edited)
$0.02
Python really intrigues me. Planning to study this one of this days.  !PGM
👍  , ,
properties (23)
authormdasein
permlinkre-bozz-20231019t204616972z
categoryhive-129924
json_metadata{"tags":["hive-129924","python","stemgeeks","inleo","discovery-it","ocd","gems","archon","pimp","tribes","silverbloggers"],"app":"ecency/3.0.42-mobile","format":"markdown+html"}
created2023-10-19 12:46:18
last_update2023-10-19 12:46:33
depth1
children1
last_payout2023-10-26 12:46:18
cashout_time1969-12-31 23:59:59
total_payout_value0.010 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length74
author_reputation14,966,838,221,313
root_title"Diving into Python: You can teach an old dog new tricks!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id128,125,492
net_rshares46,132,235,200
author_curate_reward""
vote details (3)
@pgm-curator ·
<center>Sent 0.1 PGM - 0.1 LVL- 1 STARBITS  - 0.05 DEC - 1 SBT - 0.1 THG - 0.000001 SQM - 0.1 BUDS - 0.01 WOO - 0.005 SCRAP tokens </center>

<center><sub>remaining commands 5</sub></center>


**BUY AND STAKE THE PGM TO SEND A LOT OF TOKENS!**

The tokens that the command sends are: 0.1 PGM-0.1 LVL-0.1 THGAMING-0.05 DEC-15 SBT-1 STARBITS-[0.00000001 BTC (SWAP.BTC) only if you have 2500 PGM in stake or more ]

5000 PGM IN STAKE = 2x rewards! 

![image.png](https://files.peakd.com/file/peakd-hive/zottone444/23t7AyKqAfdxKEJPQrpePMW15BCPhbyrf5VoHWxhBFcEcPLjDUVVQAh9ZAopbmoJDekS6.png)
Discord [![image.png](https://files.peakd.com/file/peakd-hive/hive-135941/23wfr3mtLS9ddSpifBvh7mwLx1rN3eoaSvbwUxTngsNR1GQ8EiZTrC9P9RwZxHCCfK8e5.png)](https://discord.gg/KCvuNTEjWw)


Support the curation account @ pgm-curator with a delegation [10 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhdG9yIiwidmVzdGluZ19zaGFyZXMiOiIxMCJ9XQ..) - [50 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhdG9yIiwidmVzdGluZ19zaGFyZXMiOiI1MCJ9XQ..) - [100 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhb3RyIiwidmVzdGluZ19zaGFyZXMiOiIxMDAifV0.) - [500 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhdG9yIiwidmVzdGluZ19zaGFyZXMiOiI1MDAifV0.) - [1000 HP](https://hivesigner.com/sign/op/WyJ0cmFuc2Zlcl90b192ZXN0aW5nIix7ImZyb20iOiJfX3NpZ25lciIsInRvIjoicGdtLWN1cmF0b3IiLCJhbW91bnQiOiIxMDAwIn1d)

Get **potential** votes from @ pgm-curator by paying in PGM, here is a [guide](https://peakd.com/hive-146620/@zottone444/pay-1-pgm-and-get-4-votes-itaegn)



<sub>I'm a bot, if you want a hand ask @ zottone444</sub>

***
properties (22)
authorpgm-curator
permlinkpgm-curatormdasein1697719612490
categoryhive-129924
json_metadata{"tags":[],"app":"pgm/0.1","format":"markdown+html"}
created2023-10-19 12:46:54
last_update2023-10-19 12:46:54
depth2
children0
last_payout2023-10-26 12:46:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,916
author_reputation3,409,490,822,394
root_title"Diving into Python: You can teach an old dog new tricks!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id128,125,503
net_rshares0
@mdasein ·
$0.02
One of the old dogs here. Want to learn new tricks and make life more exciting 😁 !PGM
👍  , ,
properties (23)
authormdasein
permlinkre-bozz-20231019t20495796z
categoryhive-129924
json_metadata{"tags":["python","stemgeeks","inleo","discovery-it","ocd","gems","archon","pimp","tribes","silverbloggers"],"app":"ecency/3.0.42-mobile","format":"markdown+html"}
created2023-10-19 12:49:06
last_update2023-10-19 12:49:06
depth1
children1
last_payout2023-10-26 12:49:06
cashout_time1969-12-31 23:59:59
total_payout_value0.010 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length85
author_reputation14,966,838,221,313
root_title"Diving into Python: You can teach an old dog new tricks!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id128,125,537
net_rshares46,156,634,841
author_curate_reward""
vote details (3)
@pgm-curator ·
<center>Sent 0.1 PGM - 0.1 LVL- 1 STARBITS  - 0.05 DEC - 1 SBT - 0.1 THG - 0.000001 SQM - 0.1 BUDS - 0.01 WOO - 0.005 SCRAP tokens </center>

<center><sub>remaining commands 4</sub></center>


**BUY AND STAKE THE PGM TO SEND A LOT OF TOKENS!**

The tokens that the command sends are: 0.1 PGM-0.1 LVL-0.1 THGAMING-0.05 DEC-15 SBT-1 STARBITS-[0.00000001 BTC (SWAP.BTC) only if you have 2500 PGM in stake or more ]

5000 PGM IN STAKE = 2x rewards! 

![image.png](https://files.peakd.com/file/peakd-hive/zottone444/23t7AyKqAfdxKEJPQrpePMW15BCPhbyrf5VoHWxhBFcEcPLjDUVVQAh9ZAopbmoJDekS6.png)
Discord [![image.png](https://files.peakd.com/file/peakd-hive/hive-135941/23wfr3mtLS9ddSpifBvh7mwLx1rN3eoaSvbwUxTngsNR1GQ8EiZTrC9P9RwZxHCCfK8e5.png)](https://discord.gg/KCvuNTEjWw)


Support the curation account @ pgm-curator with a delegation [10 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhdG9yIiwidmVzdGluZ19zaGFyZXMiOiIxMCJ9XQ..) - [50 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhdG9yIiwidmVzdGluZ19zaGFyZXMiOiI1MCJ9XQ..) - [100 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhb3RyIiwidmVzdGluZ19zaGFyZXMiOiIxMDAifV0.) - [500 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhdG9yIiwidmVzdGluZ19zaGFyZXMiOiI1MDAifV0.) - [1000 HP](https://hivesigner.com/sign/op/WyJ0cmFuc2Zlcl90b192ZXN0aW5nIix7ImZyb20iOiJfX3NpZ25lciIsInRvIjoicGdtLWN1cmF0b3IiLCJhbW91bnQiOiIxMDAwIn1d)

Get **potential** votes from @ pgm-curator by paying in PGM, here is a [guide](https://peakd.com/hive-146620/@zottone444/pay-1-pgm-and-get-4-votes-itaegn)



<sub>I'm a bot, if you want a hand ask @ zottone444</sub>

***
properties (22)
authorpgm-curator
permlinkpgm-curatormdasein1697719769497
categoryhive-129924
json_metadata{"tags":[],"app":"pgm/0.1","format":"markdown+html"}
created2023-10-19 12:49:30
last_update2023-10-19 12:49:30
depth2
children0
last_payout2023-10-26 12:49:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,916
author_reputation3,409,490,822,394
root_title"Diving into Python: You can teach an old dog new tricks!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id128,125,545
net_rshares0
@mypathtofire ·
$0.02
Great work, you are motivating me to power up my python again and use with Hive. Im not sure if python or SQL first though.
👍  , ,
properties (23)
authormypathtofire
permlinkre-bozz-20231019t144358193z
categoryhive-129924
json_metadata{"type":"comment","tags":["hive-129924","python","stemgeeks","inleo","discovery-it","ocd","gems","archon","pimp","tribes","silverbloggers"],"app":"ecency/3.0.44-mobile","format":"markdown+html"}
created2023-10-19 12:43:57
last_update2023-10-19 12:43:57
depth1
children1
last_payout2023-10-26 12:43:57
cashout_time1969-12-31 23:59:59
total_payout_value0.010 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length123
author_reputation606,105,868,231,948
root_title"Diving into Python: You can teach an old dog new tricks!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id128,125,456
net_rshares46,115,160,653
author_curate_reward""
vote details (3)
@bozz ·
I think they are both great options.  I want to mess around with SQL a bit more too.
👍  ,
properties (23)
authorbozz
permlinkre-mypathtofire-s2svxk
categoryhive-129924
json_metadata{"tags":["hive-129924"],"app":"peakd/2023.10.1"}
created2023-10-19 23:58:30
last_update2023-10-19 23:58:30
depth2
children0
last_payout2023-10-26 23:58:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length84
author_reputation2,268,006,318,455,575
root_title"Diving into Python: You can teach an old dog new tricks!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id128,140,141
net_rshares14,149,224,165
author_curate_reward""
vote details (2)
@nicklewis ·
$0.02
I must try this stuff out. I’m a software engineer and studied that as my degree back in the day. The one language I never use though, is Python! Easy to learn though. 
👍  , ,
properties (23)
authornicklewis
permlinkre-bozz-20231019t12517957z
categoryhive-129924
json_metadata{"type":"comment","tags":["hive-129924","python","stemgeeks","inleo","discovery-it","ocd","gems","archon","pimp","tribes","silverbloggers"],"app":"ecency/3.0.44-mobile","format":"markdown+html"}
created2023-10-19 11:05:18
last_update2023-10-19 11:05:18
depth1
children2
last_payout2023-10-26 11:05:18
cashout_time1969-12-31 23:59:59
total_payout_value0.010 HBD
curator_payout_value0.009 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length168
author_reputation94,489,795,837,417
root_title"Diving into Python: You can teach an old dog new tricks!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id128,123,857
net_rshares44,189,106,038
author_curate_reward""
vote details (3)
@bozz ·
$0.02
Oh, you should have no problem. If I can do it anyone can do it.  I am so rusty that I am surprised I was still able to string anything together into something that worked.
👍  , ,
properties (23)
authorbozz
permlinkre-nicklewis-s2rww1
categoryhive-129924
json_metadata{"tags":["hive-129924"],"app":"peakd/2023.10.1"}
created2023-10-19 11:21:36
last_update2023-10-19 11:21:36
depth2
children1
last_payout2023-10-26 11:21:36
cashout_time1969-12-31 23:59:59
total_payout_value0.010 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length172
author_reputation2,268,006,318,455,575
root_title"Diving into Python: You can teach an old dog new tricks!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id128,124,107
net_rshares46,999,140,876
author_curate_reward""
vote details (3)
@nicklewis ·
Sometimes these skills never go forgotten 😀
👍  , ,
properties (23)
authornicklewis
permlinkre-bozz-20231019t12368861z
categoryhive-129924
json_metadata{"type":"comment","tags":["hive-129924"],"app":"ecency/3.0.44-mobile","format":"markdown+html"}
created2023-10-19 11:36:09
last_update2023-10-19 11:36:09
depth3
children0
last_payout2023-10-26 11:36:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length43
author_reputation94,489,795,837,417
root_title"Diving into Python: You can teach an old dog new tricks!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id128,124,365
net_rshares29,501,930,088
author_curate_reward""
vote details (3)
@outwars ·
$0.02
That's awesome. I took some C and Java courses in college, and after finishing those subjects I decided I don't want to code. Seeing how coding seems to be easier now [less lines of code] is really nice. I don't know if I will be trying to code again, but it is nice to know that the experience is better.
👍  , ,
properties (23)
authoroutwars
permlinkre-bozz-s2s07k
categoryhive-129924
json_metadata{"tags":["hive-129924"],"app":"peakd/2023.10.1"}
created2023-10-19 12:33:21
last_update2023-10-19 12:33:21
depth1
children1
last_payout2023-10-26 12:33:21
cashout_time1969-12-31 23:59:59
total_payout_value0.010 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length305
author_reputation243,871,663,578,097
root_title"Diving into Python: You can teach an old dog new tricks!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id128,125,270
net_rshares46,075,859,075
author_curate_reward""
vote details (3)
@bozz ·
Plus the AI these days can do a lot of the code for you too.  I haven't tried it yet, but I have heard it is pretty impressive.  I don't think I could get away with doing coding for a living, but it's fun to play around with.
👍  
properties (23)
authorbozz
permlinkre-outwars-s2sw11
categoryhive-129924
json_metadata{"tags":["hive-129924"],"app":"peakd/2023.10.1"}
created2023-10-20 00:00:36
last_update2023-10-20 00:00:36
depth2
children0
last_payout2023-10-27 00:00:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length225
author_reputation2,268,006,318,455,575
root_title"Diving into Python: You can teach an old dog new tricks!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id128,140,278
net_rshares0
author_curate_reward""
vote details (1)
@palomap3 ·
$0.06
Post manually reviewed. 😊

![](https://images.ecency.com/DQmfLmVZg6qAmPWLLnjPFGgpefE5fsdVH2BeRwV8JWzcj5E/ecency_boost.gif)
👍  ,
properties (23)
authorpalomap3
permlinkre-bozz-20231020t114852283z
categoryhive-129924
json_metadata{"tags":["python","stemgeeks","inleo","discovery-it","ocd","gems","archon","pimp","tribes","silverbloggers"],"app":"ecency/3.0.36-vision","format":"markdown+html"}
created2023-10-20 09:48:51
last_update2023-10-20 09:48:51
depth1
children0
last_payout2023-10-27 09:48:51
cashout_time1969-12-31 23:59:59
total_payout_value0.030 HBD
curator_payout_value0.030 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length122
author_reputation318,217,429,169,573
root_title"Diving into Python: You can teach an old dog new tricks!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id128,150,602
net_rshares136,114,896,115
author_curate_reward""
vote details (2)
@rafzat ·
$0.03
Coding may be interesting and simple to people like you but it seem hard to me maybe because I'm not good at it, lol
I wish to have an idea abutting it though even though it is little 
👍  ,
properties (23)
authorrafzat
permlinkre-bozz-20231019t16364617z
categoryhive-129924
json_metadata{"tags":["hive-129924","python","stemgeeks","inleo","discovery-it","ocd","gems","archon","pimp","tribes","silverbloggers"],"app":"ecency/3.0.43-mobile","format":"markdown+html"}
created2023-10-19 15:36:48
last_update2023-10-19 15:36:48
depth1
children1
last_payout2023-10-26 15:36:48
cashout_time1969-12-31 23:59:59
total_payout_value0.014 HBD
curator_payout_value0.014 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length184
author_reputation183,560,271,702,716
root_title"Diving into Python: You can teach an old dog new tricks!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id128,129,488
net_rshares61,680,541,035
author_curate_reward""
vote details (2)
@bozz ·
It took me forever to come up with this idea.  Luckily there was a function in place already for it.
👍  
properties (23)
authorbozz
permlinkre-rafzat-s2svet
categoryhive-129924
json_metadata{"tags":["hive-129924"],"app":"peakd/2023.10.1"}
created2023-10-19 23:47:15
last_update2023-10-19 23:47:15
depth2
children0
last_payout2023-10-26 23:47:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length100
author_reputation2,268,006,318,455,575
root_title"Diving into Python: You can teach an old dog new tricks!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id128,139,674
net_rshares0
author_curate_reward""
vote details (1)
@revisesociology ·
$0.14
I love the way you've shoved all the crap to the sides in that first picture, very organised! 

BEER
👍  , , , ,
👎  ,
properties (23)
authorrevisesociology
permlinkre-bozz-s2ry5e
categoryhive-129924
json_metadata{"tags":["hive-129924"],"app":"peakd/2023.10.1"}
created2023-10-19 11:48:48
last_update2023-10-19 11:48:48
depth1
children3
last_payout2023-10-26 11:48:48
cashout_time1969-12-31 23:59:59
total_payout_value0.068 HBD
curator_payout_value0.067 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length100
author_reputation2,285,410,980,718,578
root_title"Diving into Python: You can teach an old dog new tricks!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id128,124,562
net_rshares301,880,336,126
author_curate_reward""
vote details (7)
@bozz ·
My office is a hot mess for sure.  It's disgusting, but I can never seem to get it clean.
👍  
properties (23)
authorbozz
permlinkre-revisesociology-s2sw8a
categoryhive-129924
json_metadata{"tags":["hive-129924"],"app":"peakd/2023.10.1"}
created2023-10-20 00:04:57
last_update2023-10-20 00:04:57
depth2
children0
last_payout2023-10-27 00:04:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length89
author_reputation2,268,006,318,455,575
root_title"Diving into Python: You can teach an old dog new tricks!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id128,140,500
net_rshares0
author_curate_reward""
vote details (1)
@slobberchops ·
$0.04
LOL, I noticed that. Lots of massive screens and plenty of piled up junk!
👍  ,
👎  ,
properties (23)
authorslobberchops
permlinkre-revisesociology-s2sicu
categoryhive-129924
json_metadata{"tags":["hive-129924"],"app":"peakd/2023.10.1"}
created2023-10-19 19:05:18
last_update2023-10-19 19:05:18
depth2
children1
last_payout2023-10-26 19:05:18
cashout_time1969-12-31 23:59:59
total_payout_value0.020 HBD
curator_payout_value0.020 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length73
author_reputation2,436,360,244,882,127
root_title"Diving into Python: You can teach an old dog new tricks!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id128,133,593
net_rshares88,060,523,011
author_curate_reward""
vote details (4)
@revisesociology ·
$0.08
It's a great aesthetic!
👍  ,
properties (23)
authorrevisesociology
permlinkre-slobberchops-s2sl7y
categoryhive-129924
json_metadata{"tags":["hive-129924"],"app":"peakd/2023.10.1"}
created2023-10-19 20:07:09
last_update2023-10-19 20:07:09
depth3
children0
last_payout2023-10-26 20:07:09
cashout_time1969-12-31 23:59:59
total_payout_value0.040 HBD
curator_payout_value0.041 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length23
author_reputation2,285,410,980,718,578
root_title"Diving into Python: You can teach an old dog new tricks!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id128,134,966
net_rshares180,355,998,677
author_curate_reward""
vote details (2)
@santigs ·
$0.02
I kinda ran through the same process two years ago. You can try google codelab as a test environment. It has a python notebook format but lets you install the libraries and you can share your files with anyone.
👍  , ,
properties (23)
authorsantigs
permlinkre-bozz-20231019t145636382z
categoryhive-129924
json_metadata{"type":"comment","tags":["hive-129924","python","stemgeeks","inleo","discovery-it","ocd","gems","archon","pimp","tribes","silverbloggers"],"app":"ecency/3.0.44-mobile","format":"markdown+html"}
created2023-10-19 12:56:36
last_update2023-10-19 12:56:36
depth1
children1
last_payout2023-10-26 12:56:36
cashout_time1969-12-31 23:59:59
total_payout_value0.010 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length210
author_reputation140,188,596,902,353
root_title"Diving into Python: You can teach an old dog new tricks!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id128,125,680
net_rshares46,216,056,797
author_curate_reward""
vote details (3)
@bozz ·
Oh, that is cool.  I was looking for something like that, but I honestly don't mind using the Ubuntu VM. It works really well and I can access it pretty easily.
👍  
properties (23)
authorbozz
permlinkre-santigs-s2svtj
categoryhive-129924
json_metadata{"tags":["hive-129924"],"app":"peakd/2023.10.1"}
created2023-10-19 23:56:06
last_update2023-10-19 23:56:06
depth2
children0
last_payout2023-10-26 23:56:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length160
author_reputation2,268,006,318,455,575
root_title"Diving into Python: You can teach an old dog new tricks!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id128,139,996
net_rshares0
author_curate_reward""
vote details (1)
@slobberchops ·
$0.04
Is that your office at work? If so, they don't half give you a lot of screens. Are you sure you're not a security guard?
👍  , , ,
👎  ,
properties (23)
authorslobberchops
permlinkre-bozz-s2sigc
categoryhive-129924
json_metadata{"tags":["hive-129924"],"app":"peakd/2023.10.1"}
created2023-10-19 19:07:24
last_update2023-10-19 19:07:24
depth1
children1
last_payout2023-10-26 19:07:24
cashout_time1969-12-31 23:59:59
total_payout_value0.020 HBD
curator_payout_value0.020 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length120
author_reputation2,436,360,244,882,127
root_title"Diving into Python: You can teach an old dog new tricks!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id128,133,635
net_rshares92,201,738,371
author_curate_reward""
vote details (6)
@bozz ·
$0.05
Yeah, that is my office. I have five screens total.  There are times I wish I had more!
👍  ,
properties (23)
authorbozz
permlinkre-slobberchops-s2sva4
categoryhive-129924
json_metadata{"tags":["hive-129924"],"app":"peakd/2023.10.1"}
created2023-10-19 23:44:27
last_update2023-10-19 23:44:27
depth2
children0
last_payout2023-10-26 23:44:27
cashout_time1969-12-31 23:59:59
total_payout_value0.024 HBD
curator_payout_value0.025 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length87
author_reputation2,268,006,318,455,575
root_title"Diving into Python: You can teach an old dog new tricks!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id128,139,612
net_rshares109,960,252,622
author_curate_reward""
vote details (2)
@steevc · (edited)
$0.04
I get to use Python at work, so I have picked up a few tricks for that. It is really powerful, but you can use simple structures for this sort of thing. A lot depends on the libraries you have. beem is pretty good, but I need to look into LightHive as we need something that is supported. If you know SQL then @hivesql can do a lot. 

BTW I just tried your script. I found one bug. It seems a lot of people mute me :)
👍  , , , ,
👎  
properties (23)
authorsteevc
permlinkre-bozz-s2s1fk
categoryhive-129924
json_metadata{"tags":["hive-129924"],"app":"peakd/2023.10.1","users":["hivesql"]}
created2023-10-19 12:59:45
last_update2023-10-19 13:06:33
depth1
children2
last_payout2023-10-26 12:59:45
cashout_time1969-12-31 23:59:59
total_payout_value0.020 HBD
curator_payout_value0.019 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length417
author_reputation1,384,874,625,644,143
root_title"Diving into Python: You can teach an old dog new tricks!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id128,125,742
net_rshares90,815,472,287
author_curate_reward""
vote details (6)
@bozz ·
$0.05
Haha, yeah, you do have more than some of us.  I noticed that too!  That is cool that you do so much with it at work. I wish I had to use it more, then I might be better at it. I enjoyed the SQL class I took but I have forgotten a lot of it. I might need to checkout @hivesql.
👍  ,
properties (23)
authorbozz
permlinkre-steevc-s2svrw
categoryhive-129924
json_metadata{"tags":["hive-129924"],"app":"peakd/2023.10.1"}
created2023-10-19 23:55:09
last_update2023-10-19 23:55:09
depth2
children1
last_payout2023-10-26 23:55:09
cashout_time1969-12-31 23:59:59
total_payout_value0.024 HBD
curator_payout_value0.025 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length276
author_reputation2,268,006,318,455,575
root_title"Diving into Python: You can teach an old dog new tricks!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id128,139,939
net_rshares109,863,858,508
author_curate_reward""
vote details (2)
@steevc ·
$0.03
You do need to use these tools to keep your skills up. There are other languages I used to use, but I'm rusty with those now.
👍  , , , , , ,
👎  ,
properties (23)
authorsteevc
permlinkre-bozz-s2tfsx
categoryhive-129924
json_metadata{"tags":["hive-129924"],"app":"peakd/2023.10.1"}
created2023-10-20 07:07:45
last_update2023-10-20 07:07:45
depth3
children0
last_payout2023-10-27 07:07:45
cashout_time1969-12-31 23:59:59
total_payout_value0.014 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length125
author_reputation1,384,874,625,644,143
root_title"Diving into Python: You can teach an old dog new tricks!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id128,148,250
net_rshares62,793,500,183
author_curate_reward""
vote details (9)
@thebighigg ·
$0.02
That is awesome! I've considered trying it out, but being an old dog the new tricks won't be as easy as they used to be. Way to go, looks like you still got the skills!
👍  ,
properties (23)
authorthebighigg
permlinkre-bozz-s2s5vt
categoryhive-129924
json_metadata{"tags":["hive-129924"],"app":"peakd/2023.10.1"}
created2023-10-19 14:35:54
last_update2023-10-19 14:35:54
depth1
children1
last_payout2023-10-26 14:35:54
cashout_time1969-12-31 23:59:59
total_payout_value0.010 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length168
author_reputation484,334,059,425,702
root_title"Diving into Python: You can teach an old dog new tricks!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id128,128,178
net_rshares46,222,025,006
author_curate_reward""
vote details (2)
@bozz ·
Thanks, I appreciate it. It's definitely something that I hope to build upon over the years.  I'd love to pull some more useful data.
👍  
properties (23)
authorbozz
permlinkre-thebighigg-s2svhb
categoryhive-129924
json_metadata{"tags":["hive-129924"],"app":"peakd/2023.10.1"}
created2023-10-19 23:48:48
last_update2023-10-19 23:48:48
depth2
children0
last_payout2023-10-26 23:48:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length133
author_reputation2,268,006,318,455,575
root_title"Diving into Python: You can teach an old dog new tricks!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id128,139,707
net_rshares0
author_curate_reward""
vote details (1)