geekingreen
  • Home
  • Contact
Sign in Subscribe
JavaScript

NodeJS v4.0

  • Isaac Gifford

Isaac Gifford

08 Sep 2015

Finally after months of separation, node and iojs have been merged together to form Node v4.0!

Sign up for more like this.

Enter your email
Subscribe

Apollo Client pagination hack

Maybe there is a better way to handle a situation where your graphql query is something like (and if there is please tell me!): query myQuery($uniqId: string) { genericResult(uniqId: $uniqId) { // nope no id field available here, sorry content { ... } __typename } } { data: { genericResult: { content: <someArray>, __typename: 'GenericResult'
30 Apr 2021 1 min read

React SelectBox Component

Awhile back I wanted to see what it would take to create a custom accessible select component in React. This is what I ended up with. See the Pen React SelectBox by Isaac Gifford (@geekingreen) on CodePen.
30 Mar 2021

letsencrypt - automated free SSL certificates

Login as root sudo su Download git clone git@github.com:letsencrypt/letsencrypt.git Setup authentication nginx server { listen 443; ssl_certificate /etc/letsencrypt/live/sub1.site1.com/fullchain.pem; ssl_certificate_key /etc/letsencrypt/live/sub1.site1.com/privkey.pem; ... location /.well-known { alias /tmp/.well-known; } } Create site configs site&
15 Dec 2015 1 min read
geekingreen © 2025
Powered by Ghost