# lint-klint-and-detekt.yaml name: lint-klint-and-detekt on: pull_request: branches: - main workflow_dispatch: jobs: lint-klint-and-detekt: runs-on: [ self-hosted, Linux, X64 ] steps: - name: Checkout uses: actions/checkout@v2 - name: run working-directory: package run: ./gradlew build # build.gradle.kts import io.gitlab.arturbosch.detekt.Detekt group = "com.tistory.seunggabi" description = "seu..
name: auto-author-assign on: issues: types: [ opened, reopened ] pull_request_target: types: [ opened, reopened ] permissions: issues: write pull-requests: write jobs: assign-author: runs-on: ubuntu-latest steps: - uses: seunggabi/auto-author-assign@v1.6.0 http://github.com/bucketplace/ads/pull/12
- https://unix.stackexchange.com/questions/374389/formatting-the-date-in-bash/710512#710512 - https://www.vankuik.nl/2019-04-23_ISO_date_on_macOS Formatting the date in bash I would like to format the date in bash in a script. The format is: 2016-10-05T12:18:36.890+02:00 I'm currently using: $(date +%Y%m%d%H%M%S) Any idea how this can be done? unix.stackexchange.com vankuik.nl: 2019-04-23 ISO da..
https://newly0513.tistory.com/200 [Presto] DATE_ADD, DATE_DIFF Unit 설명 millisecond 밀리초 second 초 minute 분 hour 시 day 일 week 주 month 월 quarter 분기 year 년 DATE_ADD 사용법 : DATE_ADD(unit, value, timestamp) timestamp에는 'DATE, TIME, TIME WITH TIME ZON.. newly0513.tistory.com
https://brunch.co.kr/@chris-song/62 멀티 암드 밴딧(Multi-Armed Bandits) 심플하고 직관적인 학습 알고리즘 | 강화학습의 정통 교과서라할 수 있는 Sutton 교수님의 Reinforcement Learning : An Introduction 책을 읽어보자. 챕터 1에서는 앞으로 다룰 내용에 대한 개요가 나오며, 챕 brunch.co.kr https://towardsdatascience.com/beyond-a-b-testing-multi-armed-bandit-experiments-1493f709f804 Beyond A/B Testing: Multi-armed Bandit Experiments An implementation of Google Analytics’ ..
https://velog.io/@ohzzi/Entity-DAO-DTO%EA%B0%80-%EB%AC%B4%EC%97%87%EC%9D%B4%EB%A9%B0-%EC%99%9C-%EC%82%AC%EC%9A%A9%ED%95%A0%EA%B9%8C Entity, DAO, DTO가 무엇이며 왜 사용할까? 개인적으로 Spring Boot를 가지고 CRUD를 구현한 Todo-list를 만들어면서, Spring Data JPA를 사용하게 되었다. JPA를 사용하면서, 생전 처음 보는 Entity, DAO, DTO 개념을 사용하게 되었는데, 앞으로 계속 많이 velog.io
1. 데이터를 기반한 명확한 문장 2. 구조화된 문단 구성 3. 똑같은 정보를 기반한 팀 미팅 4. 성과가 아닌 고객 중심 2×2 보고서 (SWOT): 강점(Strength) – 약점(Weakness) – 기회(Oppotunity) – 위협(Threat) 5. 예의 바른 태도와 정중한 표현 http://channy.creation.net/blog/1620 아마존(Amazon)에서 배운 5가지 글쓰기와 소통 방식 :: Channy's Blog 차니 블로그(Channy Blog)는 웹기술, 오픈소스, 클라우드 컴퓨팅 등 다양한 IT 기술 주제에 대해 다루고 있습니다. channy.creation.net
object CommonUtils { inline fun methodName(): String = object {}::class.java.enclosingMethod.name inline fun className(): String = object {}::class.java.enclosingClass.simpleName } https://stackoverflow.com/questions/48181751/get-name-of-current-function-in-kotlin Get name of current function in Kotlin Update How can I get function name which is currently being execute using Kotlin? I'm trying t..
https://stackoverflow.com/questions/65255006/why-redis-command-llen-has-constant-time-complexity-instead-of-on Why redis command ‘LLEN’ has constant time complexity instead of O(n)? I know that redis list is implemented by linked list under the hood. However when calculating time complexity of length of the list, shouldn’t it be O(n)? stackoverflow.com
redis-cli shutdown http://daplus.net/database-redis-server%EB%A5%BC-%EC%96%B4%EB%96%BB%EA%B2%8C-%EC%A4%91%EC%A7%80%EC%8B%9C%ED%82%AC-%EC%88%98-%EC%9E%88%EC%8A%B5%EB%8B%88%EA%B9%8C/ [database] redis-server를 어떻게 중지시킬 수 있습니까? - 리뷰나라 나는 분명히이 redis-server내가 입력하여 새 서버를 시작하려고 할 때 때문에 실행중인 인스턴스를 redis-server, I는 다음과 같이 인사 해요 : Opening port: bind: Address already in use 이 서버를 중지하고 새 daplus.net
defaults write com.apple.menuextra.clock "DateFormat" 'EEE d MMM HH:mm:ss' https://baejjang-i.tistory.com/3 [MAC] BigSur 메뉴바/상태바 시간 초 단위로 변경하기 빅서 이전까지만 해도 년/월/일 시/분/초를 내가 원하는 대로 커스텀을 할 수 있었습니다. 없애고 싶은 부분은 없앨 수 있고 년/월/일 -> 월/일/년 이런 식으로도 변경 가능했죠. 하지만 빅서로 baejjang-i.tistory.com https://clickthis.blog/ko/kak-vklyuchit-sekundy-v-chasah-stroki-menyu-mac-sovety-po-macos/
val request = MockServerRequest.builder() .queryParam("a", a) .queryParam("b", b) .queryParam("c", c) .queryParam("d", d) .body(body) https://stackoverflow.com/questions/63528788/why-doesnt-spring-webflux-mockserverrequest-allow-an-empty-body Why doesn't Spring WebFlux MockServerRequest allow an empty body? I'm writing some tests for a Spring WebFlux application and I'm trying to mock a scenario..
https://stackoverflow.com/questions/22907231/how-to-copy-files-from-host-to-docker-container How to copy files from host to Docker container? I am trying to build a backup and restore solution for the Docker containers that we work with. I have Docker base image that I have created, ubuntu:base, and do not want have to rebuild it each t... stackoverflow.com docker cp foo.txt container_id:/foo.tx..
//nodeport-service.yaml apiVersion: v1 kind: Service metadata: name: nodeport-service spec: type: NodePort selector: app: nginx-for-svc ports: - protocol: TCP port: 80 targetPort: 8080 nodePort: 30000 https://real-dongsoo7.tistory.com/135 [Kubernetes] #5 NodePort, port, targetPort (feat.쉬어가기) 틈틈이 쿠버네티스 관련 서적들을 읽어가며 학습을 하고 있는데, 아무래도 단순히 읽고 예제를 따라가는 속도보다 블로그에 포스팅을 위해 글을 작성하고 정리하는 시간이 오래 걸리다 보니 포 r..
springdoc: swagger-ui: url: /docs/merged path: / api-docs: custom: title: API Test version: 1.0 description: API Test service: http://test.seunggabi.com name: test url: https://github.com/seunggabi/test email: seunggabi@gmail.com https://medium.com/dandelion-tutorials/documenting-functional-rest-endpoints-with-springdoc-openapi-21657c0ebc8a Documenting functional REST endpoints with springdoc-op..
https://velog.io/@leyuri/springboot-blog-project-69 springboot - blog project (69,70) 스프링부트 강좌 69강(블로그 프로젝트 ) - 댓글 작성시 Dto 사용해보기BoardApiController.java각각 따로따로 들고와서 진행하다 보니까 ... 프로그램이 지저분해지는 경향이 있다.dto 를 사용하지 않은 velog.io https://megazonedsg.github.io/tutorial-jpa/ [Tutorial] JPA - CRUD RestController 만들기 [2/3] JPA의 기본적인 사용방법을 익히기 위해 작성하는 글. megazonedsg.github.io
package com.tistory.seunggabi.util import java.lang.reflect.Constructor object ReflectionUtils { fun new(clazz: Class, vararg args: Any?): T { val list = if (args.isEmpty()) { emptyList() } else { args.asList() } @Suppress("UNCHECKED_CAST") val parameters = parameters(list as List) @Suppress("SpreadOperator") val constructor = clazz.getConstructor(*parameters) return new(constructor, list) } pri..
http://daplus.net/javascript-axios%EC%97%90%EC%84%9C-%ED%97%A4%EB%8D%94%EC%99%80-%EC%98%B5%EC%85%98%EC%9D%84-%EC%84%A4%EC%A0%95%ED%95%98%EB%8A%94-%EB%B0%A9%EB%B2%95%EC%9D%80-%EB%AC%B4%EC%97%87%EC%9E%85%EB%8B%88/ [javascript] Axios에서 헤더와 옵션을 설정하는 방법은 무엇입니까? - 리뷰나라 Axios를 사용하여 다음과 같은 HTTP 게시물을 수행합니다. import axios from 'axios' params = {'HTTP_CONTENT_LANGUAGE': self.language} headers = {'header1': ..
https://github.com/eslint/eslint/issues/10880 No files matching the pattern "node_modules/asn1.js" were found. · Issue #10880 · eslint/eslint Tell us about your environment ESLint Version: 4.19.1 Node Version: 9.8.0 npm Version: 6.4.1 What parser (default, Babel-ESLint, etc.) are you using? "babel-eslint": "^9.0.0", &... github.com
@Test fun givenList_whenAssociatedBy_thenResult() { val myList = listOf(user1, user2, user3) val myMap = myList.associateBy({ it.name }, { it.hobbies }) assertTrue(myMap.get("John")!!.contains("Hiking")) } https://www.baeldung.com/kotlin/list-to-map Converting a List to Map in Kotlin | Baeldung on Kotlin Learn how to convert a List to Map in Kotlin. www.baeldung.com
USE mysql; SELECT * FROM user; https://velog.io/@taelee/mysql-user%ED%99%95%EC%9D%B8-%EB%B0%8F-%EC%B6%94%EA%B0%80 mysql user확인 및 추가 mysql접속 뒤use mysql;select user, host from user;유저의 목록과 접속 허용된 ip를 볼 수 있다.mysql -uroot -p로 root 계정으로 접속mysql> create user USER_ID@localhost identified velog.io
#!/bin/bash for ARG in "$@" do K=$(echo "${ARG}" | cut -f1 -d=) V=$(echo "${ARG}" | cut -f2 -d=) case "${K}" in ENV) ENV=${V} ;; VERSION) VERSION=${V} ;; FILE) FILE=${V} ;; VALUE) VALUE=${V} ;; esac done case "${ENV}" in stage) path=https://satage/asdf ;; production) path=https://production/asdf ;; esac if [ -z "${VERSION}" ]; then VERSION=v1 fi path="${path}/${VERSION}" echo "==================..
@Test fun `should test suspending functions`() = runBlockingTest { assertThrows { failing() } } https://github.com/junit-team/junit5/issues/1851#issuecomment-640510865 Support assertThrows() with suspending functions in Kotlin · Issue #1851 · junit-team/junit5 Often when I write a unit test that has to assert that a certain exception is thrown I use the assertThrows() method. But I find myself r..
seunggab.kim@gabi-mac ~ pushd seunggabi ~/seunggabi ~ seunggab.kim@gabi-mac ~/seunggabi pushd workspace ~/seunggabi/workspace ~/seunggabi ~ seunggab.kim@gabi-mac ~/seunggabi/workspace popd ~/seunggabi ~ seunggab.kim@gabi-mac ~/seunggabi popd ~ seunggab.kim@gabi-mac ~ https://hbase.tistory.com/65 [Linux] Bash - pushd, popd 명령 Bash에서 현재 작업 디렉토리를 변경하기 위해서 'cd' 명령을 사용한다. Change D..
- Total
- Today
- Yesterday
- 할인
- Bot
- 김달
- 테슬라 리퍼럴 코드 혜택
- 모델y
- 팔로워 수 세기
- 테슬라 크레딧 사용
- 메디파크 내과 전문의 의학박사 김영수
- 테슬라 리퍼럴 코드 생성
- COUNT
- 책그림
- 모델 Y 레퍼럴
- 테슬라 레퍼럴 적용 확인
- follower
- 테슬라 리퍼럴 코드
- Kluge
- 연애학개론
- 레퍼럴
- 테슬라
- wlw
- 테슬라 레퍼럴 코드 확인
- 인스타그램
- 유투브
- 테슬라 추천
- 클루지
- 테슬라 레퍼럴
- 어떻게 능력을 보여줄 것인가?
- 개리마커스
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |