A Pen by Florent Gallaire 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
| BaseUPMC = [('GARGA', 'Amel', 20231343, [12, 8, 11, 17, 9]), | |
| ('POLO', 'Marcello', 20342241, [9, 11, 19, 3]), | |
| ('AMANGEAI', 'Hildegard', 20244229, [15, 11, 7, 14, 12]), | |
| ('DENT', 'Arthur', 42424242, [8, 4, 9, 4, 12, 5]), | |
| ('ALEZE', 'Blaise', 30012024, [17, 15, 20, 14, 18, 16, 20]), | |
| ('D2', 'R2', 10100101, [10, 10, 10, 10, 10, 10])] |
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
| Nickel | MyPocket | Wise | N26 | ||
|---|---|---|---|---|---|
| Abonnement | 20 €/an | ✅ | ✅ | ✅ | |
| Retraits DAB | 1,5 € | 1 € | ✅ | ✅ | |
| Virements SEPA | ✅ | ✅ | 0,28 € | ✅ | |
| Carte physique nominative | 10 € | ✅ | 7 € | 10 € |
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
| Nickel | MyPocket | Wise | N26 | ||
|---|---|---|---|---|---|
| IBAN français | ✅ | ✅ | ❌ | ❌ | |
| Dépôt d'espèces | ✅ | ✅ | ❌ | ❌ | |
| Prélèvements automatiques | ✅ | ❌ | ✅ | ✅ | |
| Virements pair-á-pair | ✅ | ✅ | ✅ | ✅ | |
| Virements récurrents | ❌ | ✅ | ✅ | ✅ | |
| SEPA Instant réceptions | ❌ | ✅ | ✅ | ✅ | |
| SEPA Instant émissions | ❌ | ❌ | ✅ | ✅ | |
| Épargne | ❌ | ❌ | ✅ | ✅ | |
| Google & Apple Pay | ❌ | ❌ | ✅ | ✅ |
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
| Nickel | MyPocket | Wise | N26 | ||
|---|---|---|---|---|---|
| Sans titre de séjour | ✅ | ✅ | ✅ | ✅ | |
| Analphabètes | ✅ | ✅ | ✅ | ❌ | |
| SMS | ✅ | ❌ | ❌ | ❌ |
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
| cara | Nickel | MyPocket | N26 | |
|---|---|---|---|---|
| IBAN commençant par FR | ✅ | ✅ | ❌ | |
| Dépôt d'espèces | ✅ | ✅ | ❌ | |
| Hors UE sans visa | ❌ | ✅ | ✅ | |
| Accessible aux analphabètes | ✅ | ✅ | ❌ | |
| Accessible sans smartphone | ✅ | ❌ | ❌ | |
| Abonnement gratuit | ❌ | ✅ | ✅ |
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
| Nickel | MyPocket | N26 | ||
|---|---|---|---|---|
| IBAN commençant par FR | ✅ | ✅ | ❌ (DE) | |
| Dépôt d'espèces | ✅ (commission de 2%) | ✅ (commission de 2%) | ❌ | |
| Hors UE sans visa | ❌ | ✅ | ✅ | |
| Accessible aux analphabètes | ✅ | ✅ | ❌ (visio) | |
| Accessible sans smartphone | ✅ (SMS) | ❌ | ❌ | |
| Abonnement gratuit | ❌ (20€ par an) | ✅ (6 trans./60 jours min.) | ✅ |
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
| Nickel | MyPocket | Wise | N26 | ||
|---|---|---|---|---|---|
| IBAN français | ✅ | ✅ | ❌ | ❌ | |
| Dépôt d'espèces | ✅ | ✅ | ❌ | ❌ | |
| Prélèvements automatiques | ✅ | ❌ | ✅ | ✅ | |
| Virements SEPA instantanés | ❌ | ❌ | ✅ | ✅ | |
| Épargne | ❌ | ❌ | ✅ | ✅ | |
| Virements pair-á-pair | ✅ | ✅ | ✅ | ✅ | |
| Sans titre de séjour | ✅ | ✅ | ✅ | ✅ | |
| Analphabètes | ✅ | ✅ | ✅ | ❌ |
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
| TOKEN= | |
| URL= | |
| ok_delete_webhook=`curl -s https://api.telegram.org/bot$TOKEN/setWebhook | jq '.ok'` | |
| pending_update_count=`curl -s https://api.telegram.org/bot$TOKEN/getWebhookInfo | jq '.result.pending_update_count'` | |
| update_id=`curl -s https://api.telegram.org/bot$TOKEN/getUpdates | jq '.result[0].update_id'` | |
| offset=$(($update_id+$pending_update_count)) | |
| ok_flush=`curl -s https://api.telegram.org/bot$TOKEN/getUpdates?offset=$offset | jq '.ok'` | |
| ok_set_webhook=`curl -s https://api.telegram.org/bot$TOKEN/setWebhook?url=$URL | jq '.ok'` |
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
| 8 bits / 5 V | Nano Micro | Uno Leonardo | Mega | ||
|---|---|---|---|---|---|
| 32 bits / 3.3 V | Nano 33 IoT Nano 33 BLE Nano 33 BLE Sense | Maker | Zero | Due | |
| j | |||||
| test | test | test | test | ||
| t | t | ||||
| t | t |
NewerOlder