git diff --name-only --diff-filter=U
git commit -F- <<EOF
- Your message 1
| { | |
| "data": { | |
| "supporter_name": "Seseorang", | |
| "unit": "Cendol", | |
| "quantity": 2, | |
| "supporter_message": "Selalu Berkarya!", | |
| "supporter_avatar": "https://edge-cdn.trakteer.id/images/mix/default-avatar.png", | |
| "unit_icon": "https://edge-cdn.trakteer.id/images/mix/mie-ayam.png", | |
| "price": "Rp 5.000", | |
| "media": { |
| <script src="https://assets.trakteer.id/js/trws.min.js"></script> | |
| <script> | |
| // Get your channel ID in https://trakteer.id/manage/webhook/websocket | |
| const channelID = 'INPUT_YOUR_CHANNEL_ID_HERE'; | |
| // Register Creator Channel ID | |
| TrakteerWS.register(channelID); | |
| // Function to handle on stream test notification event | |
| TrakteerWS.onStreamTest = (data) => { |
| var UID = { | |
| _current: 0, | |
| getNew: function(){ this._current++; return this._current; }, | |
| _props: {}, | |
| addProp: function(id, prop, value) { | |
| this._props[id] = { | |
| prop : prop, | |
| value: value | |
| }; | |
| }, |
| import java.sql.Connection; | |
| import java.sql.DriverManager; | |
| import java.sql.ResultSet; | |
| import java.sql.Statement; | |
| import javafx.application.Application; | |
| import javafx.beans.property.SimpleStringProperty; | |
| import javafx.collections.FXCollections; | |
| import javafx.collections.ObservableList; | |
| import javafx.event.ActionEvent; |
| <?xml version="1.0" encoding="utf-8"?> | |
| <!-- Directory : [Project]/Assets/Plugins/Android/AndroidManifest.xml --> | |
| <!-- Configure according to your android application information. --> | |
| <manifest | |
| xmlns:android="http://schemas.android.com/apk/res/android" | |
| package="com.unity3d.player" | |
| android:installLocation="preferExternal" | |
| android:versionCode="1" | |
| android:versionName="1.0"> | |
| <supports-screens |