I hereby claim:
- I am rdumont on github.
- I am rdumont (https://keybase.io/rdumont) on keybase.
- I have a public key whose fingerprint is 741D 8C00 71EE 12FD BF2B 8715 D147 E51A 8A60 1539
To claim this, I am signing this object:
| @using MvcApplication1.Extensions | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <title>@ViewBag.Title</title> | |
| @Html.BundleCss().Add( | |
| "~/Content/Site.css" | |
| ).MvcRender("~/Content/styles_#.css") |
| #!/bin/sh | |
| SOLUTION_FILE="src/Foo.sln" | |
| MSBUILD_PATH="C:/Windows/Microsoft.NET/Framework64/v4.0.30319/MSBuild.exe" | |
| NUGET_PATH="nuget" | |
| NUGET_SOURCE="https://www.myget.org/F/myfeed/" | |
| NUNIT_PATH="src/Packages/NUnit.Runners.2.6.3/tools/nunit-console.exe" | |
| NUGET_PROJECTS=("src/Foo.Client/Foo.Client.csproj") | |
| using System; | |
| using System.Collections.Generic; | |
| public class SettingsValueEqualityComparer : IEqualityComparer<object> | |
| { | |
| public new bool Equals(object a, object b) | |
| { | |
| // If the equality operator considers them to be equal, great! | |
| // Both being null should fall in this case. | |
| if (a == b) |
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| package main | |
| import ( | |
| "net/http" | |
| _ "net/http/pprof" | |
| ) | |
| func main() { | |
| http.HandleFunc("/", serveHTTP) | |
| http.ListenAndServe(":8080", nil) |
| func main() { | |
| r := http.NewServeMux() | |
| r.HandleFunc("/", serveHTTP) | |
| r.Handle("/debug/", http.DefaultServeMux) | |
| http.ListenAndServe(":8080", r) | |
| } |
| func main() { | |
| r := mux.NewRouter() | |
| r.HandleFunc("/", serveHTTP) | |
| r.Handle("/debug/", http.DefaultServeMux) | |
| http.ListenAndServe(":8080", r) | |
| } |
| func main() { | |
| r := gin.New() | |
| r.GET("/", serveHTTP) | |
| r.Any("/debug/*path", gin.WrapH(http.DefaultServeMux)) | |
| http.ListenAndServe(":8080", r) | |
| } |
| { | |
| "name": "say-hi", | |
| "version": "0.1.1", | |
| "dependencies": { | |
| "semver": "^7.3.2" | |
| }, | |
| "bin": "./say-hi.js" | |
| } |