Using a Trie for Autocomplete in Flutter 🌳

The retrieval package is a simple implementation of the trie data structure written in pure Dart. Let's combine the retrieval library with Flutter's Autocomplete widget for efficient lookup of auto-completions. Autocomplete Without a Trie To…

Setting up GraphQL Code Generator with Gatsby ✨

For my Gatsby site, I automatically generate GraphQL query types for TypeScript, with GraphQL Code Generator . This tool reads your Gatsby GraphQL schema, parses Gatsby's code for graphql tags, then creates TypeScript type definitions for all the…