Posted On April 11, 2019

Recommended Skill Set of a Programmer

kimconnect 0 comments
blog.KimConnect.com >> Codes >> Recommended Skill Set of a Programmer

It’s a given that a coder needs to learn how to code… like really well. However, this is a short list of enhancers for a programmer to be more effective:

1. Regex
2. SQL
3. Debugging
4. Scripting / automation: Linux Kernel Shell, PowerShell, Python
5. Documentation: leverage the written medium to communicate as efficiently. Write once and allow the information to be repeated to the intended audience on-demand.

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Default Nginx Installation on Centos 7

NGINX as HTTP / HTTPS Proxysudo yum install epel-releasesudo yum install nginxsudo systemctl start nginxsudo…

PowerShell: Play with Time

1. Constructor: $timer=[System.Diagnostics.Stopwatch]::StartNew() 2. Accessing a property $totalSeconds=$timer.Elapsed.TotalSeconds 3. Output Time (Usage): $hours=[math]::round($totalSeconds/3600,2)write-host "It has…

JavaScript: Random Quote Generator

Demo Link: https://blog.kimconnect.com/wp-content/projects/randomQuoteGenerator.html HTML code: <body> <div class="container fluid"> <div> <div class="text-center"> <h1> Random Quote…