Skip to content

Instantly share code, notes, and snippets.

View natalie-o-perret's full-sized avatar
🐈
Meow.

Natalie Perret natalie-o-perret

🐈
Meow.
View GitHub Profile
@natalie-o-perret
natalie-o-perret / machine-deep-learning-notes.md
Created February 18, 2019 22:08
Machine Learning / Deep Learning Notes

wip

WPF: a typo in WTF!

Windows Presentation Foundation

Features

  • Separation UI / Behaviour
  • MVVM
  • Intelligent Layout
  • Scalable Graphics (vectors != rasters)

Statements

Defining How Your Data Is Stored

CREATE DATABASE ...

... creates a database with the given name...

My Books

A list of books I have and some I don't.

Wanted :)

Name
C# in Depth, Fourth Edition
Get Programming with F#
@natalie-o-perret
natalie-o-perret / docker+kubernetes-notes.md
Last active April 22, 2019 18:16
Docker + Kubernetes Notes

Docker

Some definitions

  • Layer: Files generated from running some command, also called intermediate images. Reused by multiple images to reduce image and size.
  • Image: A docker container image is created using a dockerfile (ie. build). Every line in a dockerfile will create a layer.
  • Container: an instance of an (read-only) image.
  • Docker Client: the CLI tool that allows the user to interact with the Docker Server.
  • Docker Server: aka Docker Daemon, the background service running on the host that manages the building, running and distributing Docker containers.
@natalie-o-perret
natalie-o-perret / Program.fs
Created April 17, 2020 13:14
Hot / Cold asynchrony
open System.Threading.Tasks
open FSharp.Control.Tasks.V2.ContextInsensitive
let aTask = task {
do! Task.Delay(1000)
printfn "I'm in aTask"
}
let anAsync = async {
@natalie-o-perret
natalie-o-perret / Program.cs
Last active June 16, 2020 21:52
Kevin Goss - Design and Code Tasks from Scratch
using System;
using System.Threading;
using System.Collections.Concurrent;
using System.Runtime.CompilerServices;
namespace CSharpStuff
{
// Alternative to referencing Microsoft.VisualStudio.Threading
public class SingleThreadedSynchronizationContext : SynchronizationContext