Skip to content

Instantly share code, notes, and snippets.

@shimdh
shimdh / vector.md
Last active January 30, 2023 07:02
길드활동_스니핏

vector에 값추가하고 이후에 값이 있으면 앞에서 하나씩 빼기

#include <vector>
#include <iostream>

int main()
{
    std::vector<int> myVector;
 // 값을 마지막에 추가
@shimdh
shimdh / work.md
Last active January 30, 2023 05:20
주간업무

주간업무

Done

  • 길드활동 및 길드원 활동 정보 구조체 생성
  • 길드 경험치 업데이트 로직 수정
    • 국가관련 내용 제거
    • 길드에 길드경험치를 업데이트 하지 않고 User에서 주기적으로 길드 경험치 합친후 업데이트하도록 수정
    • 길드 경험치에 따른 랭킹등록 업데이트는 합친후 한번에 업데이트하도록 수정
  • 길드티켓부분 제거
@shimdh
shimdh / code.md
Created January 27, 2023 04:23
xml 데이타 생성

xml 데이타 생성

code

#include <string>
#include <map>
#include <sstream>
#include <iostream>
@shimdh
shimdh / structure.md
Created January 27, 2023 01:47
길드활동 구조
@shimdh
shimdh / code.md
Last active January 27, 2023 01:50
table GuildMisson

erDiagram

TB_GUILD_MISSION {
    bigint GUILD_ID PK
    int MISSION_INDEX PK
    int MISSION_COUNT
    datetime RESET_TIME
}

TB_PC_GUILD_MISSION {

@shimdh
shimdh / codeswing.json
Last active January 24, 2022 12:00
intro vue2(4): List Rendering
{
"scripts": [],
"styles": []
}
@shimdh
shimdh / codeswing.json
Created January 24, 2022 08:13
intro vue2(3): Conditional Rendering
{
"scripts": [],
"styles": []
}
@shimdh
shimdh / codeswing.json
Last active January 24, 2022 08:20
intro vue2(2): Attribute Binding
{
"scripts": [],
"styles": []
}
@shimdh
shimdh / codeswing.json
Last active January 24, 2022 08:20
intro vue2(1): The Vue Instance
{
"scripts": [],
"styles": []
}
@shimdh
shimdh / rest-client.md
Last active March 24, 2023 20:08
REST Client(vs code)