geekingreen
  • Home
  • Contact
Sign in Subscribe
JavaScript

React SelectBox Component

  • Isaac Gifford

Isaac Gifford

30 Mar 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 } } { data: { genericResult: { content: <someArray>, __typename: 'GenericResult'
30 Apr 2021 1 min read

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

NodeJS v4.0

Finally after months of separation, node and iojs have been merged together to form Node v4.0!
08 Sep 2015
geekingreen © 2025
Powered by Ghost