Skip to content

Instantly share code, notes, and snippets.

View tinajeong's full-sized avatar
🌻
Keep exploring, 계속 탐색하세요!

Tina Jeong tinajeong

🌻
Keep exploring, 계속 탐색하세요!
View GitHub Profile
🌞 Morning 59 commits ██░░░░░░░░░░░░░░░░░░░ 9.7%
🌆 Daytime 153 commits █████▎░░░░░░░░░░░░░░░ 25.2%
🌃 Evening 365 commits ████████████▋░░░░░░░░ 60.1%
🌙 Night 30 commits █░░░░░░░░░░░░░░░░░░░░ 4.9%
@tinajeong
tinajeong / transkey.md
Created June 20, 2022 15:48
touchEn mTransKey 세팅 메뉴얼

touchEn mTransKey란?

라온시큐어의 모바일 키패드 보안모듈이다. 키패드데모 페이지의 형태이다. qwerty 버전과 number버전, 그리고 css 기반의 디자인 커스텀을 지원한다.

정식 라이선스

정식 라이선스 세팅하기

정식 라이선스는 파일은 P(permanent)가 포함되어있다. 임시 라이선스 파일은 T(temporary)이다.

  1. transkey_license.ini 파일을 수정해야한다.
  2. 파일을 열어 라이선스 타입을 P로 수정한다. -> license.type=p
  3. 라이선스의 경로를 license.permanent.path=/WEB-INF/raon_config/transkey__P_license로 수정한다.
@tinajeong
tinajeong / log.sh
Created June 7, 2022 03:02
babel.loadPartialConfigSync is not a function (0:undefined)
[00:44:54.050] Cloning github.com/tinajeong/todays-artwork (Branch: main, Commit: f24b01a)
[00:44:55.683] Cloning completed: 1.632s
[00:44:56.181] Looking up build cache...
[00:44:59.138] Build cache downloaded [33.62 MB]: 2677.462ms
[00:44:59.474] Running "vercel build"
[00:45:00.078] Vercel CLI 24.2.5-canary.2 build (beta) — https://vercel.com/feedback
[00:45:00.348] Installing dependencies...
[00:45:00.812] yarn install v1.22.17
[00:45:00.925] [1/4] Resolving packages...
[00:45:01.563] [2/4] Fetching packages...
@tinajeong
tinajeong / PerformanceTest.java
Last active June 3, 2022 07:25
poi style performance test
import java.io.IOException;
import org.apache.poi.ss.usermodel.BorderStyle;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.CellStyle;
import org.apache.poi.ss.usermodel.FillPatternType;
import org.apache.poi.ss.usermodel.Font;
import org.apache.poi.ss.usermodel.HorizontalAlignment;
import org.apache.poi.ss.usermodel.IndexedColors;
import org.apache.poi.ss.usermodel.Row;
@tinajeong
tinajeong / test.md
Last active June 10, 2022 01:42
신용정보 이용/제공 통지 기능 테스트 시나리오

테스트 시나리오

이메일 인증

  • 쿠콘(내부)/네이버(외부) 메일로 날리기
  • 재발송 2번 클릭 시도 -> 10분 제한 작동
    • 다시 메일인증 시도했을때 , 나갔다가 다시 들어왔을때. 10분 제한시간 작동하는지 확인
  • 인증번호 5번 틀릴때 -> 메인으로 이동
@tinajeong
tinajeong / gist:323fdf994723a45d27433a9cb632be59
Last active March 21, 2022 01:05
이전에 개발한 TODO LIST 소스
const newTodoForm = document.getElementById('newTodoForm')
const newTodo = document.getElementById('newTodo')
const todoList = document.getElementById('todoList')
const todoListEls = todoList.getElementsByTagName('li')
let todoListState = []
// todoListState 초기화
for (let i = 0; i < todoListEls.length; i++) {
todoListState.push(todoListEls[i].innerText)
}
@tinajeong
tinajeong / SampleArray.java
Created January 11, 2021 15:00
자바 다차원 배열의 선언
public class SampleArray {
public static void main(String[] args) {
int[][][][] arr4d = new int[2][2][2][3];
System.out.printf("%d\t",arr4d.length);
System.out.printf("%d\t",arr4d[0].length);
System.out.printf("%d\t",arr4d[0][0].length);
System.out.printf("%d\t",arr4d[0][0][0].length);
System.out.println();
int[][][][] arr4d2223 = {