Proposed/ran by Andreas Schmidt, Nokia
Based off his design around the Nokia Places API
- Picked JSON, no support for XML
- Added ?accept=application/json to the URL in the browser for a raw response
| [alias] | |
| ## Compound command alias | |
| # View all alias | |
| alias = !"git config --list | grep 'alias\\.' | sed 's/alias\\.\\([^=]*\\)=\\(.*\\)/\\1\\t=> \\2/' | sort" | |
| # Pull in remote changes for the current repository and all its submodules | |
| p = !"git pull; git submodule foreach git pull origin master" | |
| # Stage all missing files for delete | |
| r = !"git ls-files -z --deleted | xargs -0 git rm" | |
| # Show all files modified using `git assume` alias | |
| assumed = !"git ls-files -v | grep ^h | cut -c 3-" |
Proposed/ran by Andreas Schmidt, Nokia
Based off his design around the Nokia Places API
| using System.Collections.Generic; | |
| namespace System.Linq | |
| { | |
| public static class LeftJoinExtension | |
| { | |
| public static IEnumerable<TResult> LeftJoin<TLeft, TRight, TKey, TResult>( | |
| this IEnumerable<TLeft> left, | |
| IEnumerable<TRight> right, | |
| Func<TLeft, TKey> leftKeySelector, |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using MassTransit; | |
| using MassTransitExperimentShared; | |
| using System.Threading; | |
| namespace MassTransitConsumer | |
| { |