create account

Learn C++ With Shello! — Programming Assumptions Versus Actuality: Diary #1 by shello

View this thread on: hive.blogpeakd.comecency.com
· @shello · (edited)
$17.58
Learn C++ With Shello! — Programming Assumptions Versus Actuality: Diary #1
I waited a couple of years to have the prerequisites in place to be able to take this level of programming in college. With the continued development and interest rising in Blockchain technology in recent years, I see no better time then now to begin learning about object-oriented programming languages—in my case C++.

<center>![Learnc++shello.png](https://cdn.steemitimages.com/DQmW3CegWYZdV18LAB7mMrkUfjaZK48PCFLsstDcYhRDoG8/Learnc++shello.png)</center>

In this *Steemit Exclusive,* I will be providing an in-depth look at what I'm learning in this class, what personal challenges I am facing, code snippets, and the philosophy becoming a programmer. Whether you are interested in game development, or applications that run on a blockchain, this is a skill necessary to develop. Although I might not be able to make you into a coder,  I want to share some of what I'm learning with others! 

---

# A Challenge Like No Other
I attend Post University's online accelerated program, which means that instead of having a course over the span of a semester, I get 8 weeks before my classes change. I was not expecting such a large workload for my first week of school—it blew my mind.  

<center>![week 1 homework.jpg](https://cdn.steemitimages.com/DQmfPjBCzjD35X7zX1uDrky1wY6prfybwDK3D22sfR7P2za/week%201%20homework.jpg)</center>

My classmates and myself were assigned **80 pages of reading,** 3 discussions, and 4 additional programming assignments for our first week. After actually going through each part of the homework, it was discovered that I needed to write 7 miniature applications and debug one in the compiler of my choice. I'm using *Visual Studio 11 Express.* 

# What it Takes
I don't know about you, but this is a lot of information to absorb and memorize... in a week's time. This is the type of field I signed up for though. Programming in general is not a career where you can receive "on-site training", rather you need to know everything *like the back of your hand.* "Practice practice practice" has found a new meaning in my life. 

I can now see why we're given a high amount of homework—I no longer have to look up how to write certain statements. I apply everything I learn over and over, dedicating my long-term memory towards getting it down.  

<center>![ccfb568e058a7a6ba367339dce8350ca.jpg](https://cdn.steemitimages.com/DQmWVFWZtkcnuuvgAo1Wi9QLboqYNHD6Me4zLhNf95LSBJ1/ccfb568e058a7a6ba367339dce8350ca.jpg)</center><br><center>[Ed from Cowboy Bebop | Pintrest](https://www.pinterest.co.uk/pin/348466089889697228/)</center> 

# Programming Common Misconceptions
I had made many assumptions on how programming works when coming into this class, many of which were **incorrect and uninformed.** I would like to clear some of these up for anyone that's ever thought; *"Hey, I want to become a programmer,"* but like myself thought it was too difficult to learn.  

* **Adopting the mentality of working smarter.** <br>It's a programmer's job to be able to make an application that serves the intended functions, **using the least amount of code possible.** This isn't to be lazy, but to efficiently solve problems, without creating (many) more in the process. 

* **One programmer doesn't write everything.** <br>Larger programs and applications typically have **a team** of developers that each write individual modules (parts) that get put into the main application later on. A person is usually assigned to write **a single feature,** not the whole thing. Because of this, it's unlikely that someone will take another person's code and rewrite it "their way" for the sake of doing so. People and businesses don't have time for that. 

* <b>A lot of programming <i>is</i> about styling.</b><br> No, this is not to "flex" on others. Aside from *Language Syntax,* a lot of how a code is presented is styled to make it easier to read, and understand where specific functions are. You're already using syntax here when you use **Markdown** on Steemit! You follow certain language rules to format your posts properly, this is just a little bit different. 

Another thing to keep in mind, is that workplaces and teams will normally prefer a certain *style / way* over another of writing code, to keep a program consistent throughout. That way, when debugging and changes need to be made, it becomes easier to identify what in particular needs to be changed.

<center>![opnion.png](https://cdn.steemitimages.com/DQmcVs9ZCfJVDz4QAcYMUcftTsPU9RsKMxwZBKCrW67AjA7/opnion.png)</center>

One of my friends left me this comment on my other social media. It doesn't work like this. Programmers need to learn the different ways of writing expressions so that they can be read and understood by others, although a person's style can sometimes be a personal preference for an application that they are making in a solo effort. 

<center>![e8b3a0244b14d5563b3868da15bec8f7.jpg](https://cdn.steemitimages.com/DQmUGWm749qbzBEpmsLCVXfx4bRUBPtKX1gHy5Vnq44EZGK/e8b3a0244b14d5563b3868da15bec8f7.jpg)</center><br><center>[Fry from Futurama | Bildergebnis für](https://www.pinterest.com.au/pin/421508846366467913/)</center>

# The "Copy/Paste" Myth
Good programs and functions are recycled often *even in other programs!* There appears to be a stigma about "copy/pasted" code which is heavily misunderstood. When a smaller program/module is written clearly, and is useful, it's common to reuse it later on somewhere else. This way, the same function doesn't have to be written again everytime that a program is made that uses it. 

There are even many "pre-written" header files a programmer can add that are pre-packaged with compilers so that a programmer can focus on their project without the need to worry about hardware or basic functions (like I/O from a user's input, arithmetic, all the way up to speech engines). 

# Less Scary Then I Thought it Was
The best way that I can relate learning programming is akin to learning a foreign language, then writing a book with other people that *makes it look like* it was written by a single author. If you can learn a second language, you can learn to be a programmer! 

<center>![giphy.gif](https://cdn.steemitimages.com/DQmZKgioUgLS7DCubxFj19x91U5YagkwSJSysLTzZwWmHeA/giphy.gif)</center><br><center>[Sora and Shiro from No Game No Life | Giphy](https://giphy.com/gifs/computer-ud66bBTpZMoG4)</center>

---
---

# Remember!
* You'll need a lot of continuous practice to develop this skill to a second-nature degree.
* You can have a preference but know the different ways to write the same thing, so you can work with others.
* Your own code's scope is usually NOT the entirety of the program, so you can focus where you need to.
* Copy/paste is okay and encouraged, just don't steal someone's custom work and say it's yours. Having a solid and working foundation is a good thing. 

---
---

# Coming up Next!
I will be covering my understanding (and not just the definition of) some programming terminology. I will also be providing some real-world counterparts and visualizations to help explain what different parts of a program are like. I believe that everything can be explained in a way that anyone else can understand! 

<center><b>Let me know what you think about this article in the comments below! :D</b></center>

<center>https://steemitimages.com/DQmR694e8spXrNmzcibAR5G4oLiuDYjuvmNqDFQMU7h1nVq/skyleap%20is%20the%20best.jpg<br><br>https://steemitimages.com/0x0/https://cdn.steemitimages.com/0x0/https://cdn.steemitimages.com/0x0/https://cdn.steemitimages.com/0x0/https://steemitimages.com/DQmdDHYbj2ZJasXzjsghkZqrkhg9zPSdbfangGMr5GDzA4b/SHELLO.jpg<br>Thank you @bollutech for this art!<br><br>https://steemitimages.com/DQmcSUVfnBPBDoBHB62DqFrptknnbKjVBJuxRu2VPicXCDc/shello-steemit.gif</center>
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authorshello
permlinklearn-c-with-shello-programming-assumptions-versus-actuality-diary-1
categoryprogramming
json_metadata{"tags":["programming","cplusplus","technology","blockchain","blog"],"users":["bollutech"],"image":["https://cdn.steemitimages.com/DQmW3CegWYZdV18LAB7mMrkUfjaZK48PCFLsstDcYhRDoG8/Learnc++shello.png","https://cdn.steemitimages.com/DQmfPjBCzjD35X7zX1uDrky1wY6prfybwDK3D22sfR7P2za/week%201%20homework.jpg","https://cdn.steemitimages.com/DQmWVFWZtkcnuuvgAo1Wi9QLboqYNHD6Me4zLhNf95LSBJ1/ccfb568e058a7a6ba367339dce8350ca.jpg","https://cdn.steemitimages.com/DQmcVs9ZCfJVDz4QAcYMUcftTsPU9RsKMxwZBKCrW67AjA7/opnion.png","https://cdn.steemitimages.com/DQmUGWm749qbzBEpmsLCVXfx4bRUBPtKX1gHy5Vnq44EZGK/e8b3a0244b14d5563b3868da15bec8f7.jpg","https://cdn.steemitimages.com/DQmZKgioUgLS7DCubxFj19x91U5YagkwSJSysLTzZwWmHeA/giphy.gif","https://steemitimages.com/DQmR694e8spXrNmzcibAR5G4oLiuDYjuvmNqDFQMU7h1nVq/skyleap%20is%20the%20best.jpg","https://steemitimages.com/0x0/https://cdn.steemitimages.com/0x0/https://cdn.steemitimages.com/0x0/https://cdn.steemitimages.com/0x0/https://steemitimages.com/DQmdDHYbj2ZJasXzjsghkZqrkhg9zPSdbfangGMr5GDzA4b/SHELLO.jpg","https://steemitimages.com/DQmcSUVfnBPBDoBHB62DqFrptknnbKjVBJuxRu2VPicXCDc/shello-steemit.gif"],"links":["https://www.pinterest.co.uk/pin/348466089889697228/","https://www.pinterest.com.au/pin/421508846366467913/","https://giphy.com/gifs/computer-ud66bBTpZMoG4"],"app":"steemit/0.1","format":"markdown"}
created2018-07-02 09:06:06
last_update2018-07-02 09:09:51
depth0
children21
last_payout2018-07-09 09:06:06
cashout_time1969-12-31 23:59:59
total_payout_value13.911 HBD
curator_payout_value3.670 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7,765
author_reputation16,533,387,036,996
root_title"Learn C++ With Shello! — Programming Assumptions Versus Actuality: Diary #1"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id63,106,344
net_rshares7,417,936,454,015
author_curate_reward""
vote details (31)
@a-0-0 ·
#
# upvote for me please? https://steemit.com/news/@bible.com/6h36cq
#
properties (22)
authora-0-0
permlinkre-shello-learn-c-with-shello-programming-assumptions-versus-actuality-diary-1-20180702t090638815z
categoryprogramming
json_metadata{"tags":["programming"],"links":["https://steemit.com/news/@bible.com/6h36cq"],"app":"steemit/0.1"}
created2018-07-02 09:06:36
last_update2018-07-02 09:06:36
depth1
children0
last_payout2018-07-09 09:06: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_length70
author_reputation-4,863,186,238,920
root_title"Learn C++ With Shello! — Programming Assumptions Versus Actuality: Diary #1"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id63,106,404
net_rshares0
@apsu ·
$0.05
What would you call the specific benefits of using C++ compared to other languages? And do you prefer C++ over others?
👍  
properties (23)
authorapsu
permlinkre-shello-learn-c-with-shello-programming-assumptions-versus-actuality-diary-1-20180703t200823932z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-07-03 20:08:24
last_update2018-07-03 20:08:24
depth1
children3
last_payout2018-07-10 20:08:24
cashout_time1969-12-31 23:59:59
total_payout_value0.037 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length118
author_reputation74,660,349,339,185
root_title"Learn C++ With Shello! — Programming Assumptions Versus Actuality: Diary #1"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id63,290,566
net_rshares21,865,322,309
author_curate_reward""
vote details (1)
@shello ·
$0.03
That's a good question Apsu! I think that I like that with compiled languages preload everything x'D could you imagine if we had Monster Hunter or Fortnite tun in Java??? 

I prefer C++ because you can easily compare objects to real-world counterparts c:
👍  
properties (23)
authorshello
permlinkre-apsu-re-shello-learn-c-with-shello-programming-assumptions-versus-actuality-diary-1-20180704t210034397z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-07-04 21:12:42
last_update2018-07-04 21:12:42
depth2
children2
last_payout2018-07-11 21:12:42
cashout_time1969-12-31 23:59:59
total_payout_value0.025 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length254
author_reputation16,533,387,036,996
root_title"Learn C++ With Shello! — Programming Assumptions Versus Actuality: Diary #1"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id63,437,478
net_rshares16,423,755,431
author_curate_reward""
vote details (1)
@apsu ·
$0.04
Oh I could pretend to know something and compare "Well how about ?? or ?? then?"

... but I know hardly any coding languages, so maybe C++ is ok :D
👍  
properties (23)
authorapsu
permlinkre-shello-re-apsu-re-shello-learn-c-with-shello-programming-assumptions-versus-actuality-diary-1-20180707t205902135z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-07-07 20:59:00
last_update2018-07-07 20:59:00
depth3
children1
last_payout2018-07-14 20:59:00
cashout_time1969-12-31 23:59:59
total_payout_value0.032 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length147
author_reputation74,660,349,339,185
root_title"Learn C++ With Shello! — Programming Assumptions Versus Actuality: Diary #1"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id63,823,794
net_rshares22,811,045,295
author_curate_reward""
vote details (1)
@hardaeborla ·
$0.05
@shello.. I have been waiting so long to learn programming. I am happy you will take us through. I can't just wait for this to happen 💗🙌😁
👍  
properties (23)
authorhardaeborla
permlinkre-shello-learn-c-with-shello-programming-assumptions-versus-actuality-diary-1-20180704t170551497z
categoryprogramming
json_metadata{"tags":["programming"],"users":["shello"],"app":"steemit/0.1"}
created2018-07-04 17:05:57
last_update2018-07-04 17:05:57
depth1
children2
last_payout2018-07-11 17:05:57
cashout_time1969-12-31 23:59:59
total_payout_value0.035 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length137
author_reputation75,533,986,829,834
root_title"Learn C++ With Shello! — Programming Assumptions Versus Actuality: Diary #1"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id63,413,479
net_rshares21,371,190,732
author_curate_reward""
vote details (1)
@shello ·
Thank you for the love and support @hardaeborla!

I don't know how much I can teach, but it's definitely worth the try :3
👍  
properties (23)
authorshello
permlinkre-hardaeborla-re-shello-learn-c-with-shello-programming-assumptions-versus-actuality-diary-1-20180704t225115030z
categoryprogramming
json_metadata{"tags":["programming"],"users":["hardaeborla"],"app":"steemit/0.1"}
created2018-07-04 23:03:24
last_update2018-07-04 23:03:24
depth2
children1
last_payout2018-07-11 23:03:24
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_length121
author_reputation16,533,387,036,996
root_title"Learn C++ With Shello! — Programming Assumptions Versus Actuality: Diary #1"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id63,446,604
net_rshares287,785,018
author_curate_reward""
vote details (1)
@hardaeborla ·
Yeah.. You are welcome... I will be looking forward to learning from you 😁🙌
properties (22)
authorhardaeborla
permlinkre-shello-re-hardaeborla-re-shello-learn-c-with-shello-programming-assumptions-versus-actuality-diary-1-20180705t060207810z
categoryprogramming
json_metadata{"tags":["programming"],"community":"busy","app":"busy/2.5.0"}
created2018-07-05 06:02:15
last_update2018-07-05 06:02:15
depth3
children0
last_payout2018-07-12 06:02: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_length75
author_reputation75,533,986,829,834
root_title"Learn C++ With Shello! — Programming Assumptions Versus Actuality: Diary #1"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id63,480,884
net_rshares0
@hardaeborla ·
$0.05
I also hear some people saying programing is kind of boring from the beginning and it becomes interesting when one practice it continuously. What are the basic knowledge I must have before learning programming?
👍  
properties (23)
authorhardaeborla
permlinkre-shello-learn-c-with-shello-programming-assumptions-versus-actuality-diary-1-20180704t170757287z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-07-04 17:08:06
last_update2018-07-04 17:08:06
depth1
children2
last_payout2018-07-11 17:08:06
cashout_time1969-12-31 23:59:59
total_payout_value0.035 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length210
author_reputation75,533,986,829,834
root_title"Learn C++ With Shello! — Programming Assumptions Versus Actuality: Diary #1"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id63,413,686
net_rshares20,877,059,154
author_curate_reward""
vote details (1)
@shello ·
It can be! I had to take many other computer/ technology classes before taking any where I actually code. I will try to cover a little bit more on this subject on my next post! :D
👍  
properties (23)
authorshello
permlinkre-hardaeborla-re-shello-learn-c-with-shello-programming-assumptions-versus-actuality-diary-1-20180704t225311802z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-07-04 23:05:18
last_update2018-07-04 23:05:18
depth2
children1
last_payout2018-07-11 23:05:18
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_length179
author_reputation16,533,387,036,996
root_title"Learn C++ With Shello! — Programming Assumptions Versus Actuality: Diary #1"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id63,446,744
net_rshares293,908,104
author_curate_reward""
vote details (1)
@hardaeborla ·
I will be expecting 💗
properties (22)
authorhardaeborla
permlinkre-shello-re-hardaeborla-re-shello-learn-c-with-shello-programming-assumptions-versus-actuality-diary-1-20180705t060113949z
categoryprogramming
json_metadata{"tags":["programming"],"community":"busy","app":"busy/2.5.0"}
created2018-07-05 06:01:15
last_update2018-07-05 06:01:15
depth3
children0
last_payout2018-07-12 06:01: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_length21
author_reputation75,533,986,829,834
root_title"Learn C++ With Shello! — Programming Assumptions Versus Actuality: Diary #1"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id63,480,787
net_rshares0
@kubbyelizabeth ·
$0.04
This is great news in great timing. The fear of learning is real, but you make it sound less scary. Keep us updated on your learning. Soon you’ll be writing code with easy
👍  
properties (23)
authorkubbyelizabeth
permlinkre-shello-learn-c-with-shello-programming-assumptions-versus-actuality-diary-1-20180702t102420982z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-07-02 10:24:21
last_update2018-07-02 10:24:21
depth1
children1
last_payout2018-07-09 10:24:21
cashout_time1969-12-31 23:59:59
total_payout_value0.034 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length171
author_reputation37,451,356,924,198
root_title"Learn C++ With Shello! — Programming Assumptions Versus Actuality: Diary #1"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id63,114,095
net_rshares19,763,639,291
author_curate_reward""
vote details (1)
@shello ·
Thank you Kubbs!~

Forreal learning can look like a huge challenge, but I think it really comes down to how it's approached. I shall, and I really hope so <3
properties (22)
authorshello
permlinkre-kubbyelizabeth-re-shello-learn-c-with-shello-programming-assumptions-versus-actuality-diary-1-20180702t203940316z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-07-02 20:51:45
last_update2018-07-02 20:51:45
depth2
children0
last_payout2018-07-09 20:51:45
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_length157
author_reputation16,533,387,036,996
root_title"Learn C++ With Shello! — Programming Assumptions Versus Actuality: Diary #1"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id63,185,852
net_rshares0
@pangoli ·
$0.04
Gad to see you've taken on something this challenging Shello. I've haboured the thought of learning C++ for a long time now, but i haven't acted. Only downloaded a few videos and materials and haven't so much as seen past the first 10 minutes. lol. 

Maybe this might drive me to work on myself too. Nice tips here btw. Somehow, we share some misconceptions about programming. 

Excited. Keep us updated, friend. :-D.
👍  
properties (23)
authorpangoli
permlinkre-shello-learn-c-with-shello-programming-assumptions-versus-actuality-diary-1-20180702t123232761z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-07-02 12:32:30
last_update2018-07-02 12:32:30
depth1
children1
last_payout2018-07-09 12:32:30
cashout_time1969-12-31 23:59:59
total_payout_value0.033 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length417
author_reputation66,834,329,736,250
root_title"Learn C++ With Shello! — Programming Assumptions Versus Actuality: Diary #1"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id63,128,249
net_rshares19,022,502,818
author_curate_reward""
vote details (1)
@shello ·
Heya Pangoli,

I'm glad that I was able to inspire you a little bit to take a second look at learning programming. I won't be able to share everything (there is so much) but I'm aiming to give other Steemians a real look on learning programming.

I shall keep these posts coming, thank you for your support ^_^
properties (22)
authorshello
permlinkre-pangoli-re-shello-learn-c-with-shello-programming-assumptions-versus-actuality-diary-1-20180702t204351139z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-07-02 20:55:57
last_update2018-07-02 20:55:57
depth2
children0
last_payout2018-07-09 20:55: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_length310
author_reputation16,533,387,036,996
root_title"Learn C++ With Shello! — Programming Assumptions Versus Actuality: Diary #1"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id63,186,221
net_rshares0
@thefilmcritic ·
$0.04
Yeah, whatever one does in life, **"practice practice practice"** is probably the only way to improve :D  keep it up!
👍  
properties (23)
authorthefilmcritic
permlinkre-shello-learn-c-with-shello-programming-assumptions-versus-actuality-diary-1-20180702t160234941z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-07-02 16:02:36
last_update2018-07-02 16:02:36
depth1
children1
last_payout2018-07-09 16:02:36
cashout_time1969-12-31 23:59:59
total_payout_value0.032 HBD
curator_payout_value0.009 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length117
author_reputation211,508,840,879
root_title"Learn C++ With Shello! — Programming Assumptions Versus Actuality: Diary #1"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id63,154,120
net_rshares18,281,366,344
author_curate_reward""
vote details (1)
@shello ·
Indeed it is! I feel like putting in the hours is the most crucial aspect towards learning anything. Thank you c:
properties (22)
authorshello
permlinkre-thefilmcritic-re-shello-learn-c-with-shello-programming-assumptions-versus-actuality-diary-1-20180702t204826801z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-07-02 21:00:33
last_update2018-07-02 21:00:33
depth2
children0
last_payout2018-07-09 21:00: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_length113
author_reputation16,533,387,036,996
root_title"Learn C++ With Shello! — Programming Assumptions Versus Actuality: Diary #1"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id63,186,697
net_rshares0
@turtledance24 ·
$0.04
what.... Next thing youll know, shello will be releasing her own ICO. LOL.
👍  
properties (23)
authorturtledance24
permlinkre-shello-learn-c-with-shello-programming-assumptions-versus-actuality-diary-1-20180702t150523931z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-07-02 15:05:24
last_update2018-07-02 15:05:24
depth1
children1
last_payout2018-07-09 15:05:24
cashout_time1969-12-31 23:59:59
total_payout_value0.032 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length74
author_reputation5,543,294,052,938
root_title"Learn C++ With Shello! — Programming Assumptions Versus Actuality: Diary #1"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id63,147,182
net_rshares18,651,934,581
author_curate_reward""
vote details (1)
@shello ·
$0.02
Ayeee, SHELLO coin. Dedicated to educating users on blockchain. LMAO
👍  
properties (23)
authorshello
permlinkre-turtledance24-re-shello-learn-c-with-shello-programming-assumptions-versus-actuality-diary-1-20180702t204623402z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-07-02 20:58:27
last_update2018-07-02 20:58:27
depth2
children0
last_payout2018-07-09 20:58:27
cashout_time1969-12-31 23:59:59
total_payout_value0.015 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length68
author_reputation16,533,387,036,996
root_title"Learn C++ With Shello! — Programming Assumptions Versus Actuality: Diary #1"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id63,186,458
net_rshares9,085,177,129
author_curate_reward""
vote details (1)
@youareyourowngod ·
$0.04
Hey @shello!

Its been a while since we spoke but looking through your blog now im so stoked for you, it looks like you're doing amazing on steemit! Great to see you getting the recognition you deserve.

I remember when we first connected a year or so back, you were offering services as a writer in return for SBD. Well I was racking my brains for someone to help me write some content for a project im working on and you were the first person to come to mind!

If you're interested please let me know, and we can connect on steemitchat or discord or whatever suits :D

Cheers!
👍  
properties (23)
authoryouareyourowngod
permlinkre-shello-learn-c-with-shello-programming-assumptions-versus-actuality-diary-1-20180708t154034387z
categoryprogramming
json_metadata{"tags":["programming"],"users":["shello"],"app":"steemit/0.1"}
created2018-07-08 15:40:36
last_update2018-07-08 15:40:36
depth1
children1
last_payout2018-07-15 15:40:36
cashout_time1969-12-31 23:59:59
total_payout_value0.032 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length578
author_reputation5,008,323,372,364
root_title"Learn C++ With Shello! — Programming Assumptions Versus Actuality: Diary #1"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id63,912,366
net_rshares22,468,879,615
author_curate_reward""
vote details (1)
@shello ·
Thank you @youareyourowngod!

I need to be posting more, but life is throwing me some curve balls right now. Ideally I want to go back to servicing others but I will have to work my way back. 

My name is Shello#1548 on discord. Would love to hear from you more often! C:
properties (22)
authorshello
permlinkre-youareyourowngod-re-shello-learn-c-with-shello-programming-assumptions-versus-actuality-diary-1-20180713t231610804z
categoryprogramming
json_metadata{"tags":["programming"],"users":["youareyourowngod"],"app":"steemit/0.1"}
created2018-07-13 23:16:12
last_update2018-07-13 23:16:12
depth2
children0
last_payout2018-07-20 23:16: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_length271
author_reputation16,533,387,036,996
root_title"Learn C++ With Shello! — Programming Assumptions Versus Actuality: Diary #1"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id64,588,432
net_rshares0