Skip to contentProgramming
Posts in Programming
2021
- ·1 min readHow To Code in TypeScriptA ten-part TypeScript series I wrote for DigitalOcean, from basic types to generics, namespaces, and modules. This post just points to it.typescriptexternal-technical-writingdigitalocean
2020
- ·29 min readAutomated Deployment of React Native Apps Using Fastlane - Part 1 - Play StoreEveryone that has been releasing apps manually knows how tiresome and time consuming the process is, the main idea behind this...ci-cdreact-nativefastlane
2019
- ·32 min readHow To Automate Deployments to DigitalOcean Kubernetes with CircleCIHaving an automated deployment process is a requirement for a scalable and resilient application, and GitOps, or Git-based DevOps, has rapidly become a popular method of organizing CI/CD with a Git repository as a “single source of truth.” Tools like CircleCI…digitaloceankubernetesci-cd
2018
- ·10 min readUsing CircleCI Workflows to Replicate Docker Hub Automated BuildsCircleCI workflows is a powerful feature that can be used to make your deployment process simple and intuitive.circlecidockerci-cd
- ·4 min readIntroduction to GraphQL Mongo HelpersIf you are using MongoDB and GraphQL, you probably have some arguments on your resolvers to filter the data returned from MongoDB. Using those helpers you can reduce the amount of code duplication when doing that!graphqlmongodbnode.js
- ·3 min readClient-Supplied Custom Sorting Using GraphQLIt’s not uncommon the need to sort/order data returned from an API, based on arguments sent by the client. With REST we could just use query-strings, but how to do it in GraphQL?graphqlsortinggraphql-schema-design