PLAY PODCASTS
How to be an Intermediate Programmer
Episode 39

How to be an Intermediate Programmer

Coding Blocks · Allen Underwood

February 27, 20162h 50m

Audio is streamed directly from the publisher (traffic.libsyn.com) as published in their RSS feed. Play Podcasts does not host this file. Rights-holders can request removal through the copyright & takedown page.

Show Notes

Link to Episode 39's Full Show Noteshttp://www.codingblocks.net/episode39

T-Shirt Giveaway - The winner is...Manrique Logan - please contact us to send us your ship-to information!

This Episode's SurveySuggested by: https://twitter.com/CatcheNameHere/status/700507429390274560

Princess rap battle: GALADRIEL vs LEIAhttps://www.youtube.com/watch?v=RL52R7m8b7w

How to be an Intermediate Programmer Personal Skills Team Skills Judgement Resources We Like

How to be a Programmer: A Short, Comprehensive, and Personal Summary by Robert L ReadMake a Pull Request to get your thoughts in here:https://github.com/RobertLRead/HowToBeAProgrammerOr buy your copy here from Amazon:http://amzn.to/1WzbIxs

Succinctness is Power - Paul Grahamhttp://www.paulgraham.com/power.html

You Don't Know JShttps://github.com/getify/You-Dont-Know-JS/blob/master/README.md

Want to know how fast you type?http://www.typingtest.com/

Allen's Typing Speed on the Microsoft Sculpt Ergonomic

Microsoft Sculpt Ergonomic Keyboard

http://www.typingtest.com/result.html?acc=100&nwpm=90&gwpm=90&ncpm=452&gcpm=452&dur=60&time=60&chksum=45213&unit=wpm&kh=998&td=null&err=0&hits=452

specflow - Binding business requirements to .NET codehttp://www.specflow.org/

Tips for this Episode

Allen Underwood: Execution plan for a running query in Microsoft SQL ServerPreface: You can click a button in Microsoft SQL Server Management Studio (SSMS) to see the execution plan of a query to identify any performance problems. The biggest issue with this is that if there's a query that NEVER returns, or takes an insanely long time to return, then you're stuck waiting for the query to finish. This tip shows you how to find the ACTUAL (not estimated) query plan of the query that is actively running:

How To:

EXEC sp_who2 'active' -- Find the SPID of the query you're running DECLARE @spid INT = 123 -- From above SELECT EQP.query_plan, * FROM sys.dm_exec_requests AS ER CROSS APPLY sys.dm_exec_query_plan(ER.plan_handle) AS EQP WHERE ER.session_id = @spid

Once that bottom query runs, you'll be provided a link in the results grid that you can click to open up the graphical execution plan.

Michael Outlaw: Have Git ignore changes you make to a specific file like you didn't make the changes, but still have it be part of the tracked files in Git.Preface: Let's say you have a connection string configuration file that you change to point to your local database. That config file needs to be tracked in Git, but you don't want your changes to accidentally get committed and pushed up to the remote repo, then this command is for you.

How To:

git update-index /path/to/file --assume-unchanged

Joe Zack: Life Tip - Pay attention to the warnings in your IDE. It's easy to get used to seeing several warnings and ignoring them because they're not errors. Eventually a new one that actually matters will show up and by ignoring it, you could be creating heartache for yourself. If you can, resolve the warnings that are currently showing up so that if a new one surfaces, it'll jump out at you like a sore thumb.