Gideon Gabrielfamousdev.hashnode.dev·Sep 15, 2024How To Integrate 100pay Into Your Business Using FlutterWhats 100pay? 100Pay is a payment platform that allows companies of various sizes to accept cryptocurrency payments, send invoices and payouts, and manage their businesses online. It also offers the ability to launch Automated ICO/IDOs on its Launchp...21 likes·34 reads100pay checkout
Indrajeet Gourindrajeetgour.hashnode.dev·Sep 4, 2024Git - Checkout Vs Clonegit checkout and git clone are both Git commands, but they serve different purposes in the workflow of using Git: git clone: Purpose: git clone is used to create a copy of an existing Git repository from a remote server to your local machine. Usa...GitHub
Balraj Singhbalrajsingh.hashnode.dev·Aug 14, 2024Understanding Checkov: The Ultimate Tool for Infrastructure as Code SecurityThis blog offers a practical, step-by-step guide to integrating Checkov into your Terraform workflow on Ubuntu 24 LTS. It helps you understand its importance and how it can benefit your infrastructure. In the world of cloud-native applications and De...checkout
Suhail Akhtarblog.suhail.top·Mar 7, 2024How to change git branch in multiple projects at once and pull the latest changes?$ cd /my-projects $ cd project1 && git checkout develop && git pull origin develop && cd .. $ cd project2 && git checkout develop && git pull origin develop && cd .. $ cd project3 && git checkout develop && git pull origin develop && cd .. $ cd proj...Git
Nhi Nguyennhi.hashnode.dev·Jul 25, 2023Create a simple checkout flow with Solana Pay(Draft) Our Goal By the end of this article, you will know how to: Set up a QR Code that a compatible Solana wallet can scan. Return a valid base64 Solana Transaction that a wallet owner can approve and sign. Dependencies: @solana/pay @solana/w...Solana
Taegu Kangktg0210.hashnode.dev·Dec 16, 2022git basic guideoutli ne Basic configurations for git on WSL. how-to ## git user git config --global --replace-all user.name "<name>" ## git e-mail git config --global --replace-all user.email "<e-mail>" ## git auth git config --global credential.helper store #...GitHub
Gideon Nwokporgideoncyber.hashnode.dev·Nov 28, 20225 steps to integrate instant payment using Fincra Checkout APIFinding the perfect payment solution has always been the biggest nightmares for most developers. Connection timeout amongst other errors, make developers avoid taking on projects that involve cash flow. These projects include E-commerce, Payment pla...1 like·56 readsAPIs
Victoria Lolo-victoria.com·Oct 7, 2022The Complete Guide to Integrate PayPal in Mobile Apps"Do PayPal offer native app checkout?" is a question I have received from my readers recently. If you do a simple Google search, you will probably find PayPal's Android/iOS SDK, which has been deprecated since 2018. However, many guides on the intern...50 likes·7.8K readsRandom Projects to BuildPayPal
Roshan Lalroshanlal.hashnode.dev·Jun 14, 2022Magento 2.3.x The shipping information was unable to be saved. Verify the input data and try again.One of my clients has shared the bug while doing the checkout. He was getting the below error: The shipping information was unable to be saved. Verify the input data and try again."Magento version 2.3.5-p1 I found that client was using a third-par...340 readsmagento 2
Niall Harringtongetoutofthatgarden.hashnode.dev·Jun 8, 2022Today I Learned: Tuesday 7th June, 2022Git and command line: I just used the git config tool to shorten the amount of time it takes to upload commits to github. I entered:\ git config --global alias.add-commit '!git add -A && git commit' The config command allows you to configure some pa...30 readsGitHub