Skip to content

Instantly share code, notes, and snippets.

@JoeRobich
JoeRobich / Vink.tmTheme
Last active September 16, 2015 19:18
Vink for VsCode v0.8
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>name</key>
<string>Vink</string>
<key>settings</key>
<array>
<dict>
<key>settings</key>
@JoeRobich
JoeRobich / ThingTemplateSelector.cs
Created June 30, 2016 14:21
XAML DataTemplateSelector Example
using System;
using System.Collections.Generic;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
namespace DataTemplates
{
public class ThingTemplateSelector : DataTemplateSelector
{
private readonly Dictionary<Type, Func<DataTemplate>> TemplatesByType;
@JoeRobich
JoeRobich / mxml.rb
Created July 16, 2016 16:24
Attempt at a MXML Lexer for the rouge ruby gem.
# -*- coding: utf-8 -*- #
module Rouge
module Lexers
class MXML < ActionScript
title "MXML"
desc "MXML"
tag 'mxml'
filenames '*.mxml'
mimetypes 'application/xv+xml'
@JoeRobich
JoeRobich / keybase.md
Last active February 8, 2017 19:59
keybase.io

Keybase proof

I hereby claim:

  • I am joerobich on github.
  • I am joeyrobichaud (https://keybase.io/joeyrobichaud) on keybase.
  • I have a public key whose fingerprint is E069 C2C9 753A F124 6FC2 D4C5 F34B 212E FEE6 787E

To claim this, I am signing this object:

@JoeRobich
JoeRobich / Visual Studio Dark Style.json
Last active May 7, 2019 22:03
Visual Studio Styles for VS for Mac
{
"name": "Visual Studio Dark",
"version": "1.0.0",
"description": "Reminiscent of Microsoft Visual Studio's default dark colors",
"originator": "Microsoft",
"palette": [
{ "name": "text-white", "value": "#dcdcdc" },
{ "name": "background-black", "value": "#1e1e1e" },
{ "name": "comment-green", "value": "#57a64a" },