blog.craftingbytes.com
Crafting Bytes Blog: SSMS: Query Shortcuts
http://blog.craftingbytes.com/2015/05/ssms-query-shortcuts.html
Friday, May 22, 2015. No reason to type out SELECT TOP 1000 * FROM or SELECT COUNT(*) FROM anymore. Subscribe to: Post Comments (Atom). Modern Web Development (Javascript, NodeJS, RESTful services, ASP.NET MVC/WebAPI). Cross platform mobile apps (PhoneGap, Xamarin). Interactive entertainment experiences (Xbox360, XboxOne, Kinect, Multitouch). Big Data (SQL Server, Hadoop, SSIS, SSRS). Crafting Bytes announces partnership with RedGate . Resource Sharing in Windows Universal Apps.
blog.craftingbytes.com
Crafting Bytes Blog: March 2014
http://blog.craftingbytes.com/2014_03_01_archive.html
Saturday, March 22, 2014. Project Management is a Prioritized List. The thing is estimates take a lot of time, and they are rarely accurate. Our thought was let's forget scrum and just go with a simple Kanban board (from the Lean school of thinking). By doing this we can save ourselves countless hours of trying to figure out how much time things are going to take, and spend more time simply doing them. Subscribe to: Posts (Atom). Cross platform mobile apps (PhoneGap, Xamarin). If your company is interest...
blog.craftingbytes.com
Crafting Bytes Blog: April 2014
http://blog.craftingbytes.com/2014_04_01_archive.html
Saturday, April 12, 2014. Web UI Testing Part 1: Front-door and back-door testing. Llewellyn Falco and I had a conversation many years ago (June 2010? About the best way to test Web UI. During that conversation we referred to the two classifications/mechanisms of web testing as front-door and back-door web testing. That is how I still think of the two types many years later, although I recognize that not many people in the industry use those terms. This allowed back door testing to call the engine to pro...
blog.craftingbytes.com
Crafting Bytes Blog: May 2015
http://blog.craftingbytes.com/2015_05_01_archive.html
Friday, May 22, 2015. No reason to type out SELECT TOP 1000 * FROM or SELECT COUNT(*) FROM anymore. Wednesday, May 13, 2015. Crafting Bytes announces partnership with RedGate Software. Crafting Bytes is proud to announce a special partnership with RedGate software. Http:/ blog.red-gate.com/redgate-partners-alm-experts/. Want to know more? Labels: Database Lifecycle Management. Saturday, May 9, 2015. Resource Sharing in Windows Universal Apps. CraftingBytes recently took on a Windows Universal project....
blog.craftingbytes.com
Crafting Bytes Blog: June 2014
http://blog.craftingbytes.com/2014_06_01_archive.html
Tuesday, June 24, 2014. Xamarin Forms changes the game. One a personal note it is interesting that the Xamarin Forms release happened while we were in the middle of the mobile development track for the San Diego TIG. It is changing the industry, and it also changed our track. We removed the PhoneGap meeting from the end of the track after a brief discussion of the technology. Thursday, June 5, 2014. SQL Tip: THe Importance of Changing Schema. Wednesday, June 4, 2014. Tuesday, June 3, 2014. Because of the...
blog.craftingbytes.com
Crafting Bytes Blog: Crafting Bytes announces partnership with RedGate Software
http://blog.craftingbytes.com/2015/05/crafting-bytes-announces-partnership.html
Wednesday, May 13, 2015. Crafting Bytes announces partnership with RedGate Software. Crafting Bytes is proud to announce a special partnership with RedGate software. Http:/ blog.red-gate.com/redgate-partners-alm-experts/. People have been talking about Database Lifecycle Management (DLM) for a while. It’s all about extending existing ALM practices like source control, continuous integration, and automated deployments to the database. Want to know more? Labels: Database Lifecycle Management. Crafting Byte...
blog.craftingbytes.com
Crafting Bytes Blog: Resource Sharing in Windows Universal Apps
http://blog.craftingbytes.com/2015/05/resource-sharing-in-windows-universal.html
Saturday, May 9, 2015. Resource Sharing in Windows Universal Apps. CraftingBytes recently took on a Windows Universal project. As with any multiple device project one of the goals is to share as much as possible to avoid writing the same code twice. My first thought was to have a SharedStyles.xaml in the Shared folder, and a PlatformSpecificStyles.xaml in each Windows and WindowsPhone directory. Then in the App.xaml include first the shared files followed by the specific files. Someth...However, it turns...
blog.craftingbytes.com
Crafting Bytes Blog: July 2015
http://blog.craftingbytes.com/2015_07_01_archive.html
Wednesday, July 1, 2015. Top 5 Things You'll Learn From my PASS Summit Session. I don't want to give everything away, but if you come to my PASS Summit session, you'll learn and see demos explaining the following five bullets:. 1) When to use a JSON document store and when to use a relational store. 2) When you need to use Azure Table Storage, and when you should use something else. 3) You'll see demos for DocumentDB, Azure Table Storage, and Azure SQL Database. Subscribe to: Posts (Atom). If your compan...
blog.craftingbytes.com
Crafting Bytes Blog: August 2014
http://blog.craftingbytes.com/2014_08_01_archive.html
Friday, August 22, 2014. Azure DocumentDB First Look. Step 1: Run the PowerShell Scripts. Step 2: Use the new Azure portal at portal.azure.com. Step 3: Run NuGet: Install-Package Microsoft.Azure.Documents.Client -Pre. Step 4: This is the Flashcard class. Public class FlashCard { [JsonProperty(PropertyName = "id")] public string ID { get; set; } [JsonProperty(PropertyName = "question")] public string Question { get; set; } [JsonProperty(PropertyName = "answer")] public string Answer { get; set; } }. Colle...
blog.craftingbytes.com
Crafting Bytes Blog: July 2014
http://blog.craftingbytes.com/2014_07_01_archive.html
Saturday, July 26, 2014. Web UI Testing Part 4: Extension methods in Page Object Model. When I started my next project I switched from WatiN to Selenium, and I incorporated the PageObjectModel. I had recently watched John Somnez's video's Pluralsight videos around this topic (http:/ simpleprogrammer.com/2013/09/28/creating-automated-testing-framework-selenium/) , so a lot of his ideas were shining through. There was a Pages class which had static properties to all of the Page objects. If (element = null).