-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
912 lines (519 loc) · 24.3 KB
/
index.html
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
<!DOCTYPE html>
<html
dir="ltr"
lang="en"
data-theme=""
class="html"
><head>
<title>
TIL the END |
Jackson Kim
</title>
<meta charset="utf-8" /><meta name="generator" content="Hugo 0.68.3" /><meta name="viewport" content="width=device-width,initial-scale=1,viewport-fit=cover" />
<meta name="author" content="Jackson Kim" />
<meta
name="description"
content="
Wanna be Good SLAMer
"
/>
<link
rel="stylesheet"
href="/scss/main.min.f56f0970bc00d4c7ffdb126b93d067aa889f87a5604f2b2a77770478f3966a03.css"
integrity="sha256-9W8JcLwA1Mf/2xJrk9Bnqoifh6VgTysqd3cEePOWagM="
crossorigin="anonymous"
type="text/css"
/>
<link
rel="stylesheet"
href="/css/markupHighlight.min.793b323d7f2d9fbfd0b93f4d593fb5ad77b918716ed33eddea403fa87f770403.css"
integrity="sha256-eTsyPX8tn7/QuT9NWT+1rXe5GHFu0z7d6kA/qH93BAM="
crossorigin="anonymous"
type="text/css"
/>
<link rel="stylesheet" href="https://JacksonK9.github.io/css/table.css"/>
<link
rel="stylesheet"
href="/fontawesome/css/fontawesome.min.7d272de35b410fb165377550cdf9c4d3a80fbbcc961e111914e4d5c0eaf5729f.css"
integrity="sha256-fSct41tBD7FlN3VQzfnE06gPu8yWHhEZFOTVwOr1cp8="
crossorigin="anonymous"
type="text/css"
/>
<link
rel="stylesheet"
href="/fontawesome/css/solid.min.55d8333481b07a08e07cf6f37319753a2b47e99f4c395394c5747b48b495aa9b.css"
integrity="sha256-VdgzNIGwegjgfPbzcxl1OitH6Z9MOVOUxXR7SLSVqps="
crossorigin="anonymous"
type="text/css"
/>
<link
rel="stylesheet"
href="/fontawesome/css/brands.min.9ed75a5d670c953fe4df935937674b4646f92674367e9e66eb995bb04e821647.css"
integrity="sha256-ntdaXWcMlT/k35NZN2dLRkb5JnQ2fp5m65lbsE6CFkc="
crossorigin="anonymous"
type="text/css"
/>
<link rel="shortcut icon" href="/favicons/favicon.ico" type="image/x-icon" />
<link rel="apple-touch-icon" sizes="180x180" href="/favicons/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicons/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicons/favicon-16x16.png" />
<link rel="canonical" href="https://JacksonK9.github.io/" />
<link rel="alternate" type="application/rss+xml" href="/index.xml" title="TIL the END" />
<script
type="text/javascript"
src="/js/anatole-header.min.5c846cefa5ed21cceee981c70901aaf21b17b4e0b05bd777af840780918abea9.js"
integrity="sha256-XIRs76XtIczu6YHHCQGq8hsXtOCwW9d3r4QHgJGKvqk="
crossorigin="anonymous"
></script>
<script
type="text/javascript"
src="/js/anatole-theme-switcher.min.245da778410d349aba672975fe9ff04e24e608155cc9102b5c1c70554c1539c0.js"
integrity="sha256-JF2neEENNJq6Zyl1/p/wTiTmCBVcyRArXBxwVUwVOcA="
crossorigin="anonymous"
></script>
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:image" content="https://JacksonK9.github.io/images/site-feature-image.png"/>
<meta name="twitter:title" content="TIL the END"/>
<meta name="twitter:description" content="Wanna be Good SLAMer"/>
<meta property="og:title" content="TIL the END" />
<meta property="og:description" content="Wanna be Good SLAMer" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://JacksonK9.github.io/" />
<meta property="og:image" content="https://JacksonK9.github.io/images/site-feature-image.png"/>
<meta property="og:updated_time" content="2022-03-18T20:12:20+09:00" /><meta property="og:site_name" content="TIL the END" />
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "WebSite",
"name": "TIL the END",
"url": "https:\/\/JacksonK9.github.io\/",
"description": "Wanna be Good SLAMer",
"thumbnailUrl": "https:\/\/JacksonK9.github.io\/",
"license": ""
}
</script>
</head>
<body
class="body theme--light"
>
<div class="wrapper">
<aside
class="wrapper__sidebar"
><div
class="sidebar
animated fadeInDown
"
>
<div class="sidebar__content">
<div class="sidebar__introduction">
<img
class="sidebar__introduction-profileimage"
src="/images/K9.jpg"
alt="profile picture"
/>
<h1 class="sidebar__introduction-title">
<a href="/">TIL the END</a>
</h1>
<div class="sidebar__introduction-description">
<p>Wanna be Good SLAMer</p>
</div>
</div>
<ul class="sidebar__list">
<li class="sidebar__list-item">
<a
href="https://github.com/JacksonK9/"
target="_blank"
rel="noopener"
aria-label="GitHub"
title="GitHub"
>
<i class="fab fa-github fa-2x" aria-hidden="true"></i>
</a>
</li>
<li class="sidebar__list-item">
<a
href="mailto:[email protected]"
target="_blank"
rel="noopener"
aria-label="e-mail"
title="e-mail"
>
<i class="fas fa-envelope fa-2x" aria-hidden="true"></i>
</a>
</li>
</ul>
</div><footer class="footer footer__sidebar">
<ul class="footer__list">
<li class="footer__item">
©
Jackson Kim
2022
</li>
</ul>
</footer>
<script
type="text/javascript"
src="/js/medium-zoom.min.7d3bf3472b73d9ba107b3de37d0df8fa736593a3c6638c95eaed42006bfc0193.js"
integrity="sha256-fTvzRytz2boQez3jfQ34+nNlk6PGY4yV6u1CAGv8AZM="
crossorigin="anonymous"
></script><script defer type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.7/MathJax.js?config=TeX-AMS-MML_HTMLorMML" integrity="sha384-e/4/LvThKH1gwzXhdbY2AsjR3rm7LHWyhIG5C0jiRfn8AN2eTN5ILeztWw0H9jmN" crossorigin="anonymous"></script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [['$','$'], ['\\(','\\)']] } });
</script></div>
</aside>
<main
class="wrapper__main"
>
<header class="header"><div
class="
animated fadeInDown
"
>
<a role="button" class="navbar-burger" data-target="navMenu" aria-label="menu" aria-expanded="false">
<span aria-hidden="true" class="navbar-burger__line"></span>
<span aria-hidden="true" class="navbar-burger__line"></span>
<span aria-hidden="true" class="navbar-burger__line"></span>
</a>
<nav class="nav">
<ul class="nav__list" id="navMenu">
<li class="nav__list-item">
<a
class="nav__link--active"
href="/"
title=""
>Home</a
>
</li>
<li class="nav__list-item">
<div class="optionswitch">
<input class="optionswitch__picker" type="checkbox" id="1" hidden />
<label class="optionswitch__label" for="1"
>Posts <i class="fa fa-angle-down" aria-hidden="true"></i
></label>
<div class="optionswitch__triangle"></div>
<ul class="optionswitch__list">
<li class="optionswitch__list-item">
<a
href="/algorithm/"
title=""
>Algorithm</a
>
</li>
<li class="optionswitch__list-item">
<a
href="/programming/"
title=""
>Programming</a
>
</li>
<li class="optionswitch__list-item">
<a
href="/cv/"
title=""
>Computer Vision</a
>
</li>
<li class="optionswitch__list-item">
<a
href="/robotics/"
title=""
>Robotics</a
>
</li>
<li class="optionswitch__list-item">
<a
href="/etc/"
title=""
>ETC</a
>
</li>
</ul>
</div>
</li>
<li class="nav__list-item">
<a
href="/plans/"
title=""
>Plans</a
>
</li>
</ul>
<ul class="nav__list nav__list--end">
<li class="nav__list-item">
<div class="themeswitch">
<a title="Switch Theme">
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
</a>
</div>
</li>
</ul>
</nav>
</div>
</header>
<div
class="post
animated fadeInDown
"
>
<div class="post__content">
<!-- # .Hello World.
꾸준히 노력해서 업데이트하기.
### Objectives
* C++ 를 Python 정도로 다룰 수 있게 공부하기
* ROS1 2D SLAM 코드 주석 달기
* 1주에 1개 이상 꼭... 올려보기!
* 주차별 목표 사항 및 진행 사항 정리
---
* [파이썬 추월 코스 수업 듣기](https://www.youtube.com/channel/UChA2-phSc3F5A_J2uZEt7Dw)
* [인프런 따배씨](https://www.inflearn.com/course/following-c), [따배씨++](https://www.inflearn.com/course/following-c-plus) 듣기
* [소프트웨어 엔지니어가 되는 방법 천천히 진행](https://github.com/jwasham/coding-interview-university#how-to-use-it)
<details open>
<summary> 주차별 계획 및 진행 사항 </summary>
<details open>
<summary> 2022 / 05 </summary>
<div markdown="1">
### 5월 2째주 목표
* ~~[동빈나 강의 보고 리뷰 정리 (Algorithm Study) - 코딩 테스트 개요 및 파이썬 문법](https://github.com/JacksonK9/Study-Algorithms)~~
* ~~우아한형제들 Youtube 보고 리뷰 정리 ([기술부채](https://www.youtube.com/watch?v=HqSBwoczIMM), [개발자와 교육](https://www.youtube.com/watch?v=MYSur_q-Nd0), [딜리와 흑마법](https://www.youtube.com/watch?v=yrJBmBrA9TE), [개발자 Personal Branding](https://www.youtube.com/watch?v=_yRmR5tsT3E))~~
* ~~[추천 받은 자료구조 유튜브 보기](https://www.youtube.com/watch?v=oz9cEqFynHU)~~
* [AI for everyone 1주차 진행](https://www.coursera.org/learn/ai-for-everyone/lecture/5TPFo/machine-learning)
* [파이썬 추월 코스 수업 듣기](https://www.youtube.com/channel/UChA2-phSc3F5A_J2uZEt7Dw)
</div>
<div markdown="1">
### 5월 3째주 목표
* [동빈나 강의 보고 리뷰 정리 (Algorithm Study) - 개발형 코딩테스트](https://github.com/JacksonK9/Study-Algorithms)
* [AI for everyone 1주차 진행](https://www.coursera.org/learn/ai-for-everyone/lecture/5TPFo/machine-learning)
* [파이썬 추월 코스 수업 듣기](https://www.youtube.com/channel/UChA2-phSc3F5A_J2uZEt7Dw)
* ~~[동빈나 강의 보고 리뷰 정리 (Algorithm-Study) - BFS & DFS](https://www.youtube.com/watch?v=7C9RgOcvkvo&list=PLRx0vPvlEmdAghTr5mXQxGpHjWqSz0dgC&index=3)~~
</div>
<div markdown="1">
### 5월 4째주 목표
* [동빈나 강의 보고 리뷰 정리 (Algorithm Study) - 개발형 코딩테스트](https://github.com/JacksonK9/Study-Algorithms)
* [동빈나 강의 보고 리뷰 정리 (Algorithm Study) - 기타 그래프 이론](https://github.com/JacksonK9/Study-Algorithms)
* [동빈나 강의 보고 리뷰 정리 (Algorithm Study) - 벨만포드 알고리즘](https://github.com/JacksonK9/Study-Algorithms)
* [Szeliski 책 ch. 02 Image formation 보고 정리](https://szeliski.org/Book/)
* [AI for everyone 1주차 진행](https://www.coursera.org/learn/ai-for-everyone/lecture/5TPFo/machine-learning)
</div>
</details>
</details> --><blockquote>
</blockquote>
</div>
</div>
<div
class="post
animated fadeInDown
"
>
<div class="post__content">
<h3><a href="/programming/boost_function_bind/">C++ BOOST FUNCTION 및 BIND</a></h3>
<p>Table of Contents 함수 포인터 함수 포인터를 쓰는 이유 Boost Function Boost Bind Review 함수 포인터 C++에는 다양한 종류의 포인터들이 존재한다.</p>
</div>
<div class="post__footer">
<em class="fas fa-calendar-day"></em>
<span class="post__footer-date"
>
2022/11/14
</span
>
</div>
</div>
<div
class="post
animated fadeInDown
"
>
<div class="post__content">
<h3><a href="/algorithm/hyundai_mobis_algorithm_contest_2022_preliminary/">2022 현대 모비스 알고리즘 경진 대회 예선 문제 리뷰</a></h3>
<p>Problem 예선 문제 Dead or Arrive 주차 시스템 ADAS 시스템 생산공정 도로망 설계 Table of Contents 공통 사항 Dead or Arrive 설명 Dead or Arrive 풀이 주차 시스템 설명 주차 시스템 풀이 ADAS 시스템 설명 ADAS 시스템 풀이 Review 공통 사항 Python3 기준, 수행시간은 10초 이에 따라, 계산 가능한 최대 횟수는 약 2억번 Dead or Arrive 설명 각 차량은 v의 속도와 w의 내구도를 가짐 속도가 다른 차량은 모두 결승선 통과 속도가 같은 경우, 내구도가 가장 높은 차량만 결승선을 통과 속도와 내구도가 모두 같은 경우, 차량 번호가 가장 큰 차량만 결승선 통과 첫 번째 줄에 차량의 숫자 N이 입력 두 번째 줄부터 N줄만큼 각 차량의 v, w가 주어진다.</p>
</div>
<div class="post__footer">
<em class="fas fa-calendar-day"></em>
<span class="post__footer-date"
>
2022/09/26
</span
>
</div>
</div>
<div
class="post
animated fadeInDown
"
>
<div class="post__content">
<h3><a href="/algorithm/softeer_4th_certification_test/">소프티어 4차 인증평가 문제 풀이</a></h3>
<p>Problem 슈퍼컴퓨터 클러스터 통근버스 출발 순서 검증하기 참고 자료 - 알골 선생 Table of Contents 슈퍼컴퓨터 클러스터 설명 슈퍼컴퓨터 클러스터 풀이 통근버스 출발 순서 검증하기 설명 통근버스 출발 순서 검증하기 풀이 Review 슈퍼컴퓨터 클러스터 설명 문제가 꽤 깁니다…만 아무튼 요약하자면 다음과 같습니다.</p>
</div>
<div class="post__footer">
<em class="fas fa-calendar-day"></em>
<span class="post__footer-date"
>
2022/09/25
</span
>
</div>
</div>
<div
class="post
animated fadeInDown
"
>
<div class="post__content">
<h3><a href="/programming/clang_with_modoocode/">모두코드 C언어 #1</a></h3>
<p>원본 링크 - 씹어먹는 C언어 시작하기 Table of Contents 공부 수칙 C언어를 배우기 전에… 컴퓨터는 뭘까?</p>
</div>
<div class="post__footer">
<em class="fas fa-calendar-day"></em>
<span class="post__footer-date"
>
2022/08/23
</span
>
</div>
</div>
<div
class="post
animated fadeInDown
"
>
<div class="post__content">
<h3><a href="/robotics/cartographer_review/">SLAMDUNK CARTOGRAPHER REVIEW</a></h3>
<p>참고 원본 - SLAMDUNK Cartographer 참고 원본 - 오로카 Cartographer Table of Contents Contribution Graph SLAM Local SLAM Global SLAM Branch & Bound Beyond the Paper Review Abstract 및 Contribution We present the approach used in our backpack mapping platform which achieves real-time mapping and loop closure at 5cm resolution 본 논문에서는 5cm의 해상도를 가지는 지도를 실시간으로 Mapping 및 Loop 탐지를 할 수 있는 알고리즘을 제안하고 있습니다.</p>
</div>
<div class="post__footer">
<em class="fas fa-calendar-day"></em>
<span class="post__footer-date"
>
2022/08/09
</span
>
</div>
</div>
<div
class="post
animated fadeInDown
"
>
<div class="post__content">
<h3><a href="/algorithm/python_algorithm_tip_1/">PYTHON *, ZIP, JOIN</a></h3>
<p>참고 원본 - 파이썬의 Asterisk(*) 이해하기 참고 원본 - Python zip 참고 원본 - Python join Table of Contents Python * Python zip Python join Review Python * 연산자 * 연산자는 C 또는 C++에서는 Pointer를 나타낼 때 사용하거나 곱하기를 계산할 때 사용하는 경우가 일반적이다.</p>
</div>
<div class="post__footer">
<em class="fas fa-calendar-day"></em>
<span class="post__footer-date"
>
2022/08/08
</span
>
</div>
</div>
<div
class="post
animated fadeInDown
"
>
<div class="post__content">
<h3><a href="/algorithm/hyundai_mobis_similar_problem/">2022년도 현대모비스 코딩 테스트 유사 문제</a></h3>
<p>Problem 설탕 배달 평균 네 수 단어의 개수 회전 초밥 Table of Contents 설탕 배달 문제 설탕 배달 풀이 1 설탕 배달 풀이 2 평균 문제 평균 문제 풀이 네 수 문제 네 수 문제 풀이 단어의 개수 문제 단어의 개수 문제 풀이 회전 초밥 문제 회전 초밥 문제 풀이 Review 설탕 배달 (BOJ 2839) 3kg, 5kg의 설탕 봉지가 있음 특정 무게의 봉지를 들고 갈 때, 봉지의 개수를 최소화하고 싶음 얼핏보면 Greedy Algorithm을 적용하면 되지 않나?</p>
</div>
<div class="post__footer">
<em class="fas fa-calendar-day"></em>
<span class="post__footer-date"
>
2022/08/07
</span
>
</div>
</div>
<div
class="post
animated fadeInDown
"
>
<div class="post__content">
<h3><a href="/algorithm/k_h_company_coding_test_review/">카카오 모빌리티 및 우아한형제들 코딩테스트 리뷰</a></h3>
<p>Table of Contents 카카오 모빌리티 리뷰 우아한형제들 Review 카카오모빌리티 코딩테스트 리뷰 카카오 모빌리티 자율주행 S/W 엔지니어 (R & D)로 지원 2시간 15분 / 3문제 C, C++, Python 중 선택해서 진행 가능 Codility에서 테스트를 진행하며, 영어, 한글 모두 선택이 가능 문제는 일반적인 구현, 반례 찾기 문제가 출제 난이도는 2시간 15분 기준, 문제 풀이에는 약 1시간 정도, 30분 정도는 테스트를 할 정도의 난이도 특징으로는 문제의 시간 복잡도나 공간 복잡도를 고려하기 보다는, 정답이 맞냐 틀리냐에 초점을 맞춰서 풀면 된다는 점 우아한형제들 코딩테스트 리뷰 우아한형제들의 경우 로보틱스LAB팀 로봇 소프트웨어 엔지니어로 지원 3시간 / 4문제 마찬가지로 Codility에서 테스트 진행하였지만, 영어만 사용 가능 C, C++, Python, Java 등 더 다양한 언어를 지원 문제는 일반적인 구현, 반례 찾기, 코드 디버깅 문제가 출제 난이도는 3시간 기준, 문제 풀이에는 1시간 30분 정도, 30분 정도는 테스트를 할 정도의 난이도 문제의 시간 복잡도를 함께 고려하여 문제를 맞춰야하며, 효율을 따지는 편 Review 코딩테스트를 보는 플랫폼이 동일해서 그런지, 문제 스타일이 비슷했던 것으로 보임 카모에 비해 우형의 경우 문제 효율을 함께 따져야해서 조금 더 까다롭다는 느낌을 받음 우형의 경우 실제 사례에 조금 더 근접한 일반 공학을 아는 정도면 쉽게 구현할 수 있는 정도의 문제도 출제됨 아직 결과가 나오지 않아서, 문제를 맞추었는지 틀렸는지도 모르겠지만… 느낌은 그렇습니다.</p>
</div>
<div class="post__footer">
<em class="fas fa-calendar-day"></em>
<span class="post__footer-date"
>
2022/08/07
</span
>
</div>
</div>
<div
class="post
animated fadeInDown
"
>
<div class="post__content">
<h3><a href="/etc/git_legend_recipe_udemy_maker_jun/">GIT 강의 정리 및 리뷰</a></h3>
<p>원본 영상 - Git으로 만드는 전설의 레시피 - Udemy Table of Contents Git?</p>
</div>
<div class="post__footer">
<em class="fas fa-calendar-day"></em>
<span class="post__footer-date"
>
2022/06/05
</span
>
</div>
</div>
<div
class="post
animated fadeInDown
"
>
<div class="post__content">
<h3><a href="/etc/hugo_blog_customcss/">HUGO BLOG에 CUSTOM CSS 적용하기</a></h3>
<p>참고 사이트 - Add Custom CSS or JavaScript to Your Hugo Site Table of Contents 문제 정의 과정 해결 방법 추가 사항 Review 문제 정의 과정 이 내용을 찾아보려고 한 것은, 내가 사용하는 anatole 테마가 Markdown의 Table을 지원하지 않는 문제 때문이었다.</p>
</div>
<div class="post__footer">
<em class="fas fa-calendar-day"></em>
<span class="post__footer-date"
>
2022/06/05
</span
>
</div>
</div>
<div class="pagination">
<ul class="pagination__list">
<li class="pagination__list-item">
<span class="page-link current">1</span>
</li>
<li class="pagination__list-item">
<a class="page-link" href="/page/2/">2</a>
</li>
<li class="pagination__list-item">
<a class="page-link" href="/page/3/">3</a>
</li>
<li class="pagination__list-item">
<a class="page-link" href="/page/2/">
<i class="fa fa-angle-right" aria-label="Next"></i>
</a>
</li>
</ul>
</div>
</main>
</div><footer class="footer footer__base">
<ul class="footer__list">
<li class="footer__item">
©
Jackson Kim
2022
</li>
</ul>
</footer>
<script
type="text/javascript"
src="/js/medium-zoom.min.7d3bf3472b73d9ba107b3de37d0df8fa736593a3c6638c95eaed42006bfc0193.js"
integrity="sha256-fTvzRytz2boQez3jfQ34+nNlk6PGY4yV6u1CAGv8AZM="
crossorigin="anonymous"
></script><script defer type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.7/MathJax.js?config=TeX-AMS-MML_HTMLorMML" integrity="sha384-e/4/LvThKH1gwzXhdbY2AsjR3rm7LHWyhIG5C0jiRfn8AN2eTN5ILeztWw0H9jmN" crossorigin="anonymous"></script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [['$','$'], ['\\(','\\)']] } });
</script></body>
</html>