Seemingly Online
close
프로필 배경
프로필 로고

Seemingly Online

  • 카테고리 (571)
    • Language (250)
      • 알고리즘 (100)
      • Java (144)
      • python (2)
      • Kotlin (4)
    • WEB (141)
      • Spring (24)
      • Spring Security (3)
      • Next.js (3)
      • TypeScript (3)
      • JavaScript (45)
      • jQuery (7)
      • CSS (25)
      • XML (3)
      • Maven (1)
      • Gradle (1)
      • JSP (1)
      • Thymeleaf (10)
      • HTML (11)
      • MyBatis (1)
      • JPA (3)
    • App (45)
      • Flutter (34)
      • Dart (4)
      • Android (2)
      • IOS (3)
      • Firebase (2)
    • Git (6)
      • GitHub (6)
    • AWS (15)
      • SCT (2)
      • Amazon Aurora (1)
      • S3 (2)
      • EventBridge (1)
      • EC2 (7)
      • EFS (1)
    • DataBase (44)
      • MySQL (19)
      • Oracle SQL (19)
      • Postgre-SQL (6)
    • OS (33)
      • Linux (27)
      • Windows (1)
      • Mac (5)
    • Tool (15)
      • DocKer (6)
      • Intellij (7)
      • VScode (2)
    • IT (17)
      • Developer-etc (13)
      • 개발상식 (4)
    • CodePen (2)
      • 캐러셀 (2)
  • 홈
  • 방명록

리눅스 타임존 한국으로 변경하는 방법 timedatectl

2024-04-251. 방법 timedatectl 을 이용해서 타임존을 Asia/Seoul 으로 변경한다. timedatectl set-timezone Asia/Seoul이후 날짜를 확인하면 한국시간으로 설정 된 것을 확인 할 수 있다. bash-5.2# dateWed Apr 24 14:46:12 KST 2024메인 이미지 출처 : 사진: Unsplash의set.sj

  • format_list_bulleted OS/Linux
  • · 2024. 4. 25.
  • textsms
firebase: please verify the new email before changing email. 해결방법

firebase: please verify the new email before changing email. 해결방법

2024-04-16 1. 방법 Authentication > 설정 > 사용자 작업 > 이메일 열거 보호(권장) 체크박스 해제를 해주면 된다. 해당 부분은 2023년 9월 15일 이후에 프로젝트를 만든 경우 이메일 열거 보호가 기본적으로 사용 설정이 되는데 이는 이메일 열거는 악의적인 행위자가 API에 이메일 주소를 전달하고 응답을 확인하여 시스템의 사용자를 추측하거나 확인하는 무차별 대입 공격의 한 유형을 방지하기 위해 설정이 된다고 한다. 2. 참고 https://stackoverflow.com/questions/77147854/firebase-please-verify-the-new-email-before-changing-email-auth-operation-not firebase: please ver..

  • format_list_bulleted App/Firebase
  • · 2024. 4. 16.
  • textsms
Vscode 자동 줄바꿈 끄기 (코드 콘솔 둘다)

Vscode 자동 줄바꿈 끄기 (코드 콘솔 둘다)

2024-04-12 1. 방법 Preferences -> Settings 클릭 Code 스타일 자동 줄 바꿈 방지 Word Wrap 검색 후 -> off 처리 Debug Console 스타일 자동 줄 바꿈 방지 Debug console 검색 후 아래로 조금 스크롤하다 보면 아래 설정 보임 체크박스 unCheck 메인 이미지 출처 : 사진: Unsplash의Jack White

  • format_list_bulleted Tool/VScode
  • · 2024. 4. 12.
  • textsms
JPA  PostgreSQL 오류: ll_to_earth(numeric, numeric) 이름의 함수가 없음 해결 방법

JPA PostgreSQL 오류: ll_to_earth(numeric, numeric) 이름의 함수가 없음 해결 방법

2024-04-08 1. 이슈 발생 이미 extension으로 cube와 earthdistance를 설치함에도 불구하고 아래와 같은 에러가 발생했다. > create extension cube [2024-03-26 10:25:45] [42710] 오류: "cube" 이름의 확장 모듈이 이미 있습니다 > create extension earthdistance [2024-03-26 10:25:57] [42710] 오류: "earthdistance" 이름의 확장 모듈이 이미 있습니다 > select ,trh.latitude ,trh.longitude from test_tb where earth_distance(ll_to_earth(37.60929341197407, 127.05318831597205) , ll_..

  • format_list_bulleted WEB/JPA
  • · 2024. 4. 8.
  • textsms
자바스크립트 이미지 preload 구현하기 이미지 변경 시 깜빡임 제거

자바스크립트 이미지 preload 구현하기 이미지 변경 시 깜빡임 제거

2024-04-03 1. 방법 아래와 같이 코드를 구성하면 최초 페이지 접속 후 이미지가 지역변수에 담기게 되어 이후에 이미지 경로를 변경해도 깜빡임 현상을 제거할 수 있다. let images = []; //이미지 객체를 담을 변수 let imagesUrs = []; //동적이미지 url 정보르 담을 변수 실제 이미지 경로를 넣어주면 된다. document.addEventListener('DOMContentLoaded', function () { function imgPreload() { for(let i = 0; i < imageUrls.length; i++) { images[i] = new Image(); images[i].src = imageUrls[i]; } } imgPreload() } 메인 ..

  • format_list_bulleted WEB/JavaScript
  • · 2024. 4. 3.
  • textsms
Spring Security 에서 Authentication 의 isAuthenticated() 가 항상 true 인 이유

Spring Security 에서 Authentication 의 isAuthenticated() 가 항상 true 인 이유

2024-04-01 1. 예시 코드 아래와 같은 코드가 있다고 가정해 보자. 해당 코드의 결과는 항상 로그인이 되어 있든 로그인이 되어 있지 않던 로그아웃을 하던 "if (authentication.isAuthenticated()) log.info("인증됨")" 코드가 실행된다. 즉 authentication.isAuthenticated() 이 부분이 항상 true를 리턴한다. 그 이유는 무엇일까? Authentication authentication = SecurityContextHolder.getContext().getAuthentication(); if (authentication.isAuthenticated()) log.info("인증됨") else log.info("인증안됨") } 2. 원인 S..

  • format_list_bulleted WEB/Spring Security
  • · 2024. 4. 1.
  • textsms
  • navigate_before
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • ···
  • 96
  • navigate_next
공지사항
전체 카테고리
  • 카테고리 (571)
    • Language (250)
      • 알고리즘 (100)
      • Java (144)
      • python (2)
      • Kotlin (4)
    • WEB (141)
      • Spring (24)
      • Spring Security (3)
      • Next.js (3)
      • TypeScript (3)
      • JavaScript (45)
      • jQuery (7)
      • CSS (25)
      • XML (3)
      • Maven (1)
      • Gradle (1)
      • JSP (1)
      • Thymeleaf (10)
      • HTML (11)
      • MyBatis (1)
      • JPA (3)
    • App (45)
      • Flutter (34)
      • Dart (4)
      • Android (2)
      • IOS (3)
      • Firebase (2)
    • Git (6)
      • GitHub (6)
    • AWS (15)
      • SCT (2)
      • Amazon Aurora (1)
      • S3 (2)
      • EventBridge (1)
      • EC2 (7)
      • EFS (1)
    • DataBase (44)
      • MySQL (19)
      • Oracle SQL (19)
      • Postgre-SQL (6)
    • OS (33)
      • Linux (27)
      • Windows (1)
      • Mac (5)
    • Tool (15)
      • DocKer (6)
      • Intellij (7)
      • VScode (2)
    • IT (17)
      • Developer-etc (13)
      • 개발상식 (4)
    • CodePen (2)
      • 캐러셀 (2)
최근 글
인기 글
최근 댓글
태그
  • #Java8
  • #Java
  • #백준알고리즘
  • #백준
  • #자바기초
  • #backjoon
  • #자바
  • #BOJ
  • #자바알고리즘
  • #자바공부
전체 방문자
오늘
어제
전체
Copyright © 쭈미로운 생활 All rights reserved.
Designed by JJuum

티스토리툴바