developertipoftheday.com
Developer Tip of the Day: Log to the built-in IE developer console
http://www.developertipoftheday.com/2010/12/output-to-built-in-ie-developer-console.html
Developer Tip of the Day. Web developer tip of the day gathered from around the web by Alex Key, to help you be more productive. Alex Key is a senior full stack web developer based in the UK. Tuesday, December 14, 2010. Log to the built-in IE developer console. Rather than using JavaScript. S to see the value of variables and alike, the IE developer tools allows you to output to IE's JavaScript console. To open the IE developer tools, simply press. The console log command is simply:. There are many varia...
developertipoftheday.com
Developer Tip of the Day: Free Online SQL Editor
http://www.developertipoftheday.com/2012/09/free-online-sql-editor.html
Developer Tip of the Day. Web developer tip of the day gathered from around the web by Alex Key, to help you be more productive. Alex Key is a senior full stack web developer based in the UK. Saturday, September 15, 2012. Free Online SQL Editor. I came across a little gem; if you are ever stuck with some SQL and ask for some help in a forum etc, this free online sql editor called SQL Fiddle. Will allow you to create tables, run sql etc all online - ready to share with fellow developers. You can easily si...
developertipoftheday.com
Developer Tip of the Day: Management Studio - invaluable add-on: SSMS Tools Pack
http://www.developertipoftheday.com/2010/08/management-studio-invaluable-add-on.html
Developer Tip of the Day. Web developer tip of the day gathered from around the web by Alex Key, to help you be more productive. Alex Key is a senior full stack web developer based in the UK. Wednesday, August 18, 2010. Management Studio - invaluable add-on: SSMS Tools Pack. I'd highly reccomend anyone who uses Sql Server Management Studio day to day, to install a free add-on pack called "SSMS Tools Pack" available here www.ssmstoolspack.com. I won't go into to much detail, as the site sells itself.
developertipoftheday.com
Developer Tip of the Day: Encrypt SQL statements
http://www.developertipoftheday.com/2011/06/encrypt-sql-statements.html
Developer Tip of the Day. Web developer tip of the day gathered from around the web by Alex Key, to help you be more productive. Alex Key is a senior full stack web developer based in the UK. Monday, June 27, 2011. If you distribute your SQL code to third parties (perhaps in runs on other peoples servers), you may wish to help protect your intellectual property by encrypting your SQL statements. SET NOCOUNT ON;. SELECT Firstname, Surname, Email. MSDN article on CREATE PROCEDURE sql server 2008 r2. You ca...
developertipoftheday.com
Developer Tip of the Day: Exclude folders (.hg / .git) from Visual Studio search
http://www.developertipoftheday.com/2011/06/exclude-folders-hg-git-from-visual.html
Developer Tip of the Day. Web developer tip of the day gathered from around the web by Alex Key, to help you be more productive. Alex Key is a senior full stack web developer based in the UK. Wednesday, June 29, 2011. Exclude folders (.hg / .git) from Visual Studio search. When doing a find in files in a source controlled project in Visual Studio, the source control folder i.e. .hg (Mecurial) / .git (git) will appear in the search results (which is not what you want! Subscribe to: Post Comments (Atom).
developertipoftheday.com
Developer Tip of the Day: Combine png / jpg into pdf on windows from the command line for free.
http://www.developertipoftheday.com/2015/05/combine-png-jpg-into-pdf-on-windows.html
Developer Tip of the Day. Web developer tip of the day gathered from around the web by Alex Key, to help you be more productive. Alex Key is a senior full stack web developer based in the UK. Sunday, May 31, 2015. Combine png / jpg into pdf on windows from the command line for free. There seems to be a hell of a lot of utilities to combine images (png's, jpgs etc) to form pdfs. But as a savvy user you've probably formed a distrust of shareware or similar. Gm convert *.png yournewpdf.pdf. If you select a ...
developertipoftheday.com
Developer Tip of the Day: Empty folders in Git / Mecurial
http://www.developertipoftheday.com/2011/07/empty-folders-in-git-mecurial.html
Developer Tip of the Day. Web developer tip of the day gathered from around the web by Alex Key, to help you be more productive. Alex Key is a senior full stack web developer based in the UK. Sunday, July 17, 2011. Empty folders in Git / Mecurial. Git / Mecurial do not track empty directories, but there is a useful tool to help. To track empty directories, you need to simply create place holder / dummy files in those directories e.g. a simple txt file. This comment has been removed by the author. Website...
developertipoftheday.com
Developer Tip of the Day: Incorrect syntax near the keyword 'OPTION'. When using CTE's inside a UDF.
http://www.developertipoftheday.com/2011/07/incorrect-syntax-near-keyword-option.html
Developer Tip of the Day. Web developer tip of the day gathered from around the web by Alex Key, to help you be more productive. Alex Key is a senior full stack web developer based in the UK. Monday, July 04, 2011. Incorrect syntax near the keyword 'OPTION'. When using CTE's inside a UDF. It is useful to use common table expressions (CTE) to perform recursive calls. Normally recursion is limited by default to 100 recursions, this is to stop infinite loops. Incorrect syntax near the keyword 'OPTION'.