This file contains 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
#include <ESP8266_Lib.h> | |
#include <BlynkSimpleShieldEsp8266.h> | |
#include <Servo.h> | |
#include <SoftwareSerial.h> | |
#define BLYNK_PRINT Serial | |
#define trigAtas 6 | |
#define echoAtas 7 | |
#define enA 8 | |
#define in1 9 |
This file contains 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
#include <iostream> | |
using namespace std; | |
class Shape{ //base class || class abstract | |
protected: | |
int width; | |
int heigh; | |
public: | |
Shape(int heigh, int width){ //constructor |
This file contains 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
Oiya, untuk yang istilah-istilah kalo bisa cari penjeljasannya ya. soalnya di presentasinya aku cuma naruh point-pointnya aja. | |
WHAT IS DSS | |
DSS Adalah software interaktif yang berbasis komputer dan diperuntukkan membantu orang dalam menyusun informasi penting dari data mentah, dokumen, pengetahuan personal, dan atau model bisnis. | |
DSS adalah sistem yang berbasis software interaktif yang di tujukan untuk membantu majaer dalam membuat atau menentukan suatu keputusan terhadap sesuatu dengan cara memanfaatkan informasi dalam skala besar yang dihasilkan dari berbagai sistem informasi yang saling berkaitan dalam suatu organisasi seperti : AIS, MIS, OA, dsb. | |
This file contains 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
#include <iostream> | |
using namespace std; | |
class Nasabah{ | |
private : int saldo; | |
public: | |
Nasabah(){ | |
saldo = 1500000; | |
} |
This file contains 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
public class RetrofitClient { | |
private static Retrofit retrofit = null; | |
public static String BASE_URL = ""; | |
public static Retrofit getClient(String url) { | |
retrofit = new Retrofit.Builder().baseUrl(BASE_URL) | |
.addConverterFactory(GsonConverterFactory.create()) | |
.build(); | |
return retrofit; |
This file contains 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
public interface IAuthenticJogja { | |
@GET("events") | |
Call<ArrayList<Event>> getEventList(); | |
@GET("crafts") | |
Call<ArrayList<Craft>> getCraftList(); | |
@GET("category_foods") | |
Call<ArrayList<CategoryFood>> getCategory(); |
This file contains 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
public class Contract { | |
public interface Presenter{ | |
void getEvent(); | |
void getCraft(); | |
void getCulinnary(int id); | |
void getLanguange(int id); | |
void getCategory(); | |
void getCategoryLanguage(); | |
void getTrending(); | |
void onFinishCall(ArrayList list); |
This file contains 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
public class Intractor implements Contract.Intractor{ | |
private Contract.Presenter presenter; | |
private IAuthenticJogja mService; | |
private IAuthenticJogja mServiceTester; | |
public Intractor(Contract.Presenter presenter) { | |
this.presenter = presenter; | |
mService = Common.createService(); |
This file contains 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
<?xml version="1.0" encoding="utf-8"?> | |
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:app="http://schemas.android.com/apk/res-auto" | |
android:id="@+id/formAddressLayout" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent"> | |
<androidx.appcompat.widget.AppCompatSpinner | |
android:id="@+id/spProvince" | |
android:layout_width="0dp" |
This file contains 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 RegisterAddressFragment : FragmentViewModel() { | |
private val provinceList = mutableListOf<String>() | |
private lateinit var adpProvince: ArrayAdapter<String> | |
override fun onCreate(savedInstanceState: Bundle?) { | |
/* | |
provinceList sudah terisi dari LiveData | |
*/ | |
adpProvince = ArrayAdapter(context!!, android.R.layout.simple_spinner_item, provinceList) |
OlderNewer