Skip to content

Commit f932e90

Browse files
committed
Deploy post/2026-04-26-01 74750ed
1 parent 71b7dc1 commit f932e90

25 files changed

Lines changed: 395 additions & 318 deletions

assets/go-language-family-tree.png

109 KB
Loading

assets/gopher_1.webp

-9.39 KB
Binary file not shown.

assets/gopher_2.webp

-11.7 KB
Binary file not shown.
Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,28 +4,28 @@
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
66

7-
<meta name="giscus:backlink" content="https://chebread.github.io/post/python-객체-클래스">
7+
<meta name="giscus:backlink" content="https://chebread.github.io/post/객체-클래스">
88

9-
<title>[Python] 객체, 클래스 | 차한음 블로그</title>
9+
<title>객체, 클래스 | 차한음 블로그</title>
1010
<meta name="description" content="파이썬의 모든 것은 객체다 파이썬의 모든 것은 객체다. 하지만 파이썬은 특수 구문을 이용해서 대부분의 객체를 숨긴다. num = 7을 입력했을 때 7이 담긴 정수 유형의 객체를 생...">
1111
<meta name="author" content="차한음">
1212
<link rel="canonical" href="https://chebread.github.io/">
1313

14-
<meta property="og:title" content="[Python] 객체, 클래스 | 차한음 블로그">
14+
<meta property="og:title" content="객체, 클래스 | 차한음 블로그">
1515
<meta property="og:description" content="파이썬의 모든 것은 객체다 파이썬의 모든 것은 객체다. 하지만 파이썬은 특수 구문을 이용해서 대부분의 객체를 숨긴다. num = 7을 입력했을 때 7이 담긴 정수 유형의 객체를 생...">
1616
<meta property="og:type" content="article">
17-
<meta property="og:url" content="https://chebread.github.io/post/python-객체-클래스">
17+
<meta property="og:url" content="https://chebread.github.io/post/객체-클래스">
1818
<meta property="og:site_name" content="차한음 블로그">
1919

2020
<meta name="twitter:card" content="summary_large_image">
21-
<meta name="twitter:title" content="[Python] 객체, 클래스 | 차한음 블로그">
21+
<meta name="twitter:title" content="객체, 클래스 | 차한음 블로그">
2222
<meta name="twitter:description" content="파이썬의 모든 것은 객체다 파이썬의 모든 것은 객체다. 하지만 파이썬은 특수 구문을 이용해서 대부분의 객체를 숨긴다. num = 7을 입력했을 때 7이 담긴 정수 유형의 객체를 생...">
2323

2424
<script type="application/ld+json">
2525
{
2626
"@context": "https://schema.org",
2727
"@type": "BlogPosting",
28-
"headline": "[Python] 객체, 클래스 | 차한음 블로그",
28+
"headline": "객체, 클래스 | 차한음 블로그",
2929
"author": {
3030
"@type": "Person",
3131
"name": "차한음"
@@ -68,9 +68,9 @@
6868

6969
<main class="post-content">
7070
<header class="post-header">
71-
<h1 class="post-title">[Python] 객체, 클래스</h1>
71+
<h1 class="post-title">객체, 클래스</h1>
7272
<p class="post-date"><time datetime="2025-05-30">2025년 05월 30일</time></p>
73-
<p class="post-category"><a href="/posts/python-%eb%ac%b8%eb%b2%95-%ec%a0%95%eb%a6%ac">[Python 문법 정리]</a></p>
73+
<p class="post-category"><a href="/posts/introducing-python">[Introducing Python]</a></p>
7474
</header>
7575
<div class="post-body">
7676
<article class="markdown-body"><h2>파이썬의 모든 것은 객체다</h2>
Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,28 +4,28 @@
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
66

7-
<meta name="giscus:backlink" content="https://chebread.github.io/post/python-날짜-시간">
7+
<meta name="giscus:backlink" content="https://chebread.github.io/post/날짜-시간">
88

9-
<title>[Python] 날짜, 시간 | 차한음 블로그</title>
9+
<title>날짜, 시간 | 차한음 블로그</title>
1010
<meta name="description" content="날짜, 시간 파이썬 표준 라이브러리 개발자는 날짜와 시간에 많은 노력을 기울인다. 이번 2장에서는 프로그래머들이 부딪히는 몇 가지 문제에 대해 살펴보고, 이를 좀 더 단순하게 만드...">
1111
<meta name="author" content="차한음">
1212
<link rel="canonical" href="https://chebread.github.io/">
1313

14-
<meta property="og:title" content="[Python] 날짜, 시간 | 차한음 블로그">
14+
<meta property="og:title" content="날짜, 시간 | 차한음 블로그">
1515
<meta property="og:description" content="날짜, 시간 파이썬 표준 라이브러리 개발자는 날짜와 시간에 많은 노력을 기울인다. 이번 2장에서는 프로그래머들이 부딪히는 몇 가지 문제에 대해 살펴보고, 이를 좀 더 단순하게 만드...">
1616
<meta property="og:type" content="article">
17-
<meta property="og:url" content="https://chebread.github.io/post/python-날짜-시간">
17+
<meta property="og:url" content="https://chebread.github.io/post/날짜-시간">
1818
<meta property="og:site_name" content="차한음 블로그">
1919

2020
<meta name="twitter:card" content="summary_large_image">
21-
<meta name="twitter:title" content="[Python] 날짜, 시간 | 차한음 블로그">
21+
<meta name="twitter:title" content="날짜, 시간 | 차한음 블로그">
2222
<meta name="twitter:description" content="날짜, 시간 파이썬 표준 라이브러리 개발자는 날짜와 시간에 많은 노력을 기울인다. 이번 2장에서는 프로그래머들이 부딪히는 몇 가지 문제에 대해 살펴보고, 이를 좀 더 단순하게 만드...">
2323

2424
<script type="application/ld+json">
2525
{
2626
"@context": "https://schema.org",
2727
"@type": "BlogPosting",
28-
"headline": "[Python] 날짜, 시간 | 차한음 블로그",
28+
"headline": "날짜, 시간 | 차한음 블로그",
2929
"author": {
3030
"@type": "Person",
3131
"name": "차한음"
@@ -68,9 +68,9 @@
6868

6969
<main class="post-content">
7070
<header class="post-header">
71-
<h1 class="post-title">[Python] 날짜, 시간</h1>
71+
<h1 class="post-title">날짜, 시간</h1>
7272
<p class="post-date"><time datetime="2025-06-20">2025년 06월 20일</time></p>
73-
<p class="post-category"><a href="/posts/python-%eb%ac%b8%eb%b2%95-%ec%a0%95%eb%a6%ac">[Python 문법 정리]</a></p>
73+
<p class="post-category"><a href="/posts/introducing-python">[Introducing Python]</a></p>
7474
</header>
7575
<div class="post-body">
7676
<article class="markdown-body"><h2>날짜, 시간 파이썬 표준 라이브러리</h2>

post/내가-ai에게-거부감을-느끼는-이유.html

Lines changed: 0 additions & 128 deletions
This file was deleted.

0 commit comments

Comments
 (0)