Skip to content

Instantly share code, notes, and snippets.

Install Zed dependencies
[notice] DEPRECATED: In next major all dependencies will be installed via single command: frontend:project:install-dependencies
[info] Install dependencies in "/data/vendor/spryker/spryker/Bundles/Chart/assets/Zed"
[info] npm
[info] WARN old lockfile
[info]
npm WARN
[info] old lockfile The package-lock.json file was created with an old version of npm,
[info] npm WARN
@zyuzka
zyuzka / xdebug-php.md
Created July 5, 2018 20:26 — forked from legomolina/xdebug-php.md
php xDebug on Ubuntu/Mac and phpStorm 2017

🪲 Install and Configure xDebug on Ubuntu/Mac and PhpStorm 🐘

  • Assuming that you have already installed php and apache
  • Install xDebug php extension
# Ubuntu 16.04, php 7.0
sudo apt-get install php-xdebug

# Ubuntu 14.04, php 5.6 
sudo apt-get install php5-xdebug
@zyuzka
zyuzka / elasticsearch-cheatsheet.txt
Created January 23, 2017 11:46 — forked from stephen-puiszis/elasticsearch-cheatsheet.txt
Elasticsearch Cheatsheet - An Overview of Commonly Used Elasticsearch API Endpoints and What They Do
# Elasticsearch Cheatsheet - an overview of commonly used Elasticsearch API commands
# cat paths
/_cat/allocation
/_cat/shards
/_cat/shards/{index}
/_cat/master
/_cat/nodes
/_cat/indices
/_cat/indices/{index}
@zyuzka
zyuzka / Install-php7.md
Created November 3, 2016 13:11 — forked from hollodotme/Install-php7.md
Installing php7-fpm with phpredis and xdebug extension on Ubuntu 14.04

Install php7.0-fpm

# remove php5 modules
apt-get autoremove --purge php5-*
# add php-7.0 source list by [Ondřej Surý](https://github.com/oerdnj)
add-apt-repository ppa:ondrej/php
# Update index
apt-get update
# Install php7.0-fpm with needed extensions