https://www.typescriptlang.org/docs/handbook/react-&-webpack.html
npm install -g npm@next
- if
npx
isn't found install that globally too:npm install -g npx
(wasn't present on my Azure app service VM even though node & npm were current)
using Newtonsoft.Json; | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Threading.Tasks; | |
using MyAppNamespace; | |
namespace MyAppNamespace.Util | |
{ | |
public class MyAppInfo |
module AsyncPeriodicWork = | |
let createCanceller () = | |
new System.Threading.CancellationTokenSource() | |
let start (canceller:System.Threading.CancellationTokenSource) (intervalMillis:int) (work:(unit->unit)) (onFault:(System.Exception->unit) option)= | |
let loop = async { | |
printfn "starting..." | |
try |
https://www.typescriptlang.org/docs/handbook/react-&-webpack.html
npm install -g npm@next
npx
isn't found install that globally too: npm install -g npx
(wasn't present on my Azure app service VM even though node & npm were current)using System; | |
using System.Collections.Concurrent; | |
using System.Collections.Generic; | |
using System.Threading; | |
using System.Linq; | |
using LanguageExt; | |
namespace foo | |
public class QueuedDemux<T> : IDisposable |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
namespace ConsoleApp | |
{ | |
public static class Program | |
{ | |
static void Main(string[] args) | |
{ |
interface Foo { | |
(a:string): void | |
bar: string | |
} | |
const baz = (a: string): void => { | |
} | |
baz.bar = "" |
TLS Cipher Suites in Windows 7
That page states:
Windows 7, Windows 8, and Windows Server 2012 are updated by the Windows Update by the 3042058 update which changes the priority order. See Microsoft Security Advisory 3042058 for more information.
That advisory states:
The update added additional cipher suites to the default list on affected systems and improved cipher suite priority ordering.
It has been available in Windows Update since Oct 2015. Win7 only had one update actually named as a "Service Pack" ... SP1 in 2011. After that there were many patches pushed via Windows Update. The first "Convenience Rollup" of these patches was in July 2016. If you just install that rollup the cipher updates will be included, and it will take care of any pre-reqs. See [July 21, 2016 — KB3172605](https://support.microsoft.com/en-us/
Jimmy Bogard is the creator/maintainer of Automapper.
DO NOT use AutoMapper except in cases where the destination type is a flattened subset of properties of the source type
AVOID using AutoMapper when you have a significant percentage of custom configuration in the form of Ignore or MapFrom. The "Auto" is for "automatic" and if it's not "Auto" then don't use this library, it will make things more, not less complicated.
public record Contact | |
{ | |
public required PersonalName Name { get; init; } | |
public required EmailAddress Email { get; init; } | |
} | |
public record PersonalName | |
{ | |
public required string First | |
{ |