Skip to content

Instantly share code, notes, and snippets.

View mattclements's full-sized avatar

Matt Clements mattclements

View GitHub Profile
@mattclements
mattclements / sftp_bank_download.sh
Created August 31, 2012 09:52
SFTP Bank Download
#!/bin/bash
#FILE="/tmp/out.$$"
#GREP="/bin/grep"
clear
#Make sure only root can run our script
if [[ $EUID -ne 0 ]]; then
echo "This script must be run as root" 1>&2
PPAPIService: Request: <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="urn:ebay:api:PayPalAPI" xmlns:ebl="urn:ebay:apis:eBLBaseComponents" xmlns:cc="urn:ebay:apis:CoreComponentTypes" xmlns:ed="urn:ebay:apis:EnhancedDataTypes" ><soapenv:Header><ns:RequesterCredentials><ebl:Credentials><ebl:Username>paypaltest_api1.mydomain.com</ebl:Username><ebl:Password>XXXXXXX</ebl:Password><ebl:Signature>XXXXXXX</ebl:Signature></ebl:Credentials></ns:RequesterCredentials></soapenv:Header><soapenv:Body><ns:DoDirectPaymentReq><ns:DoDirectPaymentRequest><ebl:DoDirectPaymentRequestDetails><ebl:PaymentDetails><ebl:OrderTotal currencyID="GBP">59.18</ebl:OrderTotal><ebl:ShipToAddress><ebl:Name>Fred Bloggs</ebl:Name><ebl:Street1>XXXX</ebl:Street1><ebl:Street2>XXXX</ebl:Street2><ebl:CityName>XXXX</ebl:CityName><ebl:StateOrProvince>XXXX</ebl:StateOrProvince><ebl:Country>United Kingdom</ebl:Country><ebl:PostalCode>XXX XXX</ebl:PostalCode></ebl:ShipToAddress></ebl:PaymentDetails><ebl:CreditCard><e
@mattclements
mattclements / install.sh
Created June 22, 2013 21:15
SM Install for Prepros
rm -Rf ~/.sm
curl -L https://raw.github.com/sm/sm/master/bin/sm-installer | sh
export PATH="$HOME/.sm/bin:$HOME/.sm/pkg/active/bin:$PATH"
sm ext install tokaidoapp tokaido/tokaido-build
sm tokaidoapp dependencies
sm tokaidoapp packages
sm tokaidoapp install
cd $HOME/.sm/pkg/versions/tokaidoapp/active/
./bin/gem install --version '= 3.2.9' sass --no-rdoc --no-ri
http://127.0.0.1:1337/
$_SESSION['UniqueRefMaxLength']
@mattclements
mattclements / setup-urls.php
Last active December 30, 2015 17:49
Magento - Setup Product URL's after Import
<?php
require 'app/Mage.php';
Mage::app();
$amount = 0;
$model = Mage::getModel('catalog/product');
$products = $model->getCollection();
foreach ($products as $product) {
$model->load($product->getId());
$product->setUrlKey($model->getName())->save();
set_time_limit();
@mattclements
mattclements / gist:8163509
Created December 28, 2013 20:01 — forked from mwaterfall/gist:953657
Runtime iOS Version Checking
/*
* System Versioning Preprocessor Macros
*/
#define SYSTEM_VERSION_EQUAL_TO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedSame)
#define SYSTEM_VERSION_GREATER_THAN(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedDescending)
#define SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedAscending)
#define SYSTEM_VERSION_LESS_THAN(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedAscending)
#define SYSTEM_VERSION_LESS_THAN_OR_EQUAL_TO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedDescending)
@mattclements
mattclements / MattClements.geojson
Created February 21, 2014 22:54
Matt Clements
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@mattclements
mattclements / example.php
Created April 6, 2014 16:00
RS PHP Issue
<?php $tickets_results = $ZendeskAPI->call('/organizations/'.$client_id.'/tickets.json', $values, 'GET'); ?>
@mattclements
mattclements / dns_checker.php
Last active September 10, 2016 07:20
DNS Migration Checker
<?php
/**
* Script in order to compare a set of DNS Records from the current DNS supplier, to a new Name Server
* A standard array of records are setup, and can be enabled/disabled as required, and altered
* Then set a domain, and new Name Server to check against, and run the script in CLI PHP
* ./dns_checker.php
*
* This will create a HTML file in your current folder with details of the checks.
*
* N.B. You must have Net_DNS2 PEAR module installed 'pear install Net_DNS2'