Simplified procedure extracted from the contribution guidelines and the guide.
Example for a new go application, the install step and the dependencies will be different if you are building something else.
-
Update brew:
brew update
Simplified procedure extracted from the contribution guidelines and the guide.
Example for a new go application, the install step and the dependencies will be different if you are building something else.
Update brew:
brew update
class HttpETagCacheHandler : HttpClientHandler | |
{ | |
private static readonly ConcurrentDictionary<string, string> ETags = new ConcurrentDictionary<string, string>(); | |
private static readonly ConcurrentDictionary<string, byte[]> MemoryCache = new ConcurrentDictionary<string, byte[]>(); | |
protected override async Task<HttpResponseMessage> SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) | |
{ | |
var pathAndQuery = request.RequestUri.PathAndQuery; | |
if (ETags.TryGetValue(pathAndQuery, out var ifNonMatch)) |
version: "3" | |
services: | |
traefik: | |
image: "traefik:v2.0" | |
container_name: "traefik" | |
command: | |
# - "--log.level=DEBUG" | |
- "--api.insecure=true" |
I hereby claim:
To claim this, I am signing this object:
SELECT TOP 25 | |
dm_mid.database_id AS DatabaseID, | |
dm_migs.avg_user_impact*(dm_migs.user_seeks+dm_migs.user_scans) Avg_Estimated_Impact, | |
dm_migs.last_user_seek AS Last_User_Seek, | |
OBJECT_NAME(dm_mid.OBJECT_ID,dm_mid.database_id) AS [TableName], | |
'CREATE INDEX [IX_' + OBJECT_NAME(dm_mid.OBJECT_ID,dm_mid.database_id) + '_' | |
+ REPLACE(REPLACE(REPLACE(ISNULL(dm_mid.equality_columns,''),', ','_'),'[',''),']','') + | |
CASE | |
WHEN dm_mid.equality_columns IS NOT NULL AND dm_mid.inequality_columns IS NOT NULL THEN '_' | |
ELSE '' |
using FastMember; | |
using System; | |
using System.Collections.Generic; | |
using System.ComponentModel; | |
using System.Configuration; | |
using System.Data; | |
using System.Data.SqlClient; | |
using System.Linq; | |
using System.Reflection; | |
using System.Text; |
/** | |
* Circular Tooltip (SO) | |
* http://stackoverflow.com/q/13132864/1397351 | |
*/ | |
* { margin: 0; padding: 0; } | |
body { | |
overflow: hidden; | |
background: url(http://theearlcarlson.com/experiments/amTooltip/img/bg.jpg); | |
} | |
/* generic styles for button & circular menu */ |
' Note: For instructions on enabling IIS6 or IIS7 classic mode, | |
' visit http://go.microsoft.com/?LinkId=9394802 | |
Imports System.Web.Http | |
Imports System.Web.Optimization | |
Public Class MvcApplication | |
Inherits System.Web.HttpApplication | |
Sub Application_Start() | |
AreaRegistration.RegisterAllAreas() |