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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
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
select `order`.`increment_id` as `Sales Order`, DATE(`note`.`created_at`) as `Date`, TIME(`note`.`created_at`) as `Time`, `note`.`comment` as `Note` | |
FROM `sales_order` AS `order` | |
JOIN `sales_order_status_history` as `note` | |
ON `note`.`parent_id` = `order`.`entity_id`; |
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
# Taking a mysqldump with single transation: | |
# standard | |
mysqldump --single-transaction -u root -proot bettys_local > bak_060618.sql.gz | |
# with host | |
mysqldump --single-transaction -h 127.0.0.1 -u root -proot bettys_local > bak_060618_1.sql.gz | |
# with gz and host | |
mysqldump --single-transaction -h 127.0.0.1 -u root -proot bettys_local | gzip > bak_060618_11.sql.gz |
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
//Download From the server to your local | |
scp -P 2020 [email protected]:/home/coxandcox/stg.temp.db.sql.gz /Users/doug/Downloads/ | |
//Upload From your machine to the server | |
scp -P 2020 /Users/doug/Downloads/rugs-buying-guide.pdf [email protected]:/home/coxandcox/production/pub/media/ |
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
SET @email='[email protected]', @passwd='Test@123456', @salt=MD5(RAND()); | |
UPDATE customer_entity | |
SET password_hash = CONCAT(SHA2(CONCAT(@salt, @passwd), 256), ':', @salt, ':1') | |
WHERE email = @email; |
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
2018-05-10T07:56:38+00:00 INFO (6): Array | |
( | |
[attribute_id] => Array | |
( | |
[SCHEMA_NAME] => | |
[TABLE_NAME] => eav_attribute | |
[COLUMN_NAME] => attribute_id | |
[COLUMN_POSITION] => 1 | |
[DATA_TYPE] => smallint | |
[DEFAULT] => |
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 | |
# Simple script to enable or disable xdebug profiling | |
case $1 in | |
on) | |
sudo sed -i 's/;//g' /etc/php.d/xdebug.ini | |
sudo /etc/init.d/php-fpm restart | |
;; | |
off) | |
sudo sed -i 's/^/;/g' /etc/php.d/xdebug.ini |
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 | |
//ini_set('memory_limit','10G'); | |
require_once('abstract.php'); | |
class Bundle_Cart_Item_Option_Items extends Mage_Shell_Abstract | |
{ | |
/** | |
* Entry point | |
*/ | |
public function run() |
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 | |
namespace Haakym\UKBankHoliday; | |
use JsonSerializable; | |
class UKBankHoliday implements JsonSerializable { | |
protected $year; | |
protected $newYears; | |
protected $goodFriday; | |
protected $easterMonday; | |
protected $mayDay; | |
protected $whitSun; |
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 | |
use Varien_Event_Observer as Event; | |
class Test_PriceFilter_Model_Observer | |
{ | |
public function catalogControllerCategoryInitAfter(Event $event) | |
{ | |
//code goes here |
OlderNewer