 #### What Will I Learn? - You will learn to write an alarm program in Python language - You will learn to use the "while" loops - You will learn to use 'if, elif and else' functions from conditional states - You will learn to use the 'time' library and the 'localtime' module - You will improve your algorithm ability when writing programs #### Requirements - Python 3.6.5 - Pycharm or another text editors (python idle) #### Difficulty - Intermediate #### Links - [Python Download Link](https://www.python.org/downloads/) - [Pycharm Download Link](https://www.jetbrains.com/pycharm/download/#section=windows) - [My Github Repository Link (Python Samples2)](https://github.com/redart16/Python-samples2) #### Codes ``` print("""****************** Alarm Program ******************""") import time Ahour = int(input("Please enter the alarm hour:")) Aminute = int(input("Please enter the alarm minute:")) while True: LT = time.localtime(time.time()) if Ahour == LT.tm_hour and Aminute == LT.tm_min : print( "Time is:", LT.tm_hour, ":", LT.tm_min, "The alarm is ringing") break elif (LT.tm_min == 30 and LT.tm_sec ==1 ) or (LT.tm_min == 7 and LT.tm_sec ==1 ): rhour = Ahour - LT.tm_hour rminute= Aminute - LT.tm_min print( "Remaining to Alarm:", rhour, ":", rminute) else: pass print (" The Alarm Has been terminated") ``` #### Description In this lesson I will tell you how to write the Alarm application in Python language. We use the 'time' library when designing the alarm program algorithm. By using the 'locatime' module in this library, we instantly get the clock data of our computer into the program. The alarm starts by asking the user to enter the alarm time and minute. After this phase, we are beginning to test the alarm information that the user has entered in the 'while' loop. We check that the alarm clock entered in the test phase matches the local time of our computer. In this control phase we use 'if, elif and else' functions. You can see the details of these functions in the codes and videos we have done. We also learned not to get the duration of the alarm to be steady at certain intervals within the program. I hope that this content is useful for you. ##### Step -1 In the first step, we enter the name of our program and import the 'time' library  ##### Step -2 In the second step, we define our variables so that the user can enter the alarm time.  ##### Step -3 In the third step, we start the 'while' cycle according to the condition of 'True'.  ##### Step -4 In the fourth step, we set the conditions according to the alarm time that the user has entered and make sure that they are tested.  ##### Step -5 In the fifth step, we complete the program by typing the expression indicating the end of our program.  #### Video Tutorial https://www.youtube.com/watch?v=36eJUAvHl0o&feature=youtu.be #### Curriculum - This is the first part of the Python Video Tutorial Serie <br /><hr/><em>Posted on <a href="https://utopian.io/utopian-io/@redart/ptyhon-video-tutorial-1-alarm-program">Utopian.io - Rewarding Open Source Contributors</a></em><hr/>
author | redart | ||||||
---|---|---|---|---|---|---|---|
permlink | ptyhon-video-tutorial-1-alarm-program | ||||||
category | utopian-io | ||||||
json_metadata | "{"community":"utopian","app":"utopian/1.0.0","format":"markdown","repository":{"id":81598961,"name":"cpython","full_name":"python/cpython","html_url":"https://github.com/python/cpython","fork":false,"owner":{"login":"python"}},"pullRequests":[],"platform":"github","type":"video-tutorials","tags":["utopian-io","python","tutorial"],"users":["redart"],"links":["https://cdn.utopian.io/posts/03cb18957d012179050fb04935afc69d98fcpython_video_tutorial2.jpg","https://www.python.org/downloads/","https://www.jetbrains.com/pycharm/download/#section=windows","https://github.com/redart16/Python-samples2","https://cdn.utopian.io/posts/1056a198f3129d983f54f89c47e084899fc3step1.PNG","https://cdn.utopian.io/posts/3530e51d0e7ce32a3cd1cfb19be1870537a9step2.PNG","https://cdn.utopian.io/posts/abf3b6b4f0522b1058fa2a8e71b4b335c499step3.PNG","https://cdn.utopian.io/posts/383ecabf6fab20b2d5614fe3ea7ce531cd8fstep-4.PNG","https://cdn.utopian.io/posts/ddde20dc54dabc4661afef4134db9f156fcestep_5.PNG"],"image":["https://cdn.utopian.io/posts/03cb18957d012179050fb04935afc69d98fcpython_video_tutorial2.jpg","https://cdn.utopian.io/posts/1056a198f3129d983f54f89c47e084899fc3step1.PNG","https://cdn.utopian.io/posts/3530e51d0e7ce32a3cd1cfb19be1870537a9step2.PNG","https://cdn.utopian.io/posts/abf3b6b4f0522b1058fa2a8e71b4b335c499step3.PNG","https://cdn.utopian.io/posts/383ecabf6fab20b2d5614fe3ea7ce531cd8fstep-4.PNG","https://cdn.utopian.io/posts/ddde20dc54dabc4661afef4134db9f156fcestep_5.PNG"],"moderator":{"account":"rosatravels","time":"2018-04-24T10:18:09.833Z","pending":false,"reviewed":false,"flagged":true},"questions":{"voters":["espoem","rosatravels","bahadirbayin"],"answers":[{"question_id":"vtuts-1","answer_id":"vtuts-1-a-3","user":"espoem","influence":100},{"question_id":"vtuts-2","answer_id":"vtuts-2-a-3","user":"espoem","influence":100},{"question_id":"vtuts-3","answer_id":"vtuts-3-a-3","user":"espoem","influence":100},{"question_id":"vtuts-4","answer_id":"vtuts-4-a-3","user":"espoem","influence":100},{"question_id":"vtuts-5","answer_id":"vtuts-5-a-3","user":"espoem","influence":100},{"question_id":"vtuts-6","answer_id":"vtuts-6-a-2","user":"espoem","influence":100},{"question_id":"vtuts-7","answer_id":"vtuts-7-a-3","user":"espoem","influence":100},{"question_id":"c-1","answer_id":"c-1-a-3","user":"espoem","influence":100},{"question_id":"c-2","answer_id":"c-2-a-4","user":"espoem","influence":100},{"question_id":"vtuts-1","answer_id":"vtuts-1-a-3","user":"rosatravels","influence":75},{"question_id":"vtuts-2","answer_id":"vtuts-2-a-3","user":"rosatravels","influence":75},{"question_id":"vtuts-3","answer_id":"vtuts-3-a-4","user":"rosatravels","influence":75},{"question_id":"vtuts-4","answer_id":"vtuts-4-a-4","user":"rosatravels","influence":75},{"question_id":"vtuts-5","answer_id":"vtuts-5-a-3","user":"rosatravels","influence":75},{"question_id":"vtuts-6","answer_id":"vtuts-6-a-3","user":"rosatravels","influence":75},{"question_id":"vtuts-7","answer_id":"vtuts-7-a-3","user":"rosatravels","influence":75},{"question_id":"c-1","answer_id":"c-1-a-3","user":"rosatravels","influence":75},{"question_id":"c-2","answer_id":"c-2-a-4","user":"rosatravels","influence":75},{"question_id":"vtuts-1","answer_id":"vtuts-1-a-2","user":"bahadirbayin","influence":15},{"question_id":"vtuts-2","answer_id":"vtuts-2-a-2","user":"bahadirbayin","influence":15},{"question_id":"vtuts-3","answer_id":"vtuts-3-a-3","user":"bahadirbayin","influence":15},{"question_id":"vtuts-4","answer_id":"vtuts-4-a-2","user":"bahadirbayin","influence":15},{"question_id":"vtuts-5","answer_id":"vtuts-5-a-2","user":"bahadirbayin","influence":15},{"question_id":"vtuts-6","answer_id":"vtuts-6-a-2","user":"bahadirbayin","influence":15},{"question_id":"vtuts-7","answer_id":"vtuts-7-a-3","user":"bahadirbayin","influence":15},{"question_id":"c-1","answer_id":"c-1-a-2","user":"bahadirbayin","influence":15},{"question_id":"c-2","answer_id":"c-2-a-3","user":"bahadirbayin","influence":15}],"total_influence":0,"most_rated":[{"question_id":"vtuts-1","answer_id":"vtuts-1-a-3","influence":175,"voters":["espoem","rosatravels"]},{"question_id":"vtuts-2","answer_id":"vtuts-2-a-3","influence":175,"voters":["espoem","rosatravels"]},{"question_id":"vtuts-3","answer_id":"vtuts-3-a-3","influence":115,"voters":["espoem","bahadirbayin"]},{"question_id":"vtuts-4","answer_id":"vtuts-4-a-3","influence":100,"voters":["espoem"]},{"question_id":"vtuts-5","answer_id":"vtuts-5-a-3","influence":175,"voters":["espoem","rosatravels"]},{"question_id":"vtuts-6","answer_id":"vtuts-6-a-2","influence":115,"voters":["espoem","bahadirbayin"]},{"question_id":"vtuts-7","answer_id":"vtuts-7-a-3","influence":190,"voters":["espoem","rosatravels","bahadirbayin"]},{"question_id":"c-1","answer_id":"c-1-a-3","influence":175,"voters":["espoem","rosatravels"]},{"question_id":"c-2","answer_id":"c-2-a-4","influence":175,"voters":["espoem","rosatravels"]}]},"score":37.5,"total_influence":190,"staff_pick":null,"config":{"questions":[{"question":"How many substantial concepts does this tutorial address?","question_id":"vtuts-1","answers":[{"answer":"4-5 substantial concepts covered in the tutorial.","answer_id":"vtuts-1-a-1","value":10},{"answer":"2-3 substantial concepts covered in the tutorial.","answer_id":"vtuts-1-a-2","value":7},{"answer":"1 substantial concept covered in the tutorial.","answer_id":"vtuts-1-a-3","value":2},{"answer":"More than 5 substantial concepts covered in the tutorial.","answer_id":"vtuts-1-a-4","value":0}]},{"question":"How informative is the content included alongside the video?","question_id":"vtuts-2","answers":[{"answer":"Exceptionally good text and, when applicable, images for concepts covered.","answer_id":"vtuts-2-a-1","value":20},{"answer":"Thorough text and, if applicable, images for concepts covered.","answer_id":"vtuts-2-a-2","value":18},{"answer":"Minimal text and images.","answer_id":"vtuts-2-a-3","value":10},{"answer":"No or very little text and images.","answer_id":"vtuts-2-a-4","value":0}]},{"question":"Is the video clearly prepared and structured?","question_id":"vtuts-3","answers":[{"answer":"Both the presenter and the video are exceptionally organized, structured and presented","answer_id":"vtuts-3-a-1","value":20},{"answer":"Presenter is prepared and video concepts are structured.","answer_id":"vtuts-3-a-2","value":16},{"answer":"Presenter has moments when he/she seems unprepared and/or the content seems to be unstructured.","answer_id":"vtuts-3-a-3","value":8},{"answer":"Presenter seems unprepared and/or video is unstructured.","answer_id":"vtuts-3-a-4","value":0}]},{"question":"Does the contributor provide supplementary resources, such as code and sample files in the contribution post or a GitHub repository?","question_id":"vtuts-4","answers":[{"answer":"Contributor provided exceptional supplementary resources.","answer_id":"vtuts-4-a-1","value":5},{"answer":"Contributor provided good supplementary resources.","answer_id":"vtuts-4-a-2","value":4},{"answer":"Contributor provided minimal supplementary resources.","answer_id":"vtuts-4-a-3","value":1.5},{"answer":"No supplementary resources were provided.","answer_id":"vtuts-4-a-4","value":0}]},{"question":"How would you describe the sound quality of the video?","question_id":"vtuts-5","answers":[{"answer":"Sound quality is excellent and sounds professionally produced.","answer_id":"vtuts-5-a-1","value":10},{"answer":"The sound is clear and understandable with complimenting background music / sounds.","answer_id":"vtuts-5-a-2","value":8},{"answer":"Low quality of sound and/or mildly distracting background noise.","answer_id":"vtuts-5-a-3","value":3},{"answer":"Distracting background noise and/or very low quality recording.","answer_id":"vtuts-5-a-4","value":0}]},{"question":"Does the presenter speak clearly and is easy to understand?","question_id":"vtuts-6","answers":[{"answer":"Yes, presenter’s speech is highly engaging and professional.","answer_id":"vtuts-6-a-1","value":10},{"answer":"Yes, the voice-over is easy to understand.","answer_id":"vtuts-6-a-2","value":8},{"answer":"Only some of the voice-over was comprehensible.","answer_id":"vtuts-6-a-3","value":4},{"answer":"The voice-over was impossible to understand / not included at all.","answer_id":"vtuts-6-a-4","value":0}]},{"question":"Are the title of the tutorial and the concepts being covered present on the video in text overlay form?","question_id":"vtuts-7","answers":[{"answer":"Title and concepts covered are present in the video at all times in a non-disruptive way.","answer_id":"vtuts-7-a-1","value":5},{"answer":"Title and concepts covered appear temporarily when they are addressed.","answer_id":"vtuts-7-a-2","value":4.5},{"answer":"Only the title is presented and the concepts shown are not addressed in overlay text.","answer_id":"vtuts-7-a-3","value":2},{"answer":"Neither title nor concepts covered are presented in the video text overlay.","answer_id":"vtuts-7-a-4","value":0}]},{"question":"How would you describe the formatting, language and overall presentation of the post?","question_id":"c-1","answers":[{"answer":"The quality of the post is fantastic.","answer_id":"c-1-a-1","value":10},{"answer":"The post is of very good quality.","answer_id":"c-1-a-2","value":7},{"answer":"The post is poorly written and/or formatted, but readable.","answer_id":"c-1-a-3","value":3},{"answer":"The post is really hard to read and the content is barely understandable.","answer_id":"c-1-a-4","value":0}]},{"question":"How would you rate the overall value of this contribution on the open source community and ecosystem?","question_id":"c-2","answers":[{"answer":"This contribution brings great and impactful value, and can be used for applications outside the specific project.","answer_id":"c-2-a-1","value":20},{"answer":"This contribution adds significant value to the open source community and ecosystem, or is of critical importance to the specific project.","answer_id":"c-2-a-2","value":18},{"answer":"This contribution adds some value to the open source community and ecosystem or is only valuable to the specific project.","answer_id":"c-2-a-3","value":11},{"answer":"This contribution adds no value to the open source community and ecosystem or the specific project.","answer_id":"c-2-a-4","value":0}]}]}}" | ||||||
created | 2018-04-23 17:43:45 | ||||||
last_update | 2018-04-24 10:18:09 | ||||||
depth | 0 | ||||||
children | 2 | ||||||
last_payout | 2018-04-30 17:43:45 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 2.660 HBD | ||||||
curator_payout_value | 0.088 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 3,739 | ||||||
author_reputation | 6,723,529,098,076 | ||||||
root_title | "Python Video Tutorial 1- Alarm Program" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 51,720,317 | ||||||
net_rshares | 466,917,650,534 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
thatmemeguy | 0 | 4,791,647,736 | 50% | ||
dyancuex | 0 | 958,085,295 | 50% | ||
cryptophunk | 0 | 270,238,107 | 50% | ||
toninux | 0 | 531,869,284 | 50% | ||
jdc | 0 | 1,041,565,909 | 20% | ||
bargolis | 0 | 715,595,944 | 5% | ||
ilyastarar | 0 | 24,552,141,860 | 50% | ||
mahdiyari | 0 | 9,353,039,094 | 10% | ||
ronimm | 0 | 9,967,265,380 | 100% | ||
mufasatoldyou | 0 | 7,715,119,220 | 100% | ||
saksham | 0 | 508,074,097 | 37% | ||
simonluisi | 0 | 2,625,192,920 | 100% | ||
thinkkniht | 0 | 99,841,501 | 75% | ||
ewuoso | 0 | 4,139,466,792 | 20% | ||
inquiringtimes | 0 | 103,444,798,384 | 50% | ||
jfuenmayor96 | 0 | 2,444,470,316 | 50% | ||
instantania.cat | 0 | 1,220,185,278 | 50% | ||
harshallele | 0 | 4,909,919,749 | 50% | ||
jesdn16 | 0 | 2,386,747,641 | 100% | ||
xtramedium | 0 | 348,927,991 | 50% | ||
odibezeking | 0 | 243,196,241 | 100% | ||
stoodkev | 0 | 18,630,718,302 | 10% | ||
luisrod | 0 | 116,014,491 | 15% | ||
ansonoxy | 0 | 1,724,551,697 | 100% | ||
eastmael | 0 | 48,615,133,271 | 100% | ||
hillaryaa | 0 | 1,138,985,826 | 100% | ||
espoem | 0 | 0 | 0% | ||
maneki-neko | 0 | 678,228,473 | 1% | ||
silasvogt | 0 | 223,579,955 | 50% | ||
zulfan88 | 0 | 243,188,095 | 50% | ||
idlebright | 0 | 3,155,989,615 | 50% | ||
odebgaming | 0 | 305,974,195 | 100% | ||
steaknsteem | 0 | 1,865,633,540 | 50% | ||
moorkedi | 0 | 1,660,431,290 | 100% | ||
kimaben | 0 | 501,209,376 | 25% | ||
redart | 0 | 30,026,367,832 | 100% | ||
jpirulo | 0 | 602,462,309 | 100% | ||
kslo | 0 | 2,381,388,823 | 50% | ||
bahadirbayin | 0 | 206,022,382 | 100% | ||
nathalie13 | 0 | 885,131,353 | 100% | ||
not-a-bird | 0 | 4,691,420,061 | 50% | ||
adhew | 0 | 61,124,335 | 10% | ||
bitopia | 0 | 1,455,191,997 | 100% | ||
eleonardo | 0 | 161,616,238 | 10% | ||
evilest-fiend | 0 | 2,429,781,294 | 100% | ||
shenoy | 0 | 10,151,512,488 | 10% | ||
iqbaladan | 0 | 6,882,195,971 | 50% | ||
checkthisout | 0 | 822,373,978 | 50% | ||
navx | 0 | 2,042,164,015 | 70% | ||
handfree42 | 0 | 104,028,409 | 50% | ||
family.app | 0 | 97,559,321 | 100% | ||
not-a-cat | 0 | 1,079,808,114 | 100% | ||
maphics | 0 | 104,709,791 | 100% | ||
sebastiengllmt | 0 | 307,095,054 | 50% | ||
utopian-1up | 0 | 5,088,675,302 | 100% | ||
ewq | 0 | 745,289,769 | 3% | ||
phgnomo | 0 | 921,638,286 | 15% | ||
carsonroscoe | 0 | 11,776,518,614 | 80% | ||
neexal | 0 | 379,113,636 | 100% | ||
animefanrd | 0 | 51,295,696 | 10% | ||
burakdrms93 | 0 | 2,383,856,778 | 100% | ||
camillius | 0 | 66,318,457 | 6% | ||
zlatkamrs | 0 | 326,994,865 | 70% | ||
salahudeen | 0 | 122,688,434 | 35% | ||
amosbastian | 0 | 14,776,803,982 | 50% | ||
mountainjewel | 0 | 1,373,767,415 | 5% | ||
yourmercury | 0 | 540,385,869 | 100% | ||
acrywhif | 0 | 3,444,433,894 | 80% | ||
xplore | 0 | 706,909,583 | 50% | ||
proffgodswill | 0 | 55,176,656 | 10% | ||
sweeverdev | 0 | 1,052,002,634 | 50% | ||
kodeblacc | 0 | 3,265,907,796 | 50% | ||
isacastillor | 0 | 1,079,013,647 | 95% | ||
devilonwheels | 0 | 1,994,551,871 | 10% | ||
jerybanfield | 0 | 5,759,589,170 | 100% | ||
jjay | 0 | 681,546,765 | 100% | ||
gwys | 0 | 389,949,828 | 50% | ||
charisman | 0 | 152,809,345 | 50% | ||
rhotimee | 0 | 373,262,465 | 50% | ||
brusd | 0 | 69,062,141 | 13% | ||
jrmiller87 | 0 | 2,387,908,881 | 100% | ||
solomon507 | 0 | 308,669,860 | 50% | ||
patatesyiyen | 0 | 58,840,185 | 12.5% | ||
deejee | 0 | 122,966,840 | 20% | ||
rsteem | 0 | 342,032,977 | 50% | ||
naturallife | 0 | 1,888,309,983 | 88% | ||
onin91 | 0 | 438,247,259 | 50% | ||
isabella394 | 0 | 2,603,181,513 | 100% | ||
emailbox19149 | 0 | 187,055,358 | 50% | ||
videosteemit | 0 | 1,543,220,926 | 25% | ||
sargoon | 0 | 6,207,346,280 | 100% | ||
misinaelizaveta | 0 | 440,605,569 | 100% | ||
lemony-cricket | 0 | 11,028,847,887 | 20% | ||
saifannur-mzy | 0 | 262,905,608 | 50% | ||
yeswanth | 0 | 611,307,262 | 100% | ||
orlandumike | 0 | 3,899,796,371 | 25% | ||
kaking | 0 | 226,274,212 | 50% | ||
exploreand | 0 | 1,178,382,815 | 25% | ||
petvalbra | 0 | 615,096,332 | 100% | ||
steemassistant | 0 | 430,030,360 | 100% | ||
hmctrasher | 0 | 407,025,052 | 10% | ||
photohunter1 | 0 | 4,032,652,555 | 100% | ||
photohunter3 | 0 | 3,184,975,480 | 100% | ||
photohunter4 | 0 | 3,173,131,728 | 100% | ||
photohunter5 | 0 | 3,165,860,320 | 100% | ||
howtosteem | 0 | 3,307,536,392 | 100% | ||
livsky | 0 | 101,920,633 | 50% | ||
polbot | 0 | 1,196,754,558 | 100% | ||
roj | 0 | 2,591,301,215 | 100% | ||
raoul.poenar | 0 | 3,438,472,996 | 50% | ||
aacr07 | 0 | 299,500,625 | 100% | ||
andiepumpgun | 0 | 244,620,360 | 50% | ||
aderemi01 | 0 | 1,774,721,456 | 50% | ||
edgargonzalez | 0 | 0 | 100% | ||
sampath94 | 0 | 230,430,160 | 50% | ||
killbill73 | 0 | 186,468,331 | 50% | ||
amirdesaingrafis | 0 | 544,043,813 | 50% | ||
fai.zul | 0 | 281,498,002 | 50% | ||
nightdragon | 0 | 223,523,633 | 50% | ||
aliyu-s | 0 | 478,765,963 | 50% | ||
muratti | 0 | 58,063,402 | 10% | ||
flinter | 0 | 156,312,285 | 50% | ||
mwfiae | 0 | 3,373,952,147 | 10% | ||
opulence | 0 | 1,806,546,246 | 50% | ||
phasma | 0 | 122,612,788 | 20% | ||
pixelproperty | 0 | 3,034,889,149 | 100% | ||
fr4mer | 0 | 565,317,850 | 100% | ||
nonsqtr | 0 | 483,344,375 | 50% | ||
crispycoinboys | 0 | 2,128,133,179 | 30% | ||
zcool | 0 | 114,609,987 | 10% | ||
gwapoaller | 0 | 307,097,758 | 50% | ||
carloniere | 0 | 81,647,264 | 50% | ||
bluestorm | 0 | 460,899,167 | 75% | ||
daszod | 0 | 482,110,985 | 100% | ||
jayo | 0 | 162,456,844 | 50% | ||
sugandhaseth | 0 | 613,766,617 | 100% | ||
pepememes | 0 | 154,794,261 | 50% | ||
wealth4good | 0 | 295,489,027 | 5% | ||
esme-svh | 0 | 251,180,194 | 50% | ||
fachod | 0 | 174,187,697 | 50% | ||
lsanek | 0 | 290,798,379 | 50% | ||
lykia | 0 | 291,098,587 | 50% | ||
realness | 0 | 306,394,150 | 50% | ||
flugbot | 0 | 122,683,991 | 100% | ||
lemcriq | 0 | 57,226,213 | 20% | ||
ernoldlvb | 0 | 109,580,630 | 50% | ||
gydronium | 0 | 137,541,769 | 30% | ||
dave-verreault | 0 | 408,326,200 | 50% | ||
sainiulma | 0 | 263,223,088 | 100% | ||
hmayak | 0 | 140,839,257 | 100% | ||
ferryfansuri | 0 | 180,746,726 | 50% | ||
xorb | 0 | 518,078,518 | 100% | ||
editorspicks | 0 | 61,230,367 | 50% | ||
cryptocopy | 0 | 311,938,748 | 50% | ||
artsyunicorn | 0 | 230,415,290 | 50% | ||
steemfunder | 0 | 282,043,317 | 50% | ||
solpaman | 0 | 278,102,398 | 50% | ||
steemthemer | 0 | 461,500,071 | 100% | ||
swaze | 0 | 305,642,588 | 50% | ||
pinkyangel | 0 | 281,178,851 | 50% | ||
blancoazx | 0 | 210,876,896 | 80% |
Thank you for your contribution. It has been reviewed and scored. @redart, you need to work on the tutorial itself because the tutorial should bring insights into the Open Source Project so that learners can use the technical features after watching your video. You also need to work on the tutorial by presenting clearly the concepts. Presently, there is no structure in the presentation although you try to lay out the steps for learners to follow. Try to work on a flow in the video so that your users can stay engaged as they learn from your video. Write out a draft or script for yourself to follow. You need to edit out the parts where your presentation brings no significant value to the tutorial. If you have questions, please contact us at discord. ---------------------------------------------------------------------- Need help? Write a ticket on https://support.utopian.io. Chat with us on [Discord](https://discord.gg/uTyJkNm). **[[utopian-moderator]](https://utopian.io/moderators)**
author | rosatravels | ||||||
---|---|---|---|---|---|---|---|
permlink | re-redart-ptyhon-video-tutorial-1-alarm-program-20180424t084105448z | ||||||
category | utopian-io | ||||||
json_metadata | {"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"} | ||||||
created | 2018-04-24 08:41:09 | ||||||
last_update | 2018-04-24 08:41:09 | ||||||
depth | 1 | ||||||
children | 1 | ||||||
last_payout | 2018-05-01 08:41: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 | 1,007 | ||||||
author_reputation | 422,827,447,688,168 | ||||||
root_title | "Python Video Tutorial 1- Alarm Program" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 51,828,060 | ||||||
net_rshares | 0 |
Thanks for your valuable comments. I will improve myself by taking into what you say and I will make my contributions more useful.
author | redart | ||||||
---|---|---|---|---|---|---|---|
permlink | re-rosatravels-re-redart-ptyhon-video-tutorial-1-alarm-program-20180424t085339819z | ||||||
category | utopian-io | ||||||
json_metadata | {"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"} | ||||||
created | 2018-04-24 08:53:39 | ||||||
last_update | 2018-04-24 08:53:39 | ||||||
depth | 2 | ||||||
children | 0 | ||||||
last_payout | 2018-05-01 08:53:39 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 130 | ||||||
author_reputation | 6,723,529,098,076 | ||||||
root_title | "Python Video Tutorial 1- Alarm Program" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 51,829,697 | ||||||
net_rshares | 0 |