geekingreen
  • Home
  • Contact
Subscribe
JavaScript

NodeJS v4.0

  • Isaac Gifford

Isaac Gifford

Sep 8, 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 } } query{ data: { genericResult: { content: , __typename: 'GenericResult' } } } JSON responseso we have
Apr 30, 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 [https://codepen.io/geekingreen/pen/KdEExr] by Isaac Gifford (@geekingreen [https://codepen.io/geekingreen]) on CodePen [https://codepen.io]
Mar 30, 2021

letsencrypt - automated free SSL certificates

Login as root sudo su Download git clone [email protected]: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
Dec 15, 2015 1 min read
geekingreen © 2023
Powered by Ghost