I hereby claim:
- I am mathewbyrne on github.
- I am mathewbyrne (https://keybase.io/mathewbyrne) on keybase.
- I have a public key ASBeAW00p8JRympIF3NMKEWZ-7jWHQ14pnYiDQ-YO-aI9wo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
interface User { | |
name: string, | |
id: number, | |
avatar?: string, | |
} | |
const user: User = { | |
name: 'Testing', | |
id: 1234, |
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Navigation Test</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> | |
<script> | |
var isTouchDevice = 'ontouchstart' in document.documentElement; | |
window.onload = function () { | |
var where = document.getElementById('where'); |
<?php | |
namespace Jb\AdminBundle\Http; | |
use Symfony\Component\HttpFoundation\Response; | |
class CsvResponse extends Response | |
{ | |
protected $data; |
#!/bin/zsh | |
# Requires zsh with zmv loaded | |
# autoload -U zmv | |