This file contains hidden or 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
public class AzureCacheFactory : IAzureCacheFactory | |
{ | |
private readonly DataCache _cache; | |
private readonly DataCache _absoluteCache; | |
public AzureCacheFactory() | |
{ | |
var factory = new DataCacheFactory(); | |
_cache = factory.GetDefaultCache(); | |
_absoluteCache = factory.GetCache("AbsoluteCache"); |
This file contains hidden or 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
# /Users/todd/projects/SignalR/.nuget/nuget.targets: Error: Command 'mono --runtime=v4.0.30319 ../../.nuget/NuGet.exe install "packages.config" -source "https://nuget.org/api/v2/;http://www.myget.org/F/aspnetwebstacknightly/" -RequireConsent -solutionDir "../../" -nocache' exited with code: 1. (Microsoft.AspNet.SignalR.Client.Portable) | |
kvothe:Microsoft.AspNet.SignalR.Client.Portable todd$ mono --runtime=v4.0.30319 ../../.nuget/NuGet.exe install "packages.config" -source "https://nuget.org/api/v2/;http://www.myget.org/F/aspnetwebstacknightly/" -RequireConsent -solutionDir "../../" -nocache | |
Package restore is disabled by default. To give consent, open the Visual Studio Options dialog, click on Package Manager node and check 'Allow NuGet to download missing packages during build.' You can also give consent by setting the environment variable 'EnableNuGetPackageRestore' to 'true'. | |
kvothe:Microsoft.AspNet.SignalR.Client.Portable todd$ export EnableNuGetPackageRestore=true | |
kvothe:Microsoft.AspNet.SignalR.Cli |
This file contains hidden or 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
Gina and Imani have an average of 41 stickers. Gina and Ella have an average of 48 stickers. If Ella has 3 times as many stickers as Gina, how many stickers does Ella have? How many more stickers does Imani have than Gina? |
This file contains hidden or 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
C:\git> git clone https://github.com/tawman/git-unite.git | |
Cloning into 'git-unite'... | |
remote: Counting objects: 140, done. | |
remote: Total 140 (delta 0), reused 0 (delta 0), pack-reused 140R | |
Receiving objects: 100% (140/140), 3.89 MiB | 938.00 KiB/s, done. | |
Resolving deltas: 100% (61/61), done. | |
C:\git> cd .\git-unite\ | |
C:\git\git-unite [master =]> .\build.bat | |
C:\git\git-unite>C:\Windows\Microsoft.NET\Framework\V4.0.30319\msbuild /t:clean /v:n /p:Configuration=DEBUG src\Git.Unit |
This file contains hidden or 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
public List <TRet> Fetch<T1, T2, TRet>(Func <T1, T2, TRet> cb, string sql, params object [] args) | |
{ | |
return Query<T1, T2, TRet>(cb, sql, args).ToList(); | |
} |
This file contains hidden or 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
SELECT * | |
FROM(SELECT * FROM UserRequirement) AS UserInfo | |
PIVOT (MIN(ExpirationDate) | |
FOR Requirement IN ([Alpha], [Bravo], [Charlie], [Delta], [Echo]) | |
) AS UserPivot |
OlderNewer