You'll find the talks here
Approaching frontend as a backend developer, Svelte feels surprisingly pythonic. Let's take a quick look at what's familiar, what's foreign, and how to explore the gap.
You'll find the talks here
Approaching frontend as a backend developer, Svelte feels surprisingly pythonic. Let's take a quick look at what's familiar, what's foreign, and how to explore the gap.
> Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux
--Restart
> dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
> dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
--Restart| public class Pattern<TReturn> | |
| : List<(Type Type, Func<object, TReturn> Map)> | |
| { | |
| public void Add<T>(Func<T, TReturn> map) | |
| => Add((typeof(T), o => map((T)o))); | |
| public Pattern<TReturn> Default(TReturn val) | |
| { | |
| Add((object _) => val); | |
| return this; |
| using System; | |
| using System.Threading.Tasks; | |
| using System.Collections.Generic; | |
| using System.Collections.ObjectModel; | |
| using System.Diagnostics; | |
| using System.Net.Sockets; | |
| namespace ConsolePortScanner | |
| { | |
| class MainClass |
[RegularExpression(@"^\$?\d+(\.(\d{2}))?$")]