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
| #!/bin/bash | |
| # Easy way to generate an ssh-key with this, enjoy! | |
| read -p "Enter your email address to generate the SSH key: " email | |
| ssh-keygen -t ed25519 -C "$email" | |
| eval "$(ssh-agent -s)" | |
| config_file="$HOME/.ssh/config" |
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
| [ | |
| { | |
| "name": "Item 1", | |
| "price": 10.099, | |
| "description": "Akustik performans: Beş tam-kapsamlı sürücü TV'nize, filmlerinize, oyunlarınıza ve daha fazlasına mükemmel sesi katmak için geniş sahneli ve net ses üretir", | |
| "currency": "TRY", | |
| "seller_id": "seller_1", | |
| "in_stock": true, | |
| "delivery_options": [ | |
| { |
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
| let p = new Promise((resolve, reject) => { | |
| setTimeout(() => { | |
| resolve(10); | |
| }, 100); | |
| }); | |
| p.then((result) => { | |
| console.log(result); // 10 | |
| return result + 8; | |
| }); |
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
| let p = new Promise((resolve, reject) => { | |
| setTimeout(() => { | |
| resolve(10); | |
| }, 100); | |
| }); | |
| p.then((result) => { | |
| console.log(result); // 10 | |
| return result + 8; | |
| }).then((result) => { |
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
| [ | |
| { | |
| "formid":0, | |
| "kategoriid":1, | |
| "kategoriAdi": "Büro Personeli", | |
| "items": [ | |
| { | |
| "kod": 300675, | |
| "malzeme": "BÜRO PERSONELİ DERİ KEMER (Unisex)", | |
| "fiyat": 56.50, |