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
| Holder, Real Cash, Share Valuasi 1M, MOVED TO NEW SYSTEM | |
| EKO,-, 8.60%, - | |
| WG,-, 8.00%, - | |
| NAF,-, 5.00%, - | |
| SSB,-, 5.00%, - | |
| MFA,-, 4.80%, - | |
| ALX,-, 5.00%, - | |
| DAL,-, 5.00%, - | |
| YOS,-, 5.00%, - | |
| FWK,-, 4.50%, - |
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
| Nama | Jumlah | |
|---|---|---|
| WG | Rp45.000.000 | |
| Doni* | Rp5.000.000 | |
| Nafis | Rp25.000.000 | |
| Faisal Wira Kusuma | Rp25.000.000 | |
| Iqbal Pria Fadhilah** | Rp12.500.000 | |
| SS | Rp25.000.000 | |
| PAN | Rp25.000.000 | |
| AR | Rp25.000.000 | |
| PUR | Rp20.000.000 |
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
| Holder | Share | |
|---|---|---|
| EKO | 8.60% | |
| WG | 8.00% | |
| NAF | 5.00% | |
| SSB | 5.00% | |
| MFA | 4.80% | |
| ALX | 5.00% | |
| DAL | 5.00% | |
| YOS | 5.00% | |
| FWK | 4.50% |
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
| Nama Barang | Harga | Qty | Total Sale | Biaya Produksi | Laba = Total Sale - Biaya Produksi | |
|---|---|---|---|---|---|---|
| Pelatihan Python | Rp. 1.000.000 | 30 | Rp 30.000.000 | Rp 25.000.000 | Rp. 5.000.000 |
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
| Initial Intrinsic Gold Valuation | Gold Founder Apprecation | |
|---|---|---|
| 50gr | 50gr |
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
| Warganegara | Jumlah Emas | |
|---|---|---|
| Joni | 10gr | |
| Agus | 20gr | |
| Siti | 20gr | |
| Sur | 1gr |
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
| // Command | |
| $ solana-keygen pubkey | |
| // Return | |
| <PUBKEY> |
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
| // Conditional statement | |
| // https://docs.swift.org/swift-book/LanguageGuide/ControlFlow.html | |
| if tomato.name.contains("Swift") { | |
| print("Good for you!") | |
| }else{ | |
| print("That's fine. You can use Flutter or ReactNative too. It even cross platfrom solution!") | |
| } | |
| // Loop | |
| let languages = ["Python", "Golang", "Swift", "Java"] |
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 version | |
| class TomatoClass { | |
| var name: String | |
| var state: Bool // true=active, false=pause | |
| var start_time: Date | |
| var finish_time: Date? | |
| var elapsed_time: TimeInterval? | |
| init(name: String, state: Bool, start_time: Date){ |
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
| """ | |
| This project will get the latest information about earthquake from bmkg.go.id | |
| """ | |
| import requests | |
| from bs4 import BeautifulSoup | |
| author = 'Eko SW' | |
| date = '1 November 2022' | |
| url = 'https://www.bmkg.go.id/' |