This file contains hidden or 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
$ composer create-project sylius/sylius shop-one | |
Installing sylius/sylius (v0.17.0) | |
- Installing sylius/sylius (v0.17.0) | |
Downloading: 100% | |
Created project in shop-one | |
Loading composer repositories with package information | |
Installing dependencies (including require-dev) from lock file | |
- Installing twig/twig (v1.23.1) | |
Downloading: 100% |
This file contains hidden or 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 | |
class CheckoutWithPaypalContext extends MinkContext | |
{ | |
/** | |
* @When /^I choose to pay with PayPal$/ | |
*/ | |
public function iChooseToPayWithPayPal() | |
{ | |
$this->findAndWaitForElementToBeVisibleThenClick("//a[@id = 'paypal']"); |
This file contains hidden or 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
from math import cos, sin, pi | |
import c4d | |
from c4d import gui | |
VENUS_YEAR_DURATION = 224.7 | |
EARTH_YEAR_DURATION = 365.25 | |
VENUS_ORBIT_RADIUS = 108.2 | |
EARTH_ORBIT_RADIUS = 149.6 |
OlderNewer