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.Collections; | |
| using System.Collections.Generic; | |
| using System.ComponentModel.DataAnnotations; | |
| using System.Linq; | |
| using JetBrains.Annotations; | |
| namespace ConsoleApp1 | |
| { | |
| public static class DataAnnotationsValidator |
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.Collections.Generic; | |
| using System.Reactive.Concurrency; | |
| using System.Reactive.Linq; | |
| using System.Threading; | |
| using System.Threading.Tasks; | |
| namespace System.Reactive.ApiMappings | |
| { | |
| public static class ObservableEx | |
| { |
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
| [alias] | |
| all = "!f() { ls -R -d */.git | sed s,/.git,, | xargs -P10 -I{} bash -c \"echo {} && git -C {} $1\"; }; f" | |
| co = checkout | |
| cob = checkout -b | |
| coo = !git fetch && git checkout | |
| br = branch | |
| brd = branch -d | |
| brd = branch -D | |
| merged = branch --merged | |
| st = status |
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.Collections.Generic; | |
| public static class ListEx | |
| { | |
| public static void AddContent(this List<string> list, string content) | |
| { | |
| list.Add($"{DateTime.Now:O} - {content}"); | |
| } | |
| } |
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.Collections.Concurrent; | |
| using System.Collections.Generic; | |
| using System.Configuration; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Net.Http; | |
| using System.Net.Http.Headers; | |
| using System.Reactive.Concurrency; | |
| using System.Reactive.Linq; |
OlderNewer