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 | |
use Doctrine\ORM\Mapping as ORM; | |
use Doctrine\Common\Collections\ArrayCollection; | |
/** | |
* @ORM\Entity() | |
* @ORM\Table(name="user") | |
*/ | |
class User |
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
This playbook has been removed as it is now very outdated. |
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
--- s3curl.pl.orig 2011-08-16 22:23:39.000000000 +0300 | |
+++ s3curl.pl 2012-02-14 22:37:01.594635639 +0200 | |
@@ -26,11 +26,14 @@ | |
use constant STAT_UID => 4; | |
# begin customizing here | |
+# http://docs.amazonwebservices.com/general/latest/gr/rande.html#s3_region | |
my @endpoints = ( 's3.amazonaws.com', | |
+ 's3-us-west-2.amazonaws.com', | |
's3-us-west-1.amazonaws.com', |
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
SET @position = 0; | |
SET @last_parent = 0; | |
SET @last_level = 0; | |
DROP TABLE IF EXISTS `cce_new_position`; | |
CREATE TEMPORARY TABLE `cce_new_position` | |
SELECT | |
`new`.`entity_id` AS `entity_id`, | |
`new`.`parent_id` AS `parent_id`, | |
@last_parent := CAST(`new`.`parent_id` AS UNSIGNED) AS `new_parent_id`, | |
`new`.`name` AS `name`, |
NewerOlder