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
| namespace GlobalHotKey | |
| { | |
| public class GlobalKeyboardHookEventArgs : HandledEventArgs | |
| { | |
| public GlobalKeyboardHook.KeyboardState KeyboardState { get; private set; } | |
| public GlobalKeyboardHook.LowLevelKeyboardInputEvent KeyboardData { get; private set; } | |
| public GlobalKeyboardHookEventArgs( | |
| GlobalKeyboardHook.LowLevelKeyboardInputEvent keyboardData, | |
| GlobalKeyboardHook.KeyboardState keyboardState) |
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
| { | |
| "Accessibility": [ | |
| "fab fa-accessible-icon", | |
| "fas fa-american-sign-language-interpreting", | |
| "fas fa-assistive-listening-systems", | |
| "fas fa-audio-description", | |
| "fas fa-blind", | |
| "fas fa-braille", | |
| "fas fa-closed-captioning", | |
| "far fa-closed-captioning", |
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
| ; Script generated by the Inno Setup Script Wizard. | |
| ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! | |
| #define MyAppName "dotnet core windows service" | |
| #define MyAppVersion "1.5" | |
| #define MyAppPublisher "dotnetthoughts" | |
| #define MyAppURL "http://dotnetthoughts.net/" | |
| [Setup] | |
| ; NOTE: The value of AppId uniquely identifies this application. |
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
| // Detecting data URLs | |
| // data URI - MDN https://developer.mozilla.org/en-US/docs/data_URIs | |
| // The "data" URL scheme: http://tools.ietf.org/html/rfc2397 | |
| // Valid URL Characters: http://tools.ietf.org/html/rfc2396#section2 | |
| function isDataURL(s) { | |
| return !!s.match(isDataURL.regex); | |
| } | |
| isDataURL.regex = /^\s*data:([a-z]+\/[a-z]+(;[a-z\-]+\=[a-z\-]+)?)?(;base64)?,[a-z0-9\!\$\&\'\,\(\)\*\+\,\;\=\-\.\_\~\:\@\/\?\%\s]*\s*$/i; |
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 static class ObservableExtensions | |
| { | |
| /// <summary> | |
| /// Group observable sequence into buffers separated by periods of calm | |
| /// </summary> | |
| /// <param name="source">Observable to buffer</param> | |
| /// <param name="calmDuration">Duration of calm after which to close buffer</param> | |
| /// <param name="maxCount">Max size to buffer before returning</param> | |
| /// <param name="maxDuration">Max duration to buffer before returning</param> | |
| public static IObservable<IList<T>> BufferUntilCalm<T>(this IObservable<T> source, TimeSpan calmDuration, Int32? maxCount=null, TimeSpan? maxDuration = null) |
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
| using System; | |
| using System.IO; | |
| using System.Collections.Generic; | |
| using System.Text; | |
| using System.Text.RegularExpressions; | |
| namespace LaTrompa.Web | |
| { | |
| public class CssParser |