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: Windows Get-EventLog vs Get-WinEvent

Get-Eventlog is the legacy Windows log querying command. Its advanced filtering is limited. Whereas Get-WinEvent,…

PowerShell: Query Google Account Using GAM

$emailAddress='[email protected]' $field='accounts:last_login_time' function getGamUser{ param( $emailAddress, $field ) $result=try{gam report users user $emailAddress}catch{} if($result){ $headers=$result[0]…

How to Restart Domino Services without Reboot

--------------Restart_Domino.bat------------------------------------------------------net stop "Lotus Domino Server (LotusDominoData)"c:\bats\pulist | findstr /I /C:"nadminp.exe" >c:\bats\pid.lstc:\bats\pulist | findstr /I /C:"naldaemn.exe"…