Skip to content

Instantly share code, notes, and snippets.

http://narodstream.ru/avr-urok-15-vnutrennyaya-energonezavisimaya-pamyat-eeprom-chast-3/
@Leo24
Leo24 / JS
Created January 4, 2018 15:48
https://developer.mozilla.org/ru/docs/Web/JavaScript/A_re-introduction_to_JavaScript
https://reactjs.org/tutorial/tutorial.html
https://indiestechtips.wordpress.com/2012/10/13/magento-admin-input-form-fields-through-coding/
zend_extension = /usr/lib/php/20160303/xdebug.so
xdebug.remote_enable=true
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9000
xdebug.remote_handler=dbgp
xdebug.profiler_enable=1
xdebug.idekey=PHPSTORM
https://magento.stackexchange.com/questions/39981/how-can-i-bootstrap-magento-2-in-a-test-php-script
https://cloudconvert.com/webp-to-jpg
@Leo24
Leo24 / gist:3fc89107a0b1eaa6905066f915c0f291
Last active December 15, 2017 13:40
Переопределение core контроллера в magento 1.9
Создай модуль
https://www.silksoftware.com/magento-module-creator/
там выбери пункт Need Rewrite Magento Class
http://inchoo.net/magento/overriding-magento-blocks-models-helpers-and-controllers/
https://legion-market.com.ua/
https://giphy.com/search/thanks?utm_source=media-link&utm_medium=landing&utm_campaign=Media%20Links&utm_term=https://www.facebook.com/
<?php
if($_SERVER['REMOTE_ADDR'] == '<your_ip_address>'){
echo "<h1>TEST</h1>";
}else{
echo $_SERVER['REMOTE_ADDR'] . ' not <your_ip_address>';
}