I hereby claim:
- I am moswald on github.
- I am moswald (https://keybase.io/moswald) on keybase.
- I have a public key whose fingerprint is 9232 B29F 18F2 BD9C 0AC1 311B 8FFC 27D1 08C7 F317
To claim this, I am signing this object:
| using System; | |
| public class SplatToSerilogLogger : Splat.ILogger | |
| { | |
| public Serilog.ILogger Serilog { get; set; } = global::Serilog.Log.Logger; | |
| public void Write(string message, Splat.LogLevel logLevel) | |
| { | |
| if ((int)logLevel >= (int)Level) | |
| { |
| Skyrim.esm | |
| Update.esm | |
| Dawnguard.esm | |
| HearthFires.esm | |
| Dragonborn.esm | |
| Unofficial Skyrim Legendary Edition Patch.esp | |
| SkyTEST-RealisticAnimals&Predators.esm | |
| Lanterns Of Skyrim - All In One - Main.esm | |
| WinterholdDestruction.esm | |
| Campfire.esm |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <key name="Software"> | |
| <key name="ConEmu"> | |
| <key name="Tiamat" modified="2015-08-29 17:00:13" build="150821"> | |
| <value name="ColorTable00" type="dword" data="00000000"/> | |
| <value name="ColorTable01" type="dword" data="00800000"/> | |
| <value name="ColorTable02" type="dword" data="00008000"/> | |
| <value name="ColorTable03" type="dword" data="00808000"/> | |
| <value name="ColorTable04" type="dword" data="00000080"/> | |
| <value name="ColorTable05" type="dword" data="00ff8dc4"/> |
| namespace TakeUntil | |
| { | |
| using System; | |
| using System.Reactive; | |
| using System.Reactive.Concurrency; | |
| using System.Reactive.Linq; | |
| using System.Reactive.Subjects; | |
| using System.Threading.Tasks; | |
| static class Program |
| public static class AutoRegisterViews | |
| { | |
| public static void RegisterViewsForViewModels(this IMutableDependencyResolver resolver) | |
| { | |
| var assembly = typeof(App).GetTypeInfo().Assembly; | |
| // for each type that implements IViewFor | |
| foreach (var type in assembly.DefinedTypes | |
| .Where(ti => ti.ImplementedInterfaces.Contains(typeof(IViewFor))) | |
| .Where(t => !t.IsAbstract)) |
| <x:Int32 x:Key="HubHeaderCharacterSpacing">-22</x:Int32> | |
| <x:Double x:Key="HubHeaderFontSize">78</x:Double> | |
| <FontFamily x:Key="PhoneFontFamilyNormal">Segoe WP</FontFamily> | |
| <Thickness x:Key="HubHeaderMarginThickness">15,1,0,0</Thickness> | |
| <Style x:Key="HubStyle1" TargetType="Hub"> | |
| <Setter Property="Template"> | |
| <Setter.Value> | |
| <ControlTemplate TargetType="Hub"> | |
| <Grid x:Name="HubRoot"> | |
| <Grid.Projection> |
I hereby claim:
To claim this, I am signing this object:
| Stack trace for RxApp.SuspensionHost.CreateNewAppState crash on startup: | |
| ======================================================================== | |
| ReactiveUI.DLL!ReactiveUI.PropertyBinderImplementation.bindToDirect.AnonymousMethod__13(TValue x) | |
| System.Reactive.Core.DLL!System.Reactive.AnonymousSafeObserver<T>.OnNext(T value) | |
| System.Reactive.Linq.DLL!System.Reactive.Linq.ObservableImpl.SelectMany<TSource, TResult>._.Iter.OnNext(TResult value) | |
| System.Reactive.Linq.DLL!System.Reactive.Linq.ObservableImpl.Return<TResult>._.Invoke() | |
| System.Reactive.Core.DLL!System.Reactive.Concurrency.Scheduler.Invoke(System.Reactive.Concurrency.IScheduler scheduler, System.Action action) | |
| System.Reactive.Core.DLL!System.Reactive.Concurrency.ImmediateScheduler.Schedule<TState>(TState state, System.Func<System.Reactive.Concurrency.IScheduler, TState, System.IDisposable> action) | |
| System.Reactive.Core.DLL!System.Reactive.Concurrency.Scheduler.Schedule(System.Reactive.Concurrency.IScheduler scheduler, System.Action action) |
| // holy verbosity, batman, is this (Java): | |
| someObj.getObservable() | |
| .switchMap(new Func1<Void, Observable<Void>>() | |
| { | |
| @Override | |
| public Observable<Void> call(Void _) | |
| { | |
| return someObj.getUserObservable() | |
| .map(new Func1<User, Void>() |
| // | |
| // in the View constructor | |
| this.WhenActivated(d => | |
| { | |
| d(MyListView.Events().SelectionChanged.Subscribe(args => | |
| { | |
| foreach (var item in args.AddedItems.Cast<MyModelType>()) | |
| { | |
| item.IsSelected = true; | |
| } |