This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://127.0.0.1:1337/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$_SESSION['UniqueRefMaxLength'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* 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) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php $tickets_results = $ZendeskAPI->call('/organizations/'.$client_id.'/tickets.json', $values, 'GET'); ?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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' |