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: Get Terminal Service (Remote Desktop Service) Licenses Report

# rdsLicenseReport.ps1 $knownRdsComputers=$null # Options: (a) 'SERVER1','SERVER100' (b) Get-Content Path\To\RDServers.txt function getTsLicenses{ param( $knownRdsComputers, $domain=$env:userdnsdomain…

PowerShell: connectWinRM Function to Create New-PSSession

This reusable function may be included into PoSh scripts for better connection toward Windows machines…

PowerShell: Start-Job, Get-Job, Receive-Job Examples

Demo 1: Obtain Public IP of a Windows Machine # Commands to run locally$command1={(Invoke-WebRequest -URI…