Skip to content

Instantly share code, notes, and snippets.

View SharakPL's full-sized avatar
🏠
Working from home

Tom Zajac SharakPL

🏠
Working from home
View GitHub Profile
@bradtraversy
bradtraversy / docker-help.md
Last active May 4, 2024 14:32
Docker Commands, Help & Tips

Docker Commands, Help & Tips

Show commands & management commands

$ docker

Docker version info

@Piotr-Aueternum
Piotr-Aueternum / README.md
Last active January 2, 2024 19:51
Jak zacząć w Reakcie i Reduksie, a całość dopełnić Ramdą.
@Casper-O
Casper-O / FrontController.php
Created March 19, 2018 08:54
Prestashop 1.6.X - Fix attribute color list doesn't show on product list if turning on smarty cache
<?php
class FrontController extends FrontControllerCore
{
public function addColorsToProductList(&$products)
{
if (!is_array($products) || !count($products) || !file_exists(_PS_THEME_DIR_.'product-list-colors.tpl')) {
return;
}
$products_need_cache = array();