This is due to Payment Detail not being available by the payment gateway for many reasons
- Check the Adyen dashboard for the 803 transactions and prior transactions if any exist
.terraform/ | |
*.pem | |
*.tf | |
*.tfstate | |
*.yaml | |
*.backup | |
istio-*/ | |
cert-manager-*/ | |
*.swp | |
env |
let obj = { | |
"name": "john", | |
"Age": "21", | |
"sex": "male", | |
"place": {"state": "ca"}, | |
"cats": [{"name": "toby"}, {"name": "wiskers"}] | |
}; | |
let capitalize = (s) => { | |
if (typeof s !== 'string') return ''; |
package main | |
import ( | |
"database/sql" | |
"strconv" | |
"log" | |
"net/http" | |
"fmt" | |
"bytes" | |
"gopkg.in/gin-gonic/gin.v1" |
killport(){ | |
echo "checking PORT $1" | |
lsof -ti tcp:$1 | |
lsof -ti tcp:$1 | xargs kill | |
} |
#!/bin/sh | |
# example: ./scripts/envify.sh .env.dev | |
envify() { | |
ENV_FILE="$(pwd)/.env" | |
if [ -n "$1" ]; then | |
echo "FILE: $1" | |
ENV_FILE="$(pwd)/${1}" | |
fi | |
if [ -f "$ENV_FILE" ]; then |
# you dont have to include this in every repo when you use any of the intellij IDEs | |
echo ".idea" >> ~/.gitignore_global | |
git config --global core.excludesfile ~/.gitignore_global |
for file in **/*.js; do mv "$file" "${file%.js}.mjs"; done |
echo $USER | |
sudo chown -R $USER /usr/local/lib/node_modules |
This is due to Payment Detail not being available by the payment gateway for many reasons
curl https://raw.githubusercontent.com/qrpike/Web-Font-Load/master/install.sh | sh |