start new:
tmux
start new with session name:
tmux new -s myname
#!/bin/sh | |
echo "What should the Application be called (no spaces allowed e.g. GCal)?" | |
read inputline | |
name="$inputline" | |
echo "What is the url (e.g. https://www.google.com/calendar/render)?" | |
read inputline | |
url="$inputline" |
set-option -g default-command "reattach-to-user-namespace -l zsh" | |
source /usr/local/lib/python2.7/site-packages/powerline/bindings/tmux/powerline.conf | |
#set-window-option -g automatic-rename off | |
## Screen like binding | |
unbind C-b | |
set -g prefix C-x | |
## Bigger history | |
set -g history-limit 10000 |
$ fab -l | |
Available commands: | |
production.cleannn | |
production.deploy | |
staging.deploy |
1) First you need to generate download token. Login to your account on magento.com and generate it in Account Settings->Downloads Access Token | |
2) You will need your MAGEID as well. It is shown at the top-left in your account page. | |
3) curl -k https://MAGEID:[email protected]/products/downloads/info/help | |
4) Profit! |
helo everyone! | |
If youwish to have sample data installed for your local Magento 2 instance, please run the next command in CLI (magento root directory): | |
php bin/magento setup:performance:generate-fixtures ./setup/performance-toolkit/profiles/ce/small.xml | |
and don't forget to reindex afterwards: | |
php bin/magento indexer:reindex |
My main development workstation is a Windows 10 machine, so we'll approach this from that viewpoint.
Recently, Google Chrome started giving me a warning when I open a site that uses https and self-signed certificate on my local development machine due to some SSL certificate issues like the one below:
<?php | |
$query = <<<'GRAPHQL' | |
query GetUser($user: String!) { | |
user (login: $user) { | |
name | |
repositoriesContributedTo { | |
totalCount | |
} |
This work is released under a Creative Commons Attribution-NoDerivatives 4.0 International License.
"OpenPGP" refers to the OpenPGP protocol, in much the same way that HTML refers to the protocol that specifies how to write a web page. "GnuPG", "SequoiaPGP", "OpenPGP.js", and others are implementations of the OpenPGP protocol in the same way that Mozilla Firefox, Google Chromium, and Microsoft Edge refer to software packages that process HTML data.