Skip to content

Instantly share code, notes, and snippets.

View marshalhayes's full-sized avatar
:octocat:
Coding things I'm passionate about!

Marshal Hayes marshalhayes

:octocat:
Coding things I'm passionate about!
View GitHub Profile
@omnibs
omnibs / 101-rx-samples.md
Last active June 22, 2024 17:22
101 Rx Samples in C#

101 Rx Samples in C#

This was taken from http://rxwiki.wikidot.com/101samples, because I wanted to be able to read it more comfortable with syntax highlighting.

Here's the unedited original, translated to Github Markdown glory:

101 Rx Samples - a work in progress

@davidlandry93
davidlandry93 / viz.py
Created January 14, 2019 21:45
Simple visualization of MindSumo challenge data
import matplotlib.pyplot as plt
import numpy as np
if __name__ == '__main__':
input_data = 'data/input_training_0000_0099.npy'
label_data = 'data/label_training_0000_0099.npy'
xs = np.load(input_data)
ys = np.load(label_data)
@arkada38
arkada38 / AAA.md
Last active February 4, 2024 14:39
Using Tailwind CSS v3.2 with Blazor (.Net 6 or above)

Using Tailwind CSS v3.2 with Blazor (.Net 6 or above)

This method works for Blazor Server and Blazor WebAssembly with hot reload, style isolation and tailwind jit compilation.

Setup with using Standalone Tailwind CSS CLI without Node.js

For this method you need added to path Tailwind CSS CLI binary. Read more about Standalone CLI.

Just create a StaticAssets folder in the root of your project with next structure.

@davidfowl
davidfowl / .NET6Migration.md
Last active June 16, 2024 05:29
.NET 6 ASP.NET Core Migration