블로그
-
['25.11월] 머니소나타펀드 YTD +48.1%
Return -. 2025 YTD +48.1% (누적 +133.9%, IRR +11.3%) -. 코스피가 조정받으면서 머니소나타펀드는 좀 차별화되나 싶더니.. 현금보유 25%, 국내외주식 44% 대비 굉장히 공격적인 포지션 "그 어떠한 자산이든 베팅되어 있어야만 하는 시기" 레버리지 별로 좋아하진 않는데, 필요하다면 레버리지도 쓸 생각 C.
blog.naver.com · 2025.11.28
-
['25.10월] 머니소나타펀드 YTD +39.0%
Return -. 2025 YTD +39.0% (누적 +119.5%, IRR +10.6%) -. KOSPI가 한달간 얼마나 올랐나 우러러 보면, 그저 부끄러울 따름. C. Comment KOSPI 지수조차도 따라가지 못하는 주식쟁이가 무슨 말을 하겠는가. 그래도 주요종목 중.......
blog.naver.com · 2025.11.02
-
간단한 c# 개발
간단한 c# 개발 1. dotnet new console -n ParseCarNumber 2. cd ParseCarNumber ; dotnet add package Tesseract = 1) { Console.WriteLine("Usage: parse_car_number.exe "); return; } string imagePath = args[0]; if (!
blog.naver.com · 2025.03.26
-
초등 영단어, 단어가 읽기다와 함께 알아보는 효과적인 암기법!
초등 영단어 16개입니다. present, catch, beautiful, hungry, holiday, museum, bright, listen, country, return, bring 초등 3학년 단어 present, c.......
blog.naver.com · 2025.04.01
-
비전공자의 파이썬 공부(4)
디폴트 값은 오른쪽에서 부터 차례대로 할당되어야 합니다. ex) def Sum(a,b,c,d=0,e=0): return(a+b+c+d+e) 일 경우 sum(1,2,3) 처럼 세가지
blog.naver.com · 2024.03.18
-
3-8) New Eden City Project 2023 (The Final Edition)
By the sweat of your brow you will eat your food until you return to the ground, since from it you were taken; for dust you are and to dust you will return."
blog.naver.com · 2023.12.30
-
[파이썬]클래스 - 원의 둘레와 넓이 구하기
import math class Circle: def __init__(self, radius): self.radius = radius def area(self): return math.pi * (self.radius ** 2) def perimeter(self): return 2 * math.pi* self.radius c = Circle(10)# input("원의
blog.naver.com · 2023.01.16
-
[고쌤토익] 필수 코드 22. 부정 대명사 1
▶ 몸풀기 문제 The Party Hire Company requires that customers return ------- to the store at the end of the (A) everything (B) either (C) anything (D) which 렌탈 기간이 끝날 때 그 가게에 "모든 것"을 반납해야 한다는 의미로 everything이 정답
blog.naver.com · 2023.01.22
-
배열 접근 방식
#include "stdio.h" int main() { char* abc = "abc"; printf("%s",abc); printf("%c",abc[0]); printf("%c" ,*(abc+1)); printf("%c",2[abc]); return 0; }
blog.naver.com · 2022.03.22
-
아무렇게나 c# 정리 노트- [1]
c# 정리 노트 사실 c#을 제대로 배우려면, c/ c++을 먼저 배우는 것이 맞으나 우리는 시간과 그만큼의 정성을 들이기 싫다.! , if, int, long, return, short, sizeof, static, struct, switch, typeof, void, while C++(19개) : bool,
blog.naver.com · 2021.07.18