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
{ | |
"$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json", | |
"blocks": [ | |
{ | |
"alignment": "left", | |
"segments": [ | |
{ | |
"foreground": "#61AFEF", | |
"properties": { | |
"style": "full" |
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 ErrorHandlerMiddleware | |
{ | |
public class HttpStatusCodeException : Exception | |
{ | |
public HttpStatusCode StatusCode { get; set; } | |
public HttpStatusCodeException(HttpStatusCode statusCode) | |
{ | |
StatusCode = statusCode; | |
} |
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
#IfWinActive ahk_class Chrome_WidgetWin_1 | |
{ | |
^WheelDown::return | |
^WheelUp::return | |
#MaxHotkeysPerInterval 1000 | |
} | |
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 UploadModule : NancyModule | |
{ | |
public class ApiModel | |
{ | |
public string Name { get; set; } | |
public string ContentType { get; set; } | |
public long FileSize { get; set; } | |
public string FileKey { get; set; } | |
} | |
public UploadModule() |