Artwork

Content provided by Allen Underwood, Michael Outlaw, and Joseph Zack. All podcast content including episodes, graphics, and podcast descriptions are uploaded and provided directly by Allen Underwood, Michael Outlaw, and Joseph Zack or their podcast platform partner. If you believe someone is using your copyrighted work without your permission, you can follow the process outlined here https://player.fm/legal.
Player FM - Podcast App
Go offline with the Player FM app!

How to be an Intermediate Programmer

2:50:19
 
Share
 

Manage episode 123397517 series 27319
Content provided by Allen Underwood, Michael Outlaw, and Joseph Zack. All podcast content including episodes, graphics, and podcast descriptions are uploaded and provided directly by Allen Underwood, Michael Outlaw, and Joseph Zack or their podcast platform partner. If you believe someone is using your copyrighted work without your permission, you can follow the process outlined here https://player.fm/legal.

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.

  continue reading

241 episodes

Artwork

How to be an Intermediate Programmer

Coding Blocks

2,229 subscribers

published

iconShare
 
Manage episode 123397517 series 27319
Content provided by Allen Underwood, Michael Outlaw, and Joseph Zack. All podcast content including episodes, graphics, and podcast descriptions are uploaded and provided directly by Allen Underwood, Michael Outlaw, and Joseph Zack or their podcast platform partner. If you believe someone is using your copyrighted work without your permission, you can follow the process outlined here https://player.fm/legal.

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.

  continue reading

241 episodes

All episodes

×
 
Loading …

Welcome to Player FM!

Player FM is scanning the web for high-quality podcasts for you to enjoy right now. It's the best podcast app and works on Android, iPhone, and the web. Signup to sync subscriptions across devices.

 

Quick Reference Guide