JCM

Programming

Posts em Programming

    1. How 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.
    1. Automated 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...
    1. How 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…
    1. Using 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.
    2. Introduction 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!
    3. Client-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?