Download OhMyZsh Install Homebrew Install NVM Install PHP Install Docker Desktop Install Composer Install Sequel Pro Create your SSH Key Open the config file and add Then run Install MySQL via Homebrew To stop the services in-case you have it running through docker run:
Category: Miscellaneous
Men Who Inspire – Interview Of Andy Turner By Imran Sayed
Posted onTell me a little bit about yourself and your work Every week I meet with professionals from engineers to dentists who have the same problem – achieving the IELTS score they need. They come from places like the Middle East, Asia, Canada, and even the UK. They all want to emigrate to countries like Australia,
Create Stripe Checkout In Next.js | Stripe Session | Stripe Webhook.
Posted onIn this blog you will learn how to create a stripe session, redirect the user to the stripe checkout and also create stripe webhook that listens to when the payment is made. Live Demo Example Create Next.js app Create stripe keys and put them in next.js`.env` fileCreate a stripe account if you don’t already have
Women Who Inspire – Interview with Demelza Marie
Posted onTell me a little bit about yourself and your work. My name is Demelza Marie and I am an artist and an “online course creation” coach, with specialized skills in film and video production. I have over 20 years of experience in video production. How did you come into your current field? Could you please
Are you using Fragments in GraphQL?
Posted on🤔 Have you been thinking about learning to use fragments? Well, here is the simplest description with demo.🎓 When we need to use/repeat the same fields in multiple queries, making changes can be tedious as we would have to update at all places.😬 This is where fragments come in handy 💡 A Fragment is a
New PWA Gatsby WordPress Theme – in React using ACF and wp-graphql
Posted onIn this blog, you will know about a new Gatsby WordPress Theme, that uses a decoupled WordPress architecture . You can publish post pages, set up menus , widgets from WordPress backend and this react theme will serve the WordPress content in the front end as a Single Page Application ( SPA ) . Now
Using gatsby-source-wordpress-experimental to create Gatsby site
Posted onIn this blog you will learn about how to create a Gatsby site, that uses WordPress in the backend and React in the front-end using Gatsby static site generator. The gatsby plugin gatsby-source-wordpress-experimental is currently in the development stage and should be part of upcoming gatsby-source-wordpress v4 . So let’s try it out. WordPress Set
Simplest Way To Understand Redux
Posted onRedux is a state management tool for javascript apps. It allows you to share the state between components. Why use Redux? When we have big complicated data for complex applications. Any component can pull any piece of data from the redux store. So data needs to be shared between multiple components Story of a Store