Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View tobidsn's full-sized avatar
💭
I may be slow to respond.

Tobi Muhamad tobidsn

💭
I may be slow to respond.
View GitHub Profile
<?php
error_reporting(E_ALL);
ini_set('display_errors', '1');
include_once '../../app/Mage.php';
$ido = $_GET['ido'];
Mage::app('admin');
try {
$order = Mage::getModel('sales/order')->loadByIncrementId($ido);
$order = $order->debug();
@tobidsn
tobidsn / install-comodo-ssl-cert-for-nginx.rst
Created October 12, 2017 12:16 — forked from bradmontgomery/install-comodo-ssl-cert-for-nginx.rst
Steps to install a Comodo PositiveSSL certificate with Nginx.

Setting up a SSL Cert from Comodo

I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.

These are the steps I went through to set up an SSL cert.

Purchase the cert

@tobidsn
tobidsn / s3mysqlbackup.sh
Created September 24, 2018 02:59
Backup MySQL to Amazon S3 Specific Table
#!/bin/bash
# Based on https://gist.github.com/2206527
# Be pretty
echo -e " "
echo -e " . ____ . ______________________________"
echo -e " |/ \| | |"
echo -e "[| \e[1;31m♥ ♥\e[00m |] | S3 MySQL Backup Script v.0.1 |"
echo -e " |___==___| / © oodavid 2012 |"
@tobidsn
tobidsn / numberWithThousands.js
Created July 12, 2019 10:50 — forked from fjaguero/numberWithThousands.js
JS Regex: Adds thousands separator to a number.
// Adds the thousands separator
function numberWithThousands(x) {
return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ".");
}