Skip to content

Instantly share code, notes, and snippets.

View maxbeatty's full-sized avatar

Max Beatty maxbeatty

View GitHub Profile
@maxbeatty
maxbeatty / hoc.js
Last active September 25, 2017 18:33
Trying to pass a React component in `getInitialProps` to a higher order component in next.js
import React from "react";
export default function MainLayout(Child) {
return class MainLayoutComponent extends React.Component {
static getInitialProps(context) {
return Child.getInitialProps(context);
}
render() {
@maxbeatty
maxbeatty / lambda.js
Created August 22, 2017 20:01
using node-postgres (`pg`) in AWS Lambda
import λ from "apex.js";
import { Pool } from "pg";
// connection details inherited from environment
const pool = new Pool({
max: 1,
min: 0,
idleTimeoutMillis: 120000,
connectionTimeoutMillis: 10000
});
@maxbeatty
maxbeatty / index.js
Created July 18, 2017 21:01
zeit/micro w/ sequelize
const Sequelize = require("sequelize");
const sequelize = new Sequelize(
process.env.DB_NAME,
process.env.DB_USER,
process.env.DB_PASS,
{
host: process.env.DB_HOST,
dialect: "mysql"
}
@maxbeatty
maxbeatty / b.js
Created March 5, 2017 18:47
AWS Lambda module caching anti-pattern
var first = true;
module.exports = function () {
console.log(`first: ${first}`);
if (first) {
first = false;
}
};
@maxbeatty
maxbeatty / example.md
Created February 1, 2017 18:55
example diff block in markdown

use diff to get fun red and green lines

- old
+ new

Keybase proof

I hereby claim:

  • I am maxbeatty on github.
  • I am maxbeatty (https://keybase.io/maxbeatty) on keybase.
  • I have a public key ASAj0U1E22K3wIaNOVtmMEMpV-5pX4F7hcPUOjCl58mg7Qo

To claim this, I am signing this object:

{
"extends": "future/react"
}
assert = require('assert');
require('dotenv').config({path: 'production.env'});
assert.equal(process.env.DB_USER, 'root')
assert.equal(process.env.PORT, 80)
@maxbeatty
maxbeatty / class.coffee
Created March 9, 2015 23:56
CoffeeScript Class Constructor Names
class Animal
constructor: ->
@noise = "BOOM"
speak: -> console.log @noise
class Dog extends Animal
constructor: ->
@noise = "BARK"
@maxbeatty
maxbeatty / bdc.js
Last active August 29, 2015 14:12 — forked from bendc/functional-inheritance.js
Constructor comparisons in performance and memory usage
function car() {
return {
start: function() {
return "Engine on."
},
accelerate: function() {
return "Let's go!"
}
}
}