Did you know?

Did you know?

On 15/11/2023 0

In Did you know?

Hello everyone !

Why a game with 52 cards?

If you own a classic deck of cards, it normally has 52 cards.

But why this figure and not 50 or 58 exactly?

The 52-card deck is actually based on the ancient Egyptian lunar calendar.

 The 52 cards represent the 52 weeks of the year.

And that's not all: the 13 cards that make up each color designate the 13 lunar months of the Egyptian calendar.

And, finally, the 4 colors represent the 4 elements: water, earth, fire and air.

Good day and good game ;)

 

did you know joue jeu joue vaison saviez jeu vous

Add a comment

Map customerParams = new HashMap(); customerParams.put("email", "customer@example.com"); customerParams.put("source", request.stripeToken); Customer customer = Customer.create(customerParams); Map chargeParams = new HashMap(); chargeParams.put("customer", customer.id); chargeParams.put("description", "Custom t-shirt"); chargeParams.put("amount", order.amount); chargeParams.put("currency", "eur"); Charge charge = Charge.create(chargeParams); Buy cool new product
Stripe.apiKey = "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" ; SessionCreateParams params = SessionCreateParams.builder() . addLineItem ( SessionCreateParams.LineItem.builder() . setPriceData ( SessionCreateParams.LineItem.PriceData.builder() . setCurrency ("eur") . setProductData ( SessionCreateParams.LineItem.PriceData.ProductData.builder() . setName ("Custom t-shirt") .build() ) . setUnitAmount (2000L) .build() ) . setQuantity (1L) .build() ) . setMode (SessionCreateParams.Mode.PAYMENT) . setSuccessUrl ("https://www.jouelejeuvaison.com/joue-le-jeu-vaison-boutique-jeux-de-societe/do/account/") .build(); Session session = Session. create