Skip to content

Instantly share code, notes, and snippets.

View michac's full-sized avatar

Michael Christiansen michac

  • Unwired Revolution
View GitHub Profile

All Development Modifiers in EU5

There are three modifier types that affect development growth:

Modifier Key Scope Effect
local_monthly_development Location Flat monthly development added
global_monthly_development Country Flat monthly development added to all locations
local_monthly_development_modifier Location Percentage multiplier on development growth
using System.Collections.Immutable;
using LanguageExt;
namespace RemoteLink.Server.HttpFileServerCore.Common;
public record SplitSequence<T>(ImmutableList<T> Left, ImmutableList<T> Right);
public static class SplitSequenceMethods
{
public static SplitSequence<T> Partition<T>(this Seq<T> sequence, Func<T, bool> predicate)
@michac
michac / Startup.cs
Created April 17, 2020 17:58
Pluralsight: Securing Angular Apps: API Startup.cs
using System;
using System.Linq;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Mvc.Authorization;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using SecuringAngularApps.API.Model;