Skip to content

Instantly share code, notes, and snippets.

View joshuacookdev's full-sized avatar
🌤️
New skills loading: Ada & MILCOM

Joshua Cook joshuacookdev

🌤️
New skills loading: Ada & MILCOM
View GitHub Profile
@joshuacookdev
joshuacookdev / ExplicitImplementations.cs
Last active November 22, 2021 18:16
Very direct example of explicit interface implementations, and how it works/doesn't work (for a quick demo on the topic for a work call).
using System;
using System.Text.Json;
Program.Main();
// A simple interface for our demo.
public interface IDatasetInfo
{
int ImplementedInBoth { get; }
int ImplementedInInterface { get; }
@joshuacookdev
joshuacookdev / readme.md
Created July 28, 2021 13:52 — forked from ZacharyPatten/readme.md
C# GitHub Repository Guide

GitHub Repository Checklist (C#)

Have a repository on GitHub? Planning on making a repository on GitHub? This checklist is intended to introduce you to various features that may help you make the most of your GitHub repository with specific recommendations for C# repsoitories.

Checklist

These are only recommendations.
They may not be appropriate for all repositories.
They are in no particular order.
Click each item to expand for more information.

@joshuacookdev
joshuacookdev / .gitconfig
Last active February 7, 2022 18:53
Non-user setup for my git config
[core]
editor = code
[difftool "compare-in-code"]
name = CodeCompare
cmd = code --wait --diff $REMOTE $LOCAL
[alias]
ec = config --global -e
catchup = pull --rebase --prune