Skip to content

Instantly share code, notes, and snippets.

@hgati
hgati / add-private-network.sh
Created August 21, 2022 07:16 — forked from ckcks12/add-private-network.sh
vultr.com scripts
# echo setting
r='\033[0;31m'
y='\033[1;33m'
g='\033[0;32m'
b='\033[1;34m'
x='\033[0m'
function log() {
echo -e $@${x}
}
@hgati
hgati / erpnext_magento.php
Created March 18, 2018 15:38 — forked from rmehta/erpnext_magento.php
Sample ERPNext Magento Connector
<?php
// contributed by supplify.com
error_reporting(E_ALL);
ini_set('display_errors', 1);
require_once '../curl/Zebra_cURL.php';
require_once '../app/Mage.php';
Mage::app();
class action extends Zebra_cURL{