Skip to content

Instantly share code, notes, and snippets.

@Aveline67
Aveline67 / AspNetCoreIconsTagHelper.cs
Last active November 26, 2022 22:00
Tag Helpers in MVC6 for font awesome and material icons
using Microsoft.AspNetCore.Razor.TagHelpers;
namespace TagHelpers
{
[HtmlTargetElement("i", Attributes = FontAwesomeIconValueAttributeName)]
public class FontAwesomeTagHelper : TagHelper
{
private const string FontAwesomeIconValueAttributeName = "fa";
[HtmlAttributeName(FontAwesomeIconValueAttributeName)]
@Aveline67
Aveline67 / Program.cs
Last active May 12, 2020 00:45
ultra minimalistic TiKV client in C#
using Google.Protobuf;
using Grpc.Net.Client;
using Kvrpcpb; // generated from proto files
using System;
using System.Threading.Tasks;
using Tikvpb; // generated from proto files
namespace TiKV
{
public static class Test