Skip to content

Instantly share code, notes, and snippets.

View cwharris's full-sized avatar
🖖

Christopher Harris cwharris

🖖
View GitHub Profile
@cwharris
cwharris / index.ts
Last active November 26, 2016 01:37
TypeScript Array<TItem> => { [key: TKey] }: TItem
import { toKeyedObjectWithNumber } from "./toKeyedObjectWithNumber";
var items = [
{ id: 1 },
{ id: 2 },
{ id: 3 }
];
var itemsById = toKeyedObject(items, item => item.id);
@cwharris
cwharris / SinglePageMiddleware.cs
Last active February 2, 2017 04:56
AspNetCore SinglePageMiddleware.cs
using System;
using System.Threading.Tasks;
using System.Threading;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.StaticFiles;
using Microsoft.Extensions.FileProviders;
using Microsoft.Extensions.Logging;
namespace ChristopherHarris
using System.Collections.Generic;
using System.Runtime.CompilerServices;
using UnityEngine;
namespace Game.Curves
{
public static class BezierCurve
{
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static Vector3 Evaluate(
@cwharris
cwharris / Program.cs
Last active July 13, 2018 22:01
Permutate
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
public class Program
{
public static void Main()
{
var randomPassword =
@cwharris
cwharris / GroupByContinuity.cs
Last active July 18, 2018 22:05
Rx Grouping by continuity of a key
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reactive.Linq;
namespace ConsoleApplication1
{
internal class Program
{
public static void Main(string[] args)
@cwharris
cwharris / Netgear-A7000.md
Created December 10, 2018 22:05
Useful Ubuntu Setup Stuff
https://askubuntu.com/questions/1025695/netgear-a7000-on-ubuntu-16-04-not-working
sudo apt-get update
sudo apt-get install git dkms
git clone https://github.com/zebulon2/rtl8814au.git
sudo dkms add ./rtl8814au 
sudo dkms build -m rtl8814au -v 4.3.21
sudo dkms install -m rtl8814au -v 4.3.21
@cwharris
cwharris / install-1password.sh
Last active July 21, 2023 14:22
Install 1Password
#!/bin/bash
# wget -O - <this gist> | bash
set -Eeox pipefail
# install 1password
sudo apt-get -y install curl
curl -sS https://downloads.1password.com/linux/keys/1password.asc | sudo gpg --dearmor --output /usr/share/keyrings/1password-archive-keyring.gpg
echo 'deb [arch=amd64 signed-by=/usr/share/keyrings/1password-archive-keyring.gpg] https://downloads.1password.com/linux/debian/amd64 stable main' | sudo tee /etc/apt/sources.list.d/1password.list