geekingreen
  • Home
  • Contact
Subscribe
JavaScript

React SelectBox Component

  • Isaac Gifford

Isaac Gifford

Mar 30, 2021

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.

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

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

NodeJS v4.0

Finally after months of separation, node and iojs have been merged together to form Node v4.0 [https://nodejs.org/en/blog/release/v4.0.0/]!
Sep 8, 2015
geekingreen © 2023
Powered by Ghost