I hereby claim:
- I am beejhuff on github.
- I am beejhuff (https://keybase.io/beejhuff) on keybase.
- I have a public key whose fingerprint is 5CAF 226B 52B0 03F8 11DA 47D6 5311 7C1A 8673 E297
To claim this, I am signing this object:
| ### MAGENTO DIRECTORIES | |
| # Note: because of the wildcards/asterisks used, you can't do "git clean -fd ." without | |
| # clearing everything in media and var. Also see http://stackoverflow.com/a/19442789/896657 | |
| # Ignore everything in media, except for the htaccess files | |
| /media/* | |
| /media/*/* | |
| !/media/customer/.htaccess | |
| !/media/downloadable/.htaccess |
| <?php | |
| /** | |
| * Script to manage to version of Magento in a git mirror | |
| * php $argv[0] core-repository new-version-of-magento | |
| * | |
| * It will look for Mage.php in new-version-of-magento and parse the version | |
| * and edition from it. | |
| * | |
| * It will copy the code, remove the old files, create new branches if necessary |
| Verifying that +beejhuff is my blockchain ID. https://onename.com/beejhuff |
| /* Copyright 2012 Martin Hawksey (email : [email protected]) | |
| This program is free software; you can redistribute it and/or modify | |
| it under the terms of the GNU General Public License as published by | |
| the Free Software Foundation; either version 2 of the License, or | |
| (at your option) any later version. | |
| This program is distributed in the hope that it will be useful, | |
| but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| var Promise = require('bluebird'); | |
| var MongoDB = Promise.promisifyAll(require("mongodb")); | |
| var MongoClient = Promise.promisifyAll(MongoDB.MongoClient); | |
| var cheerio = require('cheerio'); | |
| var http = require('http'); | |
| var urls = [ | |
| 'http://www.magentocommerce.com/certification/directory/index/?q=&country_id=AU®ion_id=®ion=vic&certificate_type=', | |
| 'http://www.magentocommerce.com/certification/directory/index/?q=&country_id=AU®ion_id=®ion=victoria&certificate_type=' | |
| ]; |
I hereby claim:
To claim this, I am signing this object:
| #NameVirtualHost *:80 | |
| <VirtualHost *:80> | |
| ServerName "www.domain.com" | |
| ServerAlias domain.com | |
| ErrorLog logs/error_log | |
| TransferLog logs/access_log | |
| LogLevel warn | |
| ServerAdmin [email protected] | |
| DocumentRoot /sites/magento | |
| DirectoryIndex index.php index.html |
| """"""""""""""""""""""""""""""""""""" | |
| " Allan MacGregor Vimrc configuration | |
| """"""""""""""""""""""""""""""""""""" | |
| set nocompatible | |
| syntax on | |
| set nowrap | |
| """" START Vundle Configuration | |
| " Disable file type for vundle |
| """"""""""""""""""""""""""""""""""""" | |
| " Allan MacGregor Vimrc configuration | |
| """"""""""""""""""""""""""""""""""""" | |
| set nocompatible | |
| syntax on | |
| set nowrap | |
| """" START Vundle Configuration | |
| " Disable file type for vundle |
| require Record | |
| defmodule RssParserTest do | |
| Record.defrecordp :xmlElement, Record.extract(:xmlElement, from_lib: "xmerl/include/xmerl.hrl") | |
| Record.defrecordp :xmlText, Record.extract(:xmlText, from_lib: "xmerl/include/xmerl.hrl") | |
| Record.defrecordp :xmlAttribute, Record.extract(:xmlAttribute, from_lib: "xmerl/include/xmerl.hrl") | |
| use ExUnit.Case | |
| def sample_atom_xml do | |
| """ |