- Every Store (wants) every Product
- Every Warehouse (Has) every Product
- Stores (Must_Use) certain Warehouses for certain Products.
- A graph Edge only references two Nodes: from & to
- How can we constrain an Edge to a third Node (Product)
using System.Drawing; | |
// read file as bytes | |
var path = @"c:\dev\ent.png"; | |
var bytes = File.ReadAllBytes(path); | |
// save as text |
using System.IO; | |
var path = @"c:\dev"; | |
Directory.Delete(path, true); | |
Directory.CreateDirectory(path); | |
var array = new[] { "a", "b", "c" }; | |
for (double i = 0; i < 500; i = i + .35) |
using Microsoft.Azure.WebJobs; | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
public static class Csv | |
{ | |
public static IEnumerable<T> Read<T>(ExecutionContext context, string file) where T : new() |
NuGet | |
WinGet | |
GitHub | |
Git versus GitHub | |
Visual Studio Code | |
Visual Studio Code versus Visual Studio | |
Visual Studio Version | |
Visual Studio Edition | |
Visual Studio Architecture |
using System; | |
using System.Linq; | |
using System.Collections.Generic; | |
using JerryUnit; | |
using static JerryUnit.UnitTestAttribute; | |
public class Program | |
{ | |
public static void Main() |
# Databricks notebook source | |
# COMMAND ---------- | |
%py | |
def recurse(path: str) -> [str]: | |
def is_delta_path_valid(path: str) -> bool: | |
try: | |
return [] != [x for x in dbutils.fs.ls(path) if x.isDir() and x.name == "_delta_log/"] |
class Data(dict): | |
__getattr__, __setattr__ = dict.get, dict.__setitem__ | |
tables = [ | |
Data( | |
path = "abfss://name@acct/path1", | |
database = "my_db", | |
table = "table1", | |
), | |
Data( |
public class Program | |
{ | |
static void Main() | |
{ | |
BenchmarkRunner.Run<Harness>(); | |
} | |
} | |
public class Harness | |
{ |
public class Program | |
{ | |
static void Main() | |
{ | |
BenchmarkRunner.Run<Harness>(); | |
} | |
} | |
public class Harness | |
{ |