This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* https://drafts.csswg.org/mediaqueries-4/ */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* https://drafts.csswg.org/mediaqueries-4/ */ | |
/* Portrait */ | |
@media screen and (orientation:portrait) { | |
} | |
/* Landscape */ | |
@media screen and (orientation:landscape) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace Patterns.Threading | |
{ | |
/// <summary> | |
/// Singleton Design Pattern for multi-thread environment | |
/// </summary> | |
/// <remarks>Uses double-checked locking method - effective but expensive locking mechanism with least control.</remarks> | |
public sealed class DoubleLockSingleton | |
{ | |
private static readonly object _sync = new object(); | |
private static DoubleLockSingleton _instance; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--region Drop Existing Procedures | |
IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[InsertAthlete]') AND type in (N'P', N'PC')) | |
DROP PROCEDURE [dbo].[InsertAthlete] | |
IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[InsertAllAthlete]') AND type in (N'P', N'PC')) | |
DROP PROCEDURE [dbo].[InsertAllAthlete] | |
IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[UpdateAthlete]') AND type in (N'P', N'PC')) | |
DROP PROCEDURE [dbo].[UpdateAthlete] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*! | |
Theme Name: Kase Shopify Development | |
Author URI: https://mwebsolutions.com.au | |
Description: Developed by Steve McCormack for MWeb Solutions | |
Version: 1.1 | |
Author: Steve McCormack | |
*/ | |
// IIFE - Immediately Invoked Function Expression |