<center></center> --- #### Repository https://github.com/python #### What will I learn - Workspace - Virtual environment - Reading files - Part one: int(), map(), sum() - Part two #### Requirements - Python 3.7.2 - [Pipenv](https://pypi.org/project/pipenv/) - git #### Difficulty - basic --- ### Tutorial #### Preface This tutorial is part of a course where solutions to puzzles from [Advent of Code 2018](https://adventofcode.com/2018/) are discussed to explain programming techniques using Python. Each puzzle contains two parts and comes with user specific inputs. It is recommended to try out the puzzle first before going over the tutorial. Puzzles are a great and fun way to learn about programming. While the puzzles start of relatively easy and get more difficult over time. Basic programming understanding is required. Such as the different type of variables, lists, dicts, functions and loops etc. A course like [Learn Python2 from Codeacademy](https://www.codecademy.com/learn/learn-python) should be sufficient. Even though the course is for Python 2, while Python 3 is used. This tutorial will jumpstart the course by going over the basic fundamentals while also explaining the first puzzle of Advent of Code. [Puzzle 1](https://adventofcode.com/2018/day/1) #### Setup Download the files from Github and install the virtual environment ``` $ cd ~/ $ git clone https://github.com/Juless89/tutorials-aoc $ cd tutorials-aoc $ pipenv install $ pipenv shell $ cd part_1 ``` #### Workspace A good code editor is essential for any programmer to be able to work effectively. While there are many different editors this course will be using [Visual Code Studio](https://code.visualstudio.com/). It is not required but highly recommended. A good editor allows for a good overview of the workspace, is dynamic in the sense that addons can be added and comes with error highlighting. Just like Word lets the user know when a word is not spelled correctly an editor will be able to see basic programming errors. To add the this course go to `File>Open Workspace...` and add the base folder. <center></center> #### Virtual environment Python comes in different versions and allows for many different packages to be imported. A virtual environment allows the user to keep track and manage these versions and packages without them interfering with each other. This keeps applications isolated from each other, making changes to one virtual environment won't possible corrupt another. This course will be using `pipenv`. ``` # Linux pip install pipenv # mac brew install pipenv ``` Create a new virtual environment inside a folder with `pipenv install`, enter the virtual environment with `pipenv shell` and exit the virtual evironment with `exit`. An active virtual evironment is highlighted by `(base_folder_)name`. <center></center> #### Reading files As most of the puzzles come with huge inputs best practise is to separate this into a separate file. For each puzzle the input will be stored inside `input.txt`. When dealing with files the user has to account for closing the file after use and exceptions. This can be simplified by using a `with` statement. > The with statement simplifies exception handling by encapsulating common preparation and cleanup tasks. ``` file = open('input.txt', 'r') lines = list(file) file.close() ``` Is equal to: ``` # read input file and convert to list with open('input.txt', 'r') as file: lines = list(file) ``` `list()` converts the file to a list which makes using the data later on easier. #### Part one: int(), map(), sum() For part one of puzzle one a list with frequency changes is given `+1, -2, +3, +1`. Where each input represents a change to the current frequency. > Starting with a frequency of zero, what is the resulting frequency after all of the changes in frequency have been applied? So to solve the puzzle all the inputs will have to be summed up together. The input has been loaded inside `lines`, when printing this to the terminal it looks different. ``` ['+3\n', '+8\n', '-5\n', '+15\n', '+9\n', '-17\n', '+11\n'] ``` After each input there is a `\n` which represents a new line. In addition `+5` is not a number while `-5` is. Depending on which language the user is using converting these lines to numbers might require additional steps. Luckily Python is quite clever and understands that `+5\n` equals `5`. Converting each line is done by casting them to an int with `int()`. The most straight forward solution to part 1 would be to loop over all the lines, cast them to an integer and add them to a variable frequency. ``` def part_1(lines): frequency = 0 # convert each line to an int and # add to frequency for line in lines: frequency += int(line) return frequency ``` However, a cleaner and much simpler approach would be to use `sum()`, which returns the total value of all values in a list. For this to work each value needs to be a number though. `int()` is a function, and as such can be used with `map()` to convert each value inside the list to an int. `map()` applies a function to each value of a list. ``` def part_1(lines): # convert each value to an int # return sum return sum(map(int, lines)) ``` #### Part two > You notice that the device repeats the same frequency change list over and over. To calibrate the device, you need to find the first frequency it reaches twice. Like mentioned in the puzzle the same list gets repeated over and over. And while that is happening the old frequencies have to be stored to know if a frequency is reached twice. ``` def part_2(lines): # start frequency frequency = 0 frequency_list = [frequency] # loop forever while True: # convert each line to an int # add to frequency for line in lines: frequency += int(line) # check if frequency already seen if frequency not in frequency_list: frequency_list.append(frequency) else: # break loop with return return(frequency) ``` A new variable `frequency_list` is added where all frequencies will be stored in. `while True` will make a loop that lasts forever. Each new frequency is compared with the `frequency_list` with `if frequency not in frequency_list:` it gets added if this is not the case with `.append()`. To break out of the `while True` loop the function is set to `return` the frequency that is reached twice. A normal `break` statement would not work in this case. #### Running the code ``` if __name__ == "__main__": # read input file and convert to list with open('input.txt', 'r') as file: lines = list(file) print(f'Part 1 Answer: {part_1(lines)}') print(f'Part 2 Answer: {part_2(lines)}') ``` Run the code with: `python main.py` It takes a while for the 2nd answer to be calculated. <center></center> --- The code for this tutorial can be found on [Github](https://github.com/Juless89/tutorials-aoc)! This tutorial was written by @juliank.
author | steempytutorials | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
permlink | learn-how-to-program-with-python-1---solving-puzzles-from-advent-of-code-2018 | ||||||||||||
category | utopian-io | ||||||||||||
json_metadata | {"tags":["utopian-io","tutorials","python","course","programming"],"app":"steemit/0.1","users":["juliank"],"image":["https://www.digifloor.com/wp-content/uploads/2016/07/python-banner.jpg","https://cdn.steemitimages.com/DQmctYbBdMLaAftEkjHwRgqj4cJVh2HoS9mi8i7mC52cxq5/Screenshot-2019-04-05-20.58.29.png","https://cdn.steemitimages.com/DQmYUvgWLoDnZfNLkr2b5AaRRxfRwFdddWJUTpbrjDEnqSw/Apr-05-2019%2021-02-10.gif","https://cdn.steemitimages.com/DQmUpLSmtL9X7uL7f2vzkyTTUA9aKSi8BdHgr7RcXmoE62E/Screenshot%202019-04-05%2020.54.50.png"],"links":["https://github.com/python","https://pypi.org/project/pipenv/","https://adventofcode.com/2018/","https://www.codecademy.com/learn/learn-python","https://adventofcode.com/2018/day/1","https://code.visualstudio.com/","https://github.com/Juless89/tutorials-aoc"],"format":"markdown"} | ||||||||||||
created | 2019-04-05 19:19:30 | ||||||||||||
last_update | 2019-04-05 20:00:45 | ||||||||||||
depth | 0 | ||||||||||||
children | 9 | ||||||||||||
last_payout | 2019-04-12 19:19:30 | ||||||||||||
cashout_time | 1969-12-31 23:59:59 | ||||||||||||
total_payout_value | 19.557 HBD | ||||||||||||
curator_payout_value | 6.510 HBD | ||||||||||||
pending_payout_value | 0.000 HBD | ||||||||||||
promoted | 0.000 HBD | ||||||||||||
body_length | 7,633 | ||||||||||||
author_reputation | 31,094,047,689,691 | ||||||||||||
root_title | "Learn how to program with Python #1 - Solving Puzzles from Advent of Code 2018" | ||||||||||||
beneficiaries |
| ||||||||||||
max_accepted_payout | 100,000.000 HBD | ||||||||||||
percent_hbd | 10,000 | ||||||||||||
post_id | 82,548,797 | ||||||||||||
net_rshares | 39,788,561,193,543 | ||||||||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tombstone | 0 | 3,891,334,065,522 | 16.12% | ||
camponez | 0 | 39,198,840,213 | 100% | ||
rufans | 0 | 18,900,866,296 | 100% | ||
roy2016 | 0 | 174,340,260,628 | 33% | ||
abh12345 | 0 | 10,823,598,409 | 2.01% | ||
techslut | 0 | 82,505,624,559 | 20% | ||
minersean | 0 | 6,302,456,974 | 75% | ||
erikaflynn | 0 | 11,959,990,113 | 35% | ||
steemitboard | 0 | 13,284,287,989 | 1% | ||
elviento | 0 | 507,202,049 | 0.72% | ||
miniature-tiger | 0 | 102,182,995,720 | 50% | ||
aleister | 0 | 7,292,645,047 | 15% | ||
jakipatryk | 0 | 14,468,932,153 | 50% | ||
jga | 0 | 2,626,747,738 | 20.15% | ||
helo | 0 | 220,115,503,882 | 100% | ||
lorenzor | 0 | 1,154,362,001 | 10.07% | ||
mydrall | 0 | 5,009,594,937 | 100% | ||
suesa | 0 | 99,659,733,940 | 25% | ||
bubke | 0 | 401,311,150,361 | 100% | ||
drorion | 0 | 1,540,130,174 | 100% | ||
codingdefined | 0 | 51,984,784,135 | 39.82% | ||
tsoldovieri | 0 | 1,449,725,759 | 10.07% | ||
tykee | 0 | 10,476,560,714 | 20.15% | ||
iamphysical | 0 | 14,369,144,969 | 90% | ||
felixrodriguez | 0 | 597,620,099 | 7.05% | ||
azulear | 0 | 448,628,530 | 100% | ||
silviu93 | 0 | 5,102,060,419 | 20.15% | ||
jadabug | 0 | 1,345,313,511 | 1% | ||
dakeshi | 0 | 1,494,420,894 | 20.15% | ||
espoem | 0 | 87,439,228,930 | 45.52% | ||
mcfarhat | 0 | 29,047,745,004 | 15.92% | ||
steem-plus | 0 | 3,447,630,912 | 0.23% | ||
elear | 0 | 6,208,660,321 | 40.3% | ||
carlos84 | 0 | 971,862,943 | 20.15% | ||
che-shyr | 0 | 999,695,449 | 50% | ||
utopian-io | 0 | 32,725,201,326,005 | 40.3% | ||
imisstheoldkanye | 0 | 1,841,870,622 | 1% | ||
jaff8 | 0 | 79,912,705,819 | 39.82% | ||
newsrx | 0 | 89,002,907 | 7.07% | ||
mytechtrail | 0 | 1,502,112,020 | 50% | ||
amestyj | 0 | 802,618,136 | 20.15% | ||
greenorange | 0 | 544,334,906 | 100% | ||
mcyusuf | 0 | 2,553,955,415 | 20.15% | ||
alexs1320 | 0 | 39,881,609,473 | 25% | ||
gentleshaid | 0 | 32,845,597,630 | 40.3% | ||
cpufronz | 0 | 1,013,088,535 | 50% | ||
ivymalifred | 0 | 337,366,254 | 10.07% | ||
ennyta | 0 | 152,286,310 | 10.07% | ||
vjap55 | 0 | 690,302,154 | 100% | ||
amosbastian | 0 | 121,351,154,139 | 39.82% | ||
eliaschess333 | 0 | 1,969,423,839 | 10.07% | ||
scienceangel | 0 | 49,703,444,383 | 50% | ||
fth | 0 | 2,355,026,336 | 100% | ||
portugalcoin | 0 | 15,601,343,474 | 15% | ||
vanarchist | 0 | 2,626,150,725 | 100% | ||
sargoon | 0 | 1,077,489,145 | 20.15% | ||
darewealth | 0 | 9,654,756,007 | 40.3% | ||
tobias-g | 0 | 155,177,824,408 | 42% | ||
dongentle2 | 0 | 4,642,970,771 | 20.15% | ||
miguelangel2801 | 0 | 120,558,480 | 10.07% | ||
steempytutorials | 0 | 5,272,108,925 | 100% | ||
didic | 0 | 29,473,287,787 | 25% | ||
emiliomoron | 0 | 857,013,319 | 10.07% | ||
endopediatria | 0 | 100,279,940 | 4.03% | ||
fego | 0 | 33,495,326,436 | 39.82% | ||
reazuliqbal | 0 | 42,707,696,071 | 25% | ||
properfraction | 0 | 2,816,918,513 | 100% | ||
tomastonyperez | 0 | 2,354,512,047 | 10.07% | ||
elvigia | 0 | 2,053,944,668 | 10.07% | ||
jubreal | 0 | 4,792,302,313 | 40.3% | ||
adamada | 0 | 8,262,504,616 | 25% | ||
ezravandi | 0 | 2,885,361,386 | 1% | ||
yu-stem | 0 | 9,623,831,524 | 25% | ||
luiscd8a | 0 | 1,401,764,947 | 80% | ||
geadriana | 0 | 95,311,809 | 3.02% | ||
josedelacruz | 0 | 919,241,781 | 10.07% | ||
joseangelvs | 0 | 310,976,407 | 20.15% | ||
viannis | 0 | 284,394,759 | 10.07% | ||
rollthedice | 0 | 4,226,774,593 | 40.3% | ||
flores39 | 0 | 373,042,655 | 100% | ||
kendallron | 0 | 225,270,725 | 15% | ||
erickyoussif | 0 | 423,838,213 | 20.15% | ||
romeskie | 0 | 878,131,791 | 12.5% | ||
indayclara | 0 | 281,232,690 | 7.5% | ||
pinas | 0 | 449,788,828 | 50% | ||
anaestrada12 | 0 | 3,987,237,797 | 20.15% | ||
joelsegovia | 0 | 780,148,614 | 10.07% | ||
k0wsk1 | 0 | 20,110,921,604 | 100% | ||
bflanagin | 0 | 3,461,116,429 | 20.15% | ||
phelrenew | 0 | 527,690,550 | 100% | ||
bestofph | 0 | 6,476,987,781 | 15% | ||
dalz | 0 | 5,586,226,404 | 16.12% | ||
ulockblock | 0 | 41,467,775,679 | 12.73% | ||
amart29 | 0 | 390,901,678 | 4.03% | ||
jk6276 | 0 | 6,499,689,049 | 20.15% | ||
reinaseq | 0 | 1,093,265,724 | 20.15% | ||
clusonsopi | 0 | 531,427,536 | 100% | ||
liaguelati | 0 | 530,575,012 | 100% | ||
douaperrave | 0 | 544,242,291 | 100% | ||
switburxiso | 0 | 530,579,267 | 100% | ||
nicole8 | 0 | 548,222,041 | 100% | ||
paigelbq02 | 0 | 528,582,816 | 100% | ||
mariam9fbr | 0 | 528,530,474 | 100% | ||
katherinencb | 0 | 531,572,936 | 100% | ||
annaqv026allen | 0 | 541,631,259 | 100% | ||
steemchoose | 0 | 19,387,480,835 | 9.75% | ||
dssdsds | 0 | 2,307,433,669 | 20.15% | ||
alyssah2tp3green | 0 | 534,641,842 | 100% | ||
jayplayco | 0 | 78,897,456,771 | 20.15% | ||
cryptouno | 0 | 466,879,114 | 5% | ||
lupafilotaxia | 0 | 15,232,889,252 | 100% | ||
fran.frey | 0 | 329,261,535 | 10.07% | ||
alaiza | 0 | 453,253,112 | 100% | ||
mops2e | 0 | 526,344,601 | 36.41% | ||
jrevilla | 0 | 75,967,995 | 20.15% | ||
swapsteem | 0 | 14,448,036,666 | 20.15% | ||
saraht3 | 0 | 534,965,328 | 100% | ||
faithgq | 0 | 551,598,857 | 100% | ||
kylieg0 | 0 | 549,981,557 | 100% | ||
stem-espanol | 0 | 13,345,411,677 | 20.15% | ||
zuur | 0 | 12,200,455,786 | 100% | ||
victoria4i3z | 0 | 538,227,950 | 100% | ||
imtabmimu | 0 | 534,823,782 | 100% | ||
lapp | 0 | 452,114,206 | 100% | ||
steemtpistia | 0 | 454,996,815 | 100% | ||
crassipes | 0 | 451,583,577 | 100% | ||
encrawunria | 0 | 521,026,992 | 100% | ||
countbugeftai | 0 | 530,823,206 | 100% | ||
naitansocar | 0 | 551,143,052 | 100% | ||
nuejoyprocer | 0 | 533,530,471 | 100% | ||
agrovision | 0 | 452,481,774 | 100% | ||
merlin7 | 0 | 140,268,817 | 0.01% | ||
steem-ua | 0 | 700,859,197,019 | 7.07% | ||
giulyfarci52 | 0 | 173,897,987 | 10.07% | ||
hdu | 0 | 926,172,998 | 1% | ||
steemexpress | 0 | 1,515,802,524 | 2.72% | ||
alex-hm | 0 | 1,221,750,156 | 50% | ||
mrsbozz | 0 | 627,119,654 | 25% | ||
delabo | 0 | 2,643,774,783 | 1% | ||
ascorphat | 0 | 2,136,349,972 | 2.5% | ||
rewarding | 0 | 4,677,735,096 | 70.15% | ||
jk6276.mons | 0 | 1,123,281,168 | 40.3% | ||
jaxson2011 | 0 | 1,482,703,165 | 40.3% | ||
supu | 0 | 30,489,108,202 | 3.5% | ||
utopian.trail | 0 | 15,464,693,466 | 40.3% | ||
dicetime | 0 | 38,718,304,387 | 20.15% | ||
athconnect | 0 | 185,652,856 | 20% |
Great quality perspective on the world of programming.
author | athconnect |
---|---|
permlink | re-steempytutorials-learn-how-to-program-with-python-1---solving-puzzles-from-advent-of-code-2018-20190405t203635285z |
category | utopian-io |
json_metadata | {} |
created | 2019-04-05 20:36:36 |
last_update | 2019-04-05 20:36:36 |
depth | 1 |
children | 0 |
last_payout | 2019-04-12 20:36:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 54 |
author_reputation | 29,422,719,219 |
root_title | "Learn how to program with Python #1 - Solving Puzzles from Advent of Code 2018" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 82,551,457 |
net_rshares | 0 |
nothing to do with this specific tutorial but i am breaking my head on the following. Can you tell me what makes the difference between a normal post and one that is only visible through steemd, ic a json post, how do i make a json only post that is not visible in my blog? I am using beem, thanks. Posted using [Partiko Android](https://partiko.app/referral/bubke)
author | bubke |
---|---|
permlink | bubke-re-steempytutorials-learn-how-to-program-with-python-1---solving-puzzles-from-advent-of-code-2018-20190406t011756963z |
category | utopian-io |
json_metadata | {"app":"partiko","client":"android"} |
created | 2019-04-06 01:17:57 |
last_update | 2019-04-06 01:17:57 |
depth | 1 |
children | 1 |
last_payout | 2019-04-13 01:17:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 368 |
author_reputation | 9,285,631,006,103 |
root_title | "Learn how to program with Python #1 - Solving Puzzles from Advent of Code 2018" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 82,559,990 |
net_rshares | 5,235,586,963 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
steempytutorials | 0 | 5,235,586,963 | 100% |
Hi @bubke, to be honest I do not know. I'm not sure it's possible. As far as I know a custom json is a special type of operation used to register things like: follow, reblog etc You can find all the operation types here: https://developers.steem.io/apidefinitions/#apidefinitions-condenser-api This is what I could find with a quick look:  
author | steempytutorials |
---|---|
permlink | re-bubke-bubke-re-steempytutorials-learn-how-to-program-with-python-1---solving-puzzles-from-advent-of-code-2018-20190406t013051092z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["bubke"],"image":["https://cdn.steemitimages.com/DQmQatQdmi8wgnm7BnYya7tHi3tPJkLKFzSptQ84kGcHzFh/Screenshot%202019-04-06%20at%2003.29.52.png","https://cdn.steemitimages.com/DQmVDdwBtg5gvUUJCFJsCkgj7m4xmEqq7t3J3pqLXwE7ZJP/Screenshot%202019-04-06%20at%2003.30.28.png"],"links":["https://developers.steem.io/apidefinitions/#apidefinitions-condenser-api"],"app":"steemit/0.1"} |
created | 2019-04-06 01:30:51 |
last_update | 2019-04-06 01:40:06 |
depth | 2 |
children | 0 |
last_payout | 2019-04-13 01:30:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.052 HBD |
curator_payout_value | 0.011 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 670 |
author_reputation | 31,094,047,689,691 |
root_title | "Learn how to program with Python #1 - Solving Puzzles from Advent of Code 2018" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 82,560,408 |
net_rshares | 109,761,823,382 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bubke | 0 | 109,761,823,382 | 30% |
Thank you for your contribution @steempytutorials. After reviewing your tutorial we suggest the following points listed below: - Very interesting and well explained tutorial. We really like how you explain the contribution structure and the GIFs of your tutorial. Thank you for your work in developing this tutorial. Looking forward to your upcoming tutorials. Your contribution has been evaluated according to [Utopian policies and guidelines](https://join.utopian.io/guidelines), as well as a predefined set of questions pertaining to the category. To view those questions and the relevant answers related to your post, [click here](https://review.utopian.io/result/8/2-1-1-2-1-3-1-3-). ---- Need help? Chat with us on [Discord](https://discord.gg/uTyJkNm). [[utopian-moderator]](https://join.utopian.io/)
author | portugalcoin |
---|---|
permlink | re-steempytutorials-learn-how-to-program-with-python-1---solving-puzzles-from-advent-of-code-2018-20190405t214643036z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["steempytutorials"],"links":["https://join.utopian.io/guidelines","https://review.utopian.io/result/8/2-1-1-2-1-3-1-3-","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"} |
created | 2019-04-05 21:46:42 |
last_update | 2019-04-05 21:46:42 |
depth | 1 |
children | 1 |
last_payout | 2019-04-12 21:46:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 4.515 HBD |
curator_payout_value | 1.410 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 814 |
author_reputation | 599,460,589,822,571 |
root_title | "Learn how to program with Python #1 - Solving Puzzles from Advent of Code 2018" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 82,553,830 |
net_rshares | 8,952,234,229,737 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
codingdefined | 0 | 38,011,827,565 | 29.92% | ||
espoem | 0 | 28,494,011,491 | 15% | ||
utopian-io | 0 | 8,680,329,966,559 | 9.67% | ||
jaff8 | 0 | 58,179,345,428 | 29.92% | ||
emrebeyler | 0 | 0 | 0.01% | ||
lostmine27 | 0 | 10,594,262,131 | 26% | ||
amosbastian | 0 | 88,311,793,318 | 29.92% | ||
sudefteri | 0 | 7,207,669,163 | 100% | ||
reazuliqbal | 0 | 13,511,078,853 | 8% | ||
amico | 0 | 1,074,230,757 | 0.55% | ||
statsexpert | 0 | 8,638,910,390 | 100% | ||
ulockblock | 0 | 11,774,708,758 | 3.67% | ||
curbot | 0 | 2,370,868,961 | 100% | ||
v-1 | 0 | 568,547,428 | 100% | ||
ascorphat | 0 | 2,096,264,358 | 2.5% | ||
holydog | 0 | 800,111,828 | 2% | ||
cleanit | 0 | 270,632,749 | 55% |
Thank you for your review, @portugalcoin! Keep up the good work!
author | utopian-io |
---|---|
permlink | re-re-steempytutorials-learn-how-to-program-with-python-1---solving-puzzles-from-advent-of-code-2018-20190405t214643036z-20190408t001850z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.17"}" |
created | 2019-04-08 00:18:51 |
last_update | 2019-04-08 00:18:51 |
depth | 2 |
children | 0 |
last_payout | 2019-04-15 00:18: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 | 64 |
author_reputation | 152,955,367,999,756 |
root_title | "Learn how to program with Python #1 - Solving Puzzles from Advent of Code 2018" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 82,663,720 |
net_rshares | 0 |
Hi, @steempytutorials! You just got a **0.23%** upvote from SteemPlus! To get higher upvotes, earn more SteemPlus Points (SPP). On your Steemit wallet, check your SPP balance and click on "How to earn SPP?" to find out all the ways to earn. If you're not using SteemPlus yet, please check our last posts in [here](https://steemit.com/@steem-plus) to see the many ways in which SteemPlus can improve your Steem experience on Steemit and Busy.
author | steem-plus |
---|---|
permlink | learn-how-to-program-with-python-1---solving-puzzles-from-advent-of-code-2018---vote-steemplus |
category | utopian-io |
json_metadata | {} |
created | 2019-04-06 12:35:30 |
last_update | 2019-04-06 12:35:30 |
depth | 1 |
children | 0 |
last_payout | 2019-04-13 12:35: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 | 443 |
author_reputation | 247,952,188,232,400 |
root_title | "Learn how to program with Python #1 - Solving Puzzles from Advent of Code 2018" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 82,578,576 |
net_rshares | 0 |
#### Hi @steempytutorials! Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation! Your post is eligible for our upvote, thanks to our collaboration with @utopian-io! **Feel free to join our [@steem-ua Discord server](https://discord.gg/KpBNYGz)**
author | steem-ua |
---|---|
permlink | re-learn-how-to-program-with-python-1---solving-puzzles-from-advent-of-code-2018-20190405t222508z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.19"}" |
created | 2019-04-05 22:25:09 |
last_update | 2019-04-05 22:25:09 |
depth | 1 |
children | 0 |
last_payout | 2019-04-12 22:25:09 |
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 | 295 |
author_reputation | 23,214,230,978,060 |
root_title | "Learn how to program with Python #1 - Solving Puzzles from Advent of Code 2018" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 82,554,975 |
net_rshares | 0 |
Congratulations @steempytutorials! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) : <table><tr><td>https://steemitimages.com/60x70/http://steemitboard.com/@steempytutorials/posts.png?201904041735</td><td>You published more than 80 posts. Your next target is to reach 90 posts.</td></tr> </table> <sub>_You can view [your badges on your Steem Board](https://steemitboard.com/@steempytutorials) and compare to others on the [Steem Ranking](http://steemitboard.com/ranking/index.php?name=steempytutorials)_</sub> <sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub> To support your work, I also upvoted your post! **Do not miss the last post from @steemitboard:** <table><tr><td><a href="https://steemit.com/steemitboard/@steemitboard/the-steem-blockchain-survived-its-first-virus-plague"><img src="https://steemitimages.com/64x128/https://steemitimages.com/0x0/"></a></td><td><a href="https://steemit.com/steemitboard/@steemitboard/the-steem-blockchain-survived-its-first-virus-plague">The Steem blockchain survived its first virus plague!</a></td></tr></table> ###### [Vote for @Steemitboard as a witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1) to get one more award and increased upvotes!
author | steemitboard |
---|---|
permlink | steemitboard-notify-steempytutorials-20190405t192447000z |
category | utopian-io |
json_metadata | {"image":["https://steemitboard.com/img/notify.png"]} |
created | 2019-04-05 19:24:48 |
last_update | 2019-04-05 19:24:48 |
depth | 1 |
children | 0 |
last_payout | 2019-04-12 19:24: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 | 1,448 |
author_reputation | 38,975,615,169,260 |
root_title | "Learn how to program with Python #1 - Solving Puzzles from Advent of Code 2018" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 82,548,995 |
net_rshares | 0 |
Hey, @steempytutorials! **Thanks for contributing on Utopian**. Weβre already looking forward to your next contribution! **Get higher incentives and support Utopian.io!** Simply set @utopian.pay as a 5% (or higher) payout beneficiary on your contribution post (via [SteemPlus](https://chrome.google.com/webstore/detail/steemplus/mjbkjgcplmaneajhcbegoffkedeankaj?hl=en) or [Steeditor](https://steeditor.app)). **Want to chat? Join us on Discord https://discord.gg/h52nFrV.** <a href='https://steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1'>Vote for Utopian Witness!</a>
author | utopian-io |
---|---|
permlink | re-learn-how-to-program-with-python-1---solving-puzzles-from-advent-of-code-2018-20190406t053949z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.17"}" |
created | 2019-04-06 05:39:51 |
last_update | 2019-04-06 05:39:51 |
depth | 1 |
children | 0 |
last_payout | 2019-04-13 05:39:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 598 |
author_reputation | 152,955,367,999,756 |
root_title | "Learn how to program with Python #1 - Solving Puzzles from Advent of Code 2018" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 82,566,613 |
net_rshares | 0 |