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
{ | |
"action": "hire_candidate", | |
"payload": { | |
"application": { | |
"id": 0, | |
"credited_to": { | |
"id": 0, | |
"name": "", | |
"employee_id": "" | |
}, |
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
{ | |
"employees": [ | |
{ | |
"changedFields": [ | |
"Job Title", | |
"Reports To" | |
], | |
"fields": { | |
"Employee #": "1108", | |
"First Name": "ade", |
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
{ | |
"data": [ | |
{ | |
"public_metrics": { | |
"retweet_count": 1, | |
"reply_count": 0, | |
"like_count": 0, | |
"quote_count": 0 | |
}, | |
"text": "RT @PTJASAMARGA: 20.00 WIB #Tol_CTC Pancoran - Tomang PADAT, kepadatan volume lalin arah Kb Jeruk. Pluit - Kapuk PADAT, kepadatan volume la…", |
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
{ | |
"vehicleStatus":1, | |
"vehicleDriver":0, | |
"vehicleTypeId":2, | |
"name":"SUBUR BUDIANTO", | |
"address":"DEMANGAN RT 27 RW 13 BANJARHARJO KALIBAWANG KLP", | |
"phone":"31231233123322", | |
"email":"[email protected]", | |
"birthPlace":"sleman", | |
"birthDate":"1996-01-25", |
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
{ | |
"plateNumber":"AB1287UA", | |
"machineNumber":"2122F76482O0ASLK", | |
"skeletonNumber":"2318317AS2XCV2001", | |
"idCardNumber":"2131231238282828999", | |
"userId":"61643a72a9c4f755289bb8f7", | |
"imageFront":"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/7QCcUGhvdG9zaG9wIDMuMAA4QklNBAQAAAAAAIAcAmcAFDV5Z0JhTTRYeDZmRlo1NlZrZm9EHAIoAGJGQk1EMGEwMDBhODcwMTAwMDA3YTA0MDAwMDk0MDkwMDAwMTYwYjAwMDBhMDBjMDAwMDM5MTQwMDAwZGYxYzAwMDA5NTFkMDAwMDVhMWYwMDAwMmMyMTAwMDAwOTJmMDAwMP/bAEMABgQFBgUEBgYFBgcHBggKEAoKCQkKFA4PDBAXFBgYFxQWFhodJR8aGyMcFhYgLCAjJicpKikZHy0wLSgwJSgpKP/bAEMBBwcHCggKEwoKEygaFhooKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKP/CABEIAMgAxQMBIgACEQEDEQH/xAAbAAABBQEBAAAAAAAAAAAAAAAEAAECAwUGB//EABkBAAMBAQEAAAAAAAAAAAAAAAACAwEEBf/aAAwDAQACEAMQAAAB9TanDDdH5e/MOzw8HUM0sbqJ140hnXRKis8yYr3I8U1NZ27WAYjdEEZSmxCJvR8uwql1vVKnvTn08z2S6Lm9o1N5rVovzQdWktl57NRcnDstiyhh1l7oVp8NJNXmCwzak4V1/DXI3d0HUoCqxc3T2s1P0vPzbSK2wEIgyFcndydNt5UW8+TYZ2zWGarqWwKN2UrE5emaNw8Cxayi9Z2nSvnFc1RUUry9Lrubr5R0RFkaqde5CFtekrYyR5YnSAcvTx |
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
package main | |
import ( | |
"encoding/json" | |
"flag" | |
"fmt" | |
"log" | |
"os" | |
"github.com/siuyin/dflt" |
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
<script lang="ts"> | |
import {Component, Prop, Vue} from 'vue-property-decorator'; | |
@Component | |
export default class HelloWorld extends Vue { | |
@Prop() private msg!: string; | |
} | |
</script> |
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
// dev dependencies | |
"typescript": "~3.1.1", | |
"@vue/cli-plugin-typescript": "~3.2.0", | |
// dependencies | |
"vue-property-decorator": "^7.2.0", | |
"vue-class-component": "^6.3.2", | |
vue add @vue/typescript |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Contoh Flexbox</title> | |
<style> | |
.fl-row { | |
display: flex; | |
flex-direction: row; |
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
<template> | |
<div class="main-map"></div> | |
</template> | |
<script lang="ts"> | |
import {Watch, Component, Vue, Prop} from 'annotation'; | |
@Component | |
export default class GMapComponent extends Vue { |
NewerOlder