A Pen by Captain Anonymous on CodePen.
SVG logo of UM
A Pen by Matt Heinke on CodePen.
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
class onOrderCreateUser implements EventSubscriberInterface { | |
/** | |
* {@inheritdoc} | |
* Empty Constructor. | |
*/ | |
public function __construct() { | |
} | |
/** |
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
<?xml version="1.0"?> | |
<RatingServiceSelectionRequest xml:lang="en-US"> | |
<Request> | |
<TransactionReference/> | |
<RequestAction>Rate</RequestAction> | |
<RequestOption>Shop</RequestOption> | |
</Request> | |
<PickupType> | |
<Code>01</Code> | |
<Description/> |
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
import random | |
class Card: | |
def __init__(self, suit, value): | |
self.suit = suit | |
self.value = value | |
def display(self): | |
return str(self.value) + str(self.suit) | |