Skip to content

Instantly share code, notes, and snippets.

View ajdaniel's full-sized avatar
:shipit:
Shipping code

Andy Daniel ajdaniel

:shipit:
Shipping code
View GitHub Profile
@ajdaniel
ajdaniel / keybase.md
Created May 19, 2022 13:52
keybase.md

Keybase proof

I hereby claim:

  • I am ajdaniel on github.
  • I am andrewdaniel (https://keybase.io/andrewdaniel) on keybase.
  • I have a public key ASD_fd9YvBcW7Kj2ZuzUT29zhW_qjzUYeSqXlGJy7rDwCwo

To claim this, I am signing this object:

@ajdaniel
ajdaniel / index.html
Created April 11, 2018 18:11
HTML Meta Tag for mobile to disable pinch & zoom
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0">
@ajdaniel
ajdaniel / _HowToUseProxyquireInTS.md
Last active April 25, 2017 10:53
How to use proxyquire with Typescript compiling to es6/commonjs

We hit some trouble using proxyquire in our Typescript which is our express server. The problem was, with our Typescript setup, module exports weren't transpiled into module.exports variables. This was because we were compiling to commonjs in es6. We found no other library to manage this, so we hacked the code to include a module.exports variable for proxyquire to hook into.