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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>Pokewar - Pocket Monster Battleroyale</title> | |
<script src="https://cdn.tailwindcss.com"></script> | |
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script> | |
<script src="https://cdn.jsdelivr.net/npm/dayjs@1/dayjs.min.js"></script> |
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
import java.util.Scanner; | |
public class Main { | |
public static void main(String[] args) { | |
Scanner inputDetik = new Scanner(System.in); | |
System.out.print("Masukkan Detik: "); | |
int detikInputan = Integer.parseInt(inputDetik.nextLine()); | |
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
import java.util.Scanner; | |
import java.util.List; | |
import java.util.ArrayList; | |
import java.util.Arrays; | |
public class Main { | |
int satuanAwal = 0; | |
int satuanAkhir = 0; | |
double panjangSatuan = 0; |
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
/* eslint-disable */ | |
export enum LalamoveShippingStatus { | |
ORDER_CREATED = 'ORDER_CREATED', | |
ASSIGNING_DRIVER = 'ASSIGNING_DRIVER', | |
ON_GOING = 'ON_GOING', | |
DRIVER_ASSIGNED = 'DRIVER_ASSIGNED', | |
PICKED_UP = 'PICKED_UP', | |
COMPLETED = 'COMPLETED', | |
REJECTED = 'REJECTED', |
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
export enum Test { | |
draft, | |
pending, | |
approved, | |
rejected, | |
pendingForApproval, | |
rejectedByAdmin | |
} | |
export namespace Test { |
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
/* eslint-disable @typescript-eslint/member-ordering */ | |
// noinspection DuplicatedCode | |
import {Component, OnDestroy, OnInit} from '@angular/core'; | |
import {ModalController} from '@ionic/angular'; | |
import {NadiService} from '../../../../../../services/nadi.service'; | |
import {CameraUsecase} from '../../../../data/usecases/camera.usecase'; | |
import {Router} from '@angular/router'; | |
import {FileConverterUtil} from '../../../../utils/file-converter.util'; |
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
msgApiUrl = https://accounts.livechat.com/v2 |
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
<ion-header> | |
<ion-toolbar> | |
<ion-title>Chat</ion-title> | |
<ion-buttons slot="secondary"> | |
<ion-back-button defaultHref="/tabs/home" text="" icon="chevron-back-outline"></ion-back-button> | |
</ion-buttons> | |
</ion-toolbar> | |
</ion-header> | |
<ion-content> |
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
<ion-content> | |
<section> | |
<div class="header"> </div> | |
<div class="items-horizontal"> item . . . . (for-loop) </div> | |
<div class="indicator-tray"> | |
<div class="indicator"></div> | |
</div> | |
</section> | |
</ion-content> |
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
# Set cache dir | |
proxy_cache_path /var/cache/nginx levels=1:2 | |
keys_zone=microcache:5m max_size=1000m; | |
# Virtualhost/server configuration | |
server { | |
listen 80; | |
server_name yourhost.domain.com; | |
# Define cached location (may not be whole site) |