Scaling Magento presentation with 60 slides and notes, which was then reviewed by Alan Storm.
This file contains hidden or 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
(* | |
OmniFocus Selected Mail Messages.applescript | |
Copyright (c) 2015 Jonathan 'Wolf' Rentzsch: http://rentzsch.com | |
Some rights reserved: http://opensource.org/licenses/mit | |
Pure AppleScript reimplementation of OmniGroup's Clip-o-Tron for OmniFocus. | |
Hopefully this implementation will be more resilient against OS X, Mail, and OmniFocus updates. | |
Successfully tested against OS X 10.10.1, OmniFocus 1.10.6, and OmniFocus 2.0.4. |
This file contains hidden or 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 | |
#CONFIG | |
backupDir='/mnt/backup' | |
magentoDir='/var/www/magento/htdocs' | |
magerunPath='/usr/bin/n98-magerun.phar' | |
#NUMBER OF DAYS TO KEEP BACKUPS | |
dailyKeepDays=7 | |
weeklyKeepDays=30 |
This file contains hidden or 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
delimiter ;; | |
drop procedure if exists build_catalog;; | |
create procedure build_catalog(IN categories INT, IN products INT) | |
begin | |
SET @category_count = 1; | |
SET @CATNAMEPREFIX = "Category "; | |
SET @CATURLKEYPREFIX = "cat-"; | |
SET @CATURLPATHPREFIX = "catpath-"; | |
SET @ROOTCATEGORY = 2; | |
SET @INCLUDEINMENU = 1; |
This file contains hidden or 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 | |
namespace Silex\Provider; | |
use Silex\Application; | |
use Silex\SilexEvents; | |
use Silex\ControllerProviderInterface; | |
use Silex\ControllerCollection; | |
use Symfony\Component\HttpFoundation\Request; | |
use Symfony\Component\HttpFoundation\Response; | |
use Symfony\Component\HttpKernel\Event\GetResponseEvent; |
This file contains hidden or 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
modules | |
└── dev-tools | |
├── files | |
│ └── phpstorm.vmoptions | |
├── templates | |
│ └── phpstorm.desktop.erb | |
└── manifests | |
├── init.pp | |
└── phpstorm.pp |
This file contains hidden or 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 | |
/** | |
* Integration test for OnePageCheckout | |
* | |
* @author Fabian Schmengler <[email protected]> | |
* @copyright SGH informationstechnologie UGmbH 2012 | |
* @package SGH\Common | |
* @subpackage Test | |
* | |
*/ |
This file contains hidden or 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
Index: app/code/core/Mage/Core/Model/Cache.php | |
=================================================================== | |
--- app/code/core/Mage/Core/Model/Cache.php (revision 124392) | |
+++ app/code/core/Mage/Core/Model/Cache.php (working copy) | |
@@ -44,7 +44,7 @@ | |
/** | |
* Cache frontend API | |
* | |
- * @var Zend_Cache_Core | |
+ * @var Varien_Cache_Core |