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
using Microsoft.WindowsAzure.Storage.Table.Protocol; | |
public static class DateTimeExtensions | |
{ | |
public static bool CheckAzureSupportedDateTime(this DateTime? dateTime) | |
{ | |
return dateTime == null || TableConstants.MinDateTime <= dateTime; | |
} | |
public static void VerifyAzureSupportedDateTime(this DateTime? dateTime) |
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
About Windows winver | |
Add Hardware Wizard hdwwiz.cpl | |
Add/Remove Programs appwiz.cpl | |
Administrative Tools control admintools | |
Advanced Startup Options bootim | |
Advanced User Accounts netplwiz | |
Application Data Folder %appdata% | |
Authorization manager azman.msc | |
Backup/Restore User Names and Passwords credwiz | |
Calculator calc |
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
def get_subsets(arr) | |
0.upto(arr.size).map { |n| arr.combination(n).to_a }.flatten(1) | |
end |