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] | |
| major = "!awk -F. '{OFS=\".\"; $1+=1; $2=0; $3=0; print $0}' <<<" | |
| minor = "!awk -F. '{OFS=\".\"; $2+=1; $3=0; print $0}' <<<" | |
| patch = "!awk -F. '{OFS=\".\"; $3+=1; print $0}' <<<" | |
| vnext = "!f() { git $1 $(git describe --tags --abbrev=0); }; f" | |
| release = "!f() { msg=$(git changelog); git tag -m \"${msg}\" --edit $(git vnext $1); }; f" | |
| --- | |
| Usage: | 
  
    
      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
    
  
  
    
  | const webpack = require('webpack'); | |
| const WebpackDevServer = require('webpack-dev-server'); | |
| const config = require('./webpack.config'); | |
| const server = new WebpackDevServer(webpack(config), { | |
| publicPath: config.output.publicPath, | |
| contentBase: "./", | |
| proxy: { | |
| "/post": { | |
| target: "http://localhost:3001", | 
  
    
      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 SerialGroupByOperator | |
| { | |
| public static IObservable<IGroupedObservable<TKey, TElement>> SerialGroupBy<TKey, TSource, TElement>( | |
| this IObservable<TSource> stream, Func<TSource, TKey> keySelector, Func<TSource, TElement> elementSelector) => | |
| Observable.Create<IGroupedObservable<TKey, TElement>>(observer => stream | |
| .Scan<TSource, GroupedObservable<TKey, TElement>>(null, (current, next) => | |
| { | |
| var key = keySelector(next); | |
| if (current == null) |