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
/* | |
คุณเข้ามารับช่วงต่อโครงการที่มีโค้ดดังนี้ และพบว่ามันไม่มี Unit Test หรือ Documentation | |
- คุณจะเพิ่ม Code Ownership ให้กับทีมอย่างไร? | |
- คุณจะเริ่มต้นจัดการกับปัญหานี้อย่างไร? | |
- ถ้าโค้ดนี้มีบั๊กที่กระทบกับธุรกิจมาก คุณจะมีแนวทางในการแก้ไขที่เหมาะสมอย่างไร? | |
*/ | |
public class TaxCalculator { | |
public double calculateTax(double income) { | |
if (income < 20000) { | |
return income * 0.1; |
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
/** | |
ออกแบบและพัฒนา คลาส หรือ เซอร์วิส ที่สามารถทำธุรกรรมทางการเงินได้ ซึ่งต้องรองรับ: | |
- ฝากเงิน (Deposit) | |
- ถอนเงิน (Withdraw) | |
- ตรวจสอบยอดคงเหลือ (Check Balance) | |
** พิจารณาปัญหาของโค้ด ทำการ refactor และอธิบายในแต่ละส่วน | |
*/ |
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
import React, {useState} from "react"; | |
import {useSearchParams} from "react-router-dom"; | |
export interface Props<T> { | |
data: T; | |
debugParam: string; | |
} | |
export const JsonDebugger = <T extends Record<string, any> | string>({data: obj, debugParam}: Props<T>) => { | |
const [query] = useSearchParams(); |
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
@SneakyThrows | |
public XadesSigner createXadesSigner(X509Certificate x509Certificate) { | |
final String PROVIDER_NAME = "LunaProvider"; | |
KeyStoreKeyingDataProvider.SigningCertSelector signingCertSelector = availableCertificates -> x509Certificate; | |
KeyStoreKeyingDataProvider.KeyStorePasswordProvider password = () -> tokenProperties.getPwd().toCharArray(); | |
KeyingDataProvider kp = new PKCS11KeyStoreKeyingDataProvider(tokenProperties.driverUse, PROVIDER_NAME, Integer.parseInt(tokenProperties.getSlot()), signingCertSelector, password, null, false); | |
XadesSigningProfile p = new XadesBesSigningProfile(kp).withAlgorithmsProviderEx(new XMLProcess.MyAlgorithmsProviderEx()); | |
return p.newSigner(); | |
} |
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 org.example; | |
import java.io.IOException; | |
import java.nio.file.Files; | |
import java.nio.file.Paths; | |
import java.util.*; | |
import java.util.stream.Collectors; | |
import java.util.stream.Stream; | |
public class Main { |
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 org.example; | |
import java.io.IOException; | |
import java.nio.file.Files; | |
import java.nio.file.Paths; | |
import java.util.*; | |
import java.util.stream.Collectors; | |
import java.util.stream.Stream; | |
public class Main { |
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
openapi: 3.0.1 | |
info: | |
title: OpenAPI definition | |
version: v0 | |
servers: | |
- url: http://localhost:8080/api | |
description: Generated server url | |
paths: | |
/update-location/{id}: | |
put: |
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 | |
@Entity | |
@Table(name = "student") | |
public class Student { | |
@Id | |
@GeneratedValue(strategy = GenerationType.IDENTITY) | |
private Long id; | |
private String name; |
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 | |
@Entity | |
@Table(name = "student") | |
public class Student { | |
@Id | |
@GeneratedValue(strategy = GenerationType.AUTO) | |
private Long id; | |
private String name; |
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 StudentService { | |
@Autowired | |
StudentRepository studentRepository; | |
public void saveStudent(){ | |
final Student student = new Student(); | |
student.setName("ABC Name"); | |
student.setAge(15); | |
studentRepository.save(student); |
NewerOlder