Skip to content

Instantly share code, notes, and snippets.

View montlebalm's full-sized avatar
✌️

Chris Montrois montlebalm

✌️
  • Airtable
  • Louisville, CO
View GitHub Profile
@montlebalm
montlebalm / test.html
Last active March 6, 2016 20:29
Handlebars perf comparison of partials vs templates
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Handlebars: Helper vs Partial</title>
</head>
<body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/4.0.5/handlebars.min.js"></script>
<script id="template" type="x-template/handlebars">
<p>Hey there my name is {{name}}</p>
@montlebalm
montlebalm / keybindings.json
Last active June 28, 2017 22:36
VS Code - Reload Chrome
[
{
"key": "cmd+r cmd+r",
"command": "workbench.action.tasks.runTask",
"args": "Reload Chrome"
}
]
@montlebalm
montlebalm / index.tsx
Created April 19, 2023 16:35
t3-solidjs
import { Component, createSignal, For, JSX } from "solid-js";
//
// Types
//
type Mark = "x" | "o";
type Coord = `${number},${number}`;