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

PowerShell: Assign Guest Virtual Machine to a Cloud in VMM

# assignVmsToCloud.ps1 # version 0.02 # The following function assigns a guest VM into a…

Basic HTML and HTML5: Link to External Pages with Anchor Elements

<h2>CatPhotoApp</h2><main><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."><p>Kitty ipsum dolor sit amet, shed…

PowerShell: Generate a CSV Report of O365 Exchange Online Mailboxes

# Office 365 Global Admin Credential$username="[email protected]"$password=ConvertTo-securestring "PASSWORD" -AsPlainText -Force$cred = New-Object -TypeName System.Management.Automation.PSCredential -ArgumentList $username,$passwordfunction…