create account

Deprecation of C, Future of Fortnite and Learning to Program as a Beginner by vimukthi

View this thread on: hive.blogpeakd.comecency.com
· @vimukthi ·
$13.81
Deprecation of C, Future of Fortnite and Learning to Program as a Beginner
There are trillions of dollars worth economic activity directly depends on programming. Software is increasingly becoming a part of daily lives. If you think we are depending on technology too much, wait for a few years for AI to be used as often as smartphones. Along with this development I have notices two important trends.

1) Front ends and UX keep getting oversimplified hiding implementation details while taking control away from the user.
2) The old technologies are becoming an obstacle creating a need for new paradigms to become the mainstream. 

I would say both of these are good reasons to avoid what is popular today (such as JavaScript) if you want to plan for the long term. I have been constantly sharing news on AI developments and I have been personally using many of these tools for my personal learning. __We must keep our focus on the future.__

# Even C Will Become Deprecated
https://www.youtube.com/watch?v=5_oqWE9otaE

There are toasters that are more powerful than the computer behind Apollo 11. This is a screenshot from the Wikipedia page for [Apollo Guidance Computer](https://en.wikipedia.org/wiki/Apollo_Guidance_Computer) and pay attention to the weight of this once state of the art piece of technology. 

![](https://i.postimg.cc/2yGw586T/Apollo-Guidance-Computer.png)

We have to be very happy regarding how far some old programming languages have come. C is still at the heart of most crucial parts of modern technology. It is not without its faults. That is why there are very smart individuals trying to move towards Rust (for safety) and Zig (for performance). 

https://www.youtube.com/watch?v=pSvSXBorw4A

# Bad Syntax is Mostly Unfamiliar Syntax
People have a habit of calling unfamiliar things bad or inferior without giving much effort from their side. I have seen this time and time again among programmers. I have been looking into programming out of curiosity and as a hobby. Since technology was going to all around me all the time, I wanted to have a basic idea of how things work under the hood. The goal was to be able to make better decisions and take care of the smaller matters that are the similar to changing a tire or doing a minor maintenance on a vehicle. 

__Due to this reason I explored many different programming languages with many of them being labeled too difficult or has a bad syntax. Although Python turned out to be very easy as a beginner, other languages like Haskell didn't look much harder. I tried many languages that I found to be interesting. JavaScript Frameworks were among some of the most difficult I had seen.__

After few hours of testing, I was at a stage where I would rather code in Rust than Node.js or React.js and I am very much convinced now that even the senior programmers are simply viewing what they are familiar as the "better" way. __It is their existing habits that have become the biggest obstacle in their learning experience.__

# Start With Functional Programming
https://www.youtube.com/watch?v=va3kJ1YBBXo

https://www.youtube.com/watch?v=7awJDYMXtXE

https://www.youtube.com/watch?v=7JK6qtpKLoQ

https://www.youtube.com/watch?v=gK0hMxJhqwM

You may not end up programming Haskell or other purely functional language. What matters is the learning that comes through using a language that is concerned with safety and correctness of a program. Haskell and others like it force the programmer to adopt good practices and not pick up bad habits.

__In the future what you know is going to be less and less important. How you use knowledge is going to make a bigger difference when a vast amount of knowledge and expertise is easily accessible for general use via LLMs + extensions built for coding (I will get to these later).__

# Learn About Domain Driven Design (DDD)
https://www.youtube.com/watch?v=2JB1_e5wZmU

# Compare Programming Solutions
Since the programming langues come in many different forms, there should be nothing surprising about having wildly different pros and cons with each of them. Taking a look at how each programming languages (and paradigm) solve a need is one of the best things you can do before you settle on a path to specialize on.

https://youtu.be/LWgcukcpo9A

https://youtu.be/6-mk6OpcUdM

https://youtu.be/MKb4WD6mioE

https://youtu.be/zrOIQEN3Wkk

https://youtu.be/UVUjnzpQKUo

https://youtu.be/U6I-Kwj-AvY

https://youtu.be/Wah-uQ9ou80

https://youtu.be/Hecqsl3GG9s

# LLMs Are One of The Best Learning Tools
They will only be a help if you think about the code and reason about it. The "AI" does not know what the best solution is. What it is doing is trying its best to provide the most suitable answer to the given prompt. If it has too much sub-optimal solution, the results are going to be worse code. __Think of AI as a partner to argue about coding.__ Keep asking about different ways to do the same thing. Suggest changes to the code and and ask it to rewrite. 

If you start with a language such as Haskell or Rust, the compiler will refuse to compile bad/unsafe code. Copy the code and ask ChatGPT, [Leo AI (from Brave)](https://inleo.io/@vimukthi/leo-is-worlds-most-accessible-private-ai-llm-i-took-it-for-a-test-drive) or any other LLM of your choice and ask the LLM to fix the bug. Treat it as a learning opportunity. __Take one step further and propose your alternative version of fixing the bug or rewrite the code with a different approach.__ This back and forth engagement will help you understand programming better. 

# Use Continue.dev in You IDE
https://www.youtube.com/watch?v=3Ocrc-WX4iQ

You can take a look at the [GitHub Page](https://github.com/continuedev/continue) and take a look at what they are offering. I expect there to be other extensions like it for IDEs. I recommend using this tool with [VSCodium](https://vscodium.com) which has the open source binaries of VSCode without closed sourced interventions of Microsoft that involve telemetry + whatever Microsoft wants to add to your IDE. Most of the VSCode extensions and all of the tutorials made for VSCode work for VSCodium.

# [Learn X in Y Minutes](https://learnxinyminutes.com)
You can treat the above linked website as a summary on the features of a language. Programming languages are not the only thing you can learn on the website. There are multiple languages available. You do not have to be forced to learn in English if you don't have to. Learn X in Y Minutes is an easy way to refresh memory on the basics of a languages. 

# [100 Seconds of Code](https://www.youtube.com/playlist?list=PL0vfts4VzfNiI1BsIK5u7LpPaIDKMJIDN)
If I end up adding too many resources than I already have, this article is going to be too bloated. I may have to write another article with more resources. Until then, You can view the above playlist by Fireship. You will learn a great deal in a very short time. 

# Tim Sweeney and Verse for Unreal Engine Fortnite
https://www.youtube.com/watch?v=UBgam9XUHs0

Consider this a small prize for reading this far. Functional Logic Programming is a tiny niche at the moment. One of the latest languages of this paradigms is backed by the multibillion dollar giant Epic Games and it is going to be a part of Fortnite game which has 236 million Monthly Active Users. __It is smart to focus on where the innovations are going rather than what is popular at the moment.__

Posted Using [InLeo Alpha](https://inleo.io/@vimukthi/deprecation-of-c-future-of-fortnite-and-learning-to-program-as-a-beginner-)
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 343 others
properties (23)
authorvimukthi
permlinkdeprecation-of-c-future-of-fortnite-and-learning-to-program-as-a-beginner-
categoryhive-167922
json_metadata{"app":"leothreads/0.3","format":"markdown","tags":["hive-167922","inleo","stem","education","programming","ocd","gems","bilpcoin","proofofbrain","waivio"],"canonical_url":"https://inleo.io/@vimukthi/deprecation-of-c-future-of-fortnite-and-learning-to-program-as-a-beginner-","links":["https://www.youtube.com/watch?v=5_oqWE9otaE","https://en.wikipedia.org/wiki/Apollo_Guidance_Computer)","https://i.postimg.cc/2yGw586T/Apollo-Guidance-Computer.png)","https://www.youtube.com/watch?v=pSvSXBorw4A","https://www.youtube.com/watch?v=va3kJ1YBBXo","https://www.youtube.com/watch?v=7awJDYMXtXE","https://www.youtube.com/watch?v=7JK6qtpKLoQ","https://www.youtube.com/watch?v=gK0hMxJhqwM","https://www.youtube.com/watch?v=2JB1_e5wZmU","https://inleo.io/@vimukthi/leo-is-worlds-most-accessible-private-ai-llm-i-took-it-for-a-test-drive)","https://www.youtube.com/watch?v=3Ocrc-WX4iQ","https://github.com/continuedev/continue)","https://vscodium.com)","https://learnxinyminutes.com)","https://www.youtube.com/playlist?list=PL0vfts4VzfNiI1BsIK5u7LpPaIDKMJIDN)","https://www.youtube.com/watch?v=UBgam9XUHs0","https://inleo.io/@vimukthi/deprecation-of-c-future-of-fortnite-and-learning-to-program-as-a-beginner-)"],"images":["https://i.ytimg.com/vi/LWgcukcpo9A/hqdefault.jpg","https://i.ytimg.com/vi/6-mk6OpcUdM/hqdefault.jpg","https://i.ytimg.com/vi/MKb4WD6mioE/hqdefault.jpg","https://i.ytimg.com/vi/zrOIQEN3Wkk/hqdefault.jpg","https://i.ytimg.com/vi/UVUjnzpQKUo/hqdefault.jpg","https://i.ytimg.com/vi/U6I-Kwj-AvY/hqdefault.jpg","https://i.ytimg.com/vi/Wah-uQ9ou80/hqdefault.jpg","https://i.ytimg.com/vi/Hecqsl3GG9s/hqdefault.jpg"],"isPoll":false,"dimensions":{}}
created2024-03-19 19:47:33
last_update2024-03-19 19:47:33
depth0
children1
last_payout2024-03-26 19:47:33
cashout_time1969-12-31 23:59:59
total_payout_value6.766 HBD
curator_payout_value7.044 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7,461
author_reputation402,051,851,492,667
root_title"Deprecation of C, Future of Fortnite and Learning to Program as a Beginner "
beneficiaries
0.
accountleofinance
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id132,176,796
net_rshares27,925,068,628,532
author_curate_reward""
vote details (407)
@stemsocial ·
re-vimukthi-deprecation-of-c-future-of-fortnite-and-learning-to-program-as-a-beginner--20240320t021000110z
<div class='text-justify'> <div class='pull-left'>
 <img src='https://stem.openhive.network/images/stemsocialsupport7.png'> </div>

Thanks for your contribution to the <a href='/trending/hive-196387'>STEMsocial community</a>. Feel free to join us on <a href='https://discord.gg/9c7pKVD'>discord</a> to get to know the rest of us!

Please consider delegating to the @stemsocial account (85% of the curation rewards are returned).

You may also include @stemsocial as a beneficiary of the rewards of this post to get a stronger support.&nbsp;<br />&nbsp;<br />
</div>
properties (22)
authorstemsocial
permlinkre-vimukthi-deprecation-of-c-future-of-fortnite-and-learning-to-program-as-a-beginner--20240320t021000110z
categoryhive-167922
json_metadata{"app":"STEMsocial"}
created2024-03-20 02:10:00
last_update2024-03-20 02:10:00
depth1
children0
last_payout2024-03-27 02:10:00
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_length565
author_reputation22,460,408,920,472
root_title"Deprecation of C, Future of Fortnite and Learning to Program as a Beginner "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id132,185,532
net_rshares0