Examples, choose what you need
- Attribute
- Asset
- Assert
- Bridge
- Builder
- Calculator
- Candidate
- Cloner
| <?php | |
| class User | |
| { | |
| public function __construct( | |
| public string $id, | |
| public int $score | |
| ) { | |
| } | |
| } |
Examples, choose what you need
| <?php | |
| /** | |
| * Dysponujesz zestawem zadań, a każde z nich ma format: | |
| * | |
| * [ | |
| * 'name': string, | |
| * 'resources': list of strings, | |
| * 'payoff': float | |
| * ] |
21.03.2022
Free knowledge to setup project and traing AWS services:
| /** | |
| Użycie: | |
| Podaj liczbę wierszy: | |
| 2 | |
| Podaj imię i nazwisko oddzielone spacją | |
| Marcin Gladkowski | |
| Podaj imię i nazwisko oddzielone spacją | |
| Jan Kowalski | |
| Wpisz szukane nazwisko: |
| // application/json !== "application/json" | |
| # Working | |
| POST http://172.18.0.2:8080/api/auth/login | |
| Content-Type: application/json | |
| { | |
| "email": "marcinemail@somepost.com", | |
| "password": "12345" | |
| } |
| const formData = { | |
| name: 'Adam', | |
| 'billing_address_city': 'Warsaw', | |
| 'billing_address_street': 'ul. Pomorska', | |
| 'shipping_address_city': 'Krakow', | |
| 'shipping_address_street': 'ul. Karmelicka' | |
| } | |
| // own implementation | |
| const mergeAddress = (data, keyParam) => { |