Home [Jekyll] 카테고리 화면에 표시하기
Post
Cancel

[Jekyll] 카테고리 화면에 표시하기

카테고리를 화면에 표기하기 위해서는 아래와 같이 코드를 markdown에 추가하면 된다.

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
  <h3>blog</h3>
  <ul>
    
      <li><a href="/posts/site-optimization-gatsby/">SEO 추가해 검색엔진 최적화하기 (opengraph, twitter, ...)</a></li>
    
      <li><a href="/posts/how-to-make-gatsby-blog/">Gatsby로 블로그 만들어보기</a></li>
    
  </ul>

  <h3>development</h3>
  <ul>
    
      <li><a href="/posts/deploying-to-netlify/">Netlify에 Gatsby 블로그 무료로 배포  호스팅, 어디까지 무료로 가능할까?</a></li>
    
  </ul>

  <h3>gatsby</h3>
  <ul>
    
      <li><a href="/posts/gatsby-adsense/">Gatsby에 Google Adsense를 추가하는 방법 (Netlify add snippet을 선택)</a></li>
    
      <li><a href="/posts/site-optimization-gatsby/">SEO 추가해 검색엔진 최적화하기 (opengraph, twitter, ...)</a></li>
    
  </ul>

  <h3>nodejs</h3>
  <ul>
    
      <li><a href="/posts/ssl-letsencrypt-gatsby/">node.js Express certbot을 이용해 letsencrypt 무료로 설정하기 (+삽질 과정)</a></li>
    
  </ul>

  <h3>git</h3>
  <ul>
    
      <li><a href="/posts/git-flow/">우리가  알고 있다고 생각하지만, 한번  확인하면 좋은 git 명령어  flow</a></li>
    
  </ul>

  <h3>elasticsearch</h3>
  <ul>
    
      <li><a href="/posts/elasticsearch-meow/">ES의 index가 자동으로 지워졌다(?) (malware meow bot의 공격)</a></li>
    
      <li><a href="/posts/elasticsearch-apis/">elasticsearch에서 자주 사용하는 api 모음</a></li>
    
      <li><a href="/posts/es-query-aggregation/">[ES] , 년도별 평균 거래금액 계산하는 쿼리 w/ agg, date_histogram, avg, calendar_interval</a></li>
    
  </ul>

  <h3>statistics</h3>
  <ul>
    
      <li><a href="/posts/t-distribution/">A/B 테스트에서  표본평균 사이의 차이를 어떻게 비교할까? (t-distribution와 t-test)</a></li>
    
      <li><a href="/posts/statistic-experiment-significant/">A/B 테스트 통계적 유의성(statistical significance) 유의성 검정, p-value의 의미</a></li>
    
      <li><a href="/posts/ab-test-significance/">A/B Test Significance in Python</a></li>
    
      <li><a href="/posts/ab-test-all-in-one/">A/B 테스트를 위한 이론 정리 (확률, 통계)</a></li>
    
  </ul>

  <h3>leetcode</h3>
  <ul>
    
      <li><a href="/posts/leetcode-longest-palindromic-substring/">[Leetcode] longest-palindromic-substring Time Limit Exceeded 지옥</a></li>
    
      <li><a href="/posts/leetcode-online-stock-span/">[LeetCode] 901. Online Stock Span (Python)</a></li>
    
  </ul>

  <h3>machine-learning</h3>
  <ul>
    
      <li><a href="/posts/matrix-factorization/">Matrix Factorization</a></li>
    
      <li><a href="/posts/google-recommendation/">Google Recommendation Systems</a></li>
    
      <li><a href="/posts/collaborative-filtering/">Collaborative Filtering</a></li>
    
      <li><a href="/posts/candidate-generation-overview/">후보군 생성 Overview</a></li>
    
      <li><a href="/posts/build-a-movie-recommendation-system/">Build a Movie Recommendation System</a></li>
    
      <li><a href="/posts/tfds/">TFDS를 이용한 mnist 분류기 만들기</a></li>
    
      <li><a href="/posts/tf-loading-preprocessing-data/">Tensorflow 데이터 로딩  전처리 파이프라인 구현하기</a></li>
    
  </ul>

  <h3>tensorflow</h3>
  <ul>
    
      <li><a href="/posts/tfds/">TFDS를 이용한 mnist 분류기 만들기</a></li>
    
      <li><a href="/posts/tf-loading-preprocessing-data/">Tensorflow 데이터 로딩  전처리 파이프라인 구현하기</a></li>
    
  </ul>

  <h3>python</h3>
  <ul>
    
      <li><a href="/posts/multiple-lang-caption-generator/">파이썬을 이용해서 여러 국가의 자막을 만드는 스크립트 (SRT, GoogleTrans를 이용)</a></li>
    
  </ul>

  <h3>recommendation</h3>
  <ul>
    
      <li><a href="/posts/matrix-factorization/">Matrix Factorization</a></li>
    
      <li><a href="/posts/collaborative-filtering/">Collaborative Filtering</a></li>
    
      <li><a href="/posts/build-a-movie-recommendation-system/">Build a Movie Recommendation System</a></li>
    
  </ul>

  <h3>candidate</h3>
  <ul>
    
      <li><a href="/posts/candidate-generation-overview/">후보군 생성 Overview</a></li>
    
  </ul>

  <h3>machine-learming</h3>
  <ul>
    
      <li><a href="/posts/deep-neural-networks-recommendation/">Deep Neural Network Models for Recommendation</a></li>
    
  </ul>

  <h3>deep-learning</h3>
  <ul>
    
      <li><a href="/posts/deep-neural-networks-recommendation/">Deep Neural Network Models for Recommendation</a></li>
    
  </ul>

  <h3>스파크</h3>
  <ul>
    
      <li><a href="/posts/pyspark-groupby-collect/">[Pyspark] groupby, collect_set 그룹별로 컬럼의 값을 리스트로 변경</a></li>
    
      <li><a href="/posts/pyspark-wilson-score-udf/">[Pyspark] Wilson Score UDF</a></li>
    
      <li><a href="/posts/spark-to-hive-table/">Spark 테이블을 Hive 테이블로 생성</a></li>
    
      <li><a href="/posts/pyspark-completness/">[Pyspark] Data Quaility를 측정하는 방법과 코드</a></li>
    
      <li><a href="/posts/pyspark-code/">[Pyspark] 코드 정리</a></li>
    
      <li><a href="/posts/pyspark-withcolumn-udf/">[Pyspark] withColumn 여러개 파라미터, 결과 여러개 받기</a></li>
    
  </ul>

  <h3>dev</h3>
  <ul>
    
      <li><a href="/posts/error/">ERror</a></li>
    
  </ul>

  <h3>jekyll</h3>
  <ul>
    
      <li><a href="/posts/%EC%B9%B4%ED%85%8C%EA%B3%A0%EB%A6%AC-%ED%99%94%EB%A9%B4%EC%97%90-%ED%91%9C%EC%8B%9C%ED%95%98%EA%B8%B0/">[Jekyll] 카테고리 화면에 표시하기</a></li>
    
      <li><a href="/posts/welcome-to-jekyll/">Welcome to Jekyll!</a></li>
    
      <li><a href="/posts/permalink/">permalink</a></li>
    
      <li><a href="/posts/jekyll-plugins/">[Jekyll] Plugins</a></li>
    
  </ul>

  <h3>update</h3>
  <ul>
    
      <li><a href="/posts/welcome-to-jekyll/">Welcome to Jekyll!</a></li>
    
      <li><a href="/posts/permalink/">permalink</a></li>
    
  </ul>

  <h3>sandbox</h3>
  <ul>
    
      <li><a href="/posts/jekyll-how-to-make-chirpy/">블로그 만들기 (theme: jekyll-theme-chirpy)</a></li>
    
      <li><a href="/posts/jekyll-how-to-make-blog/">블로그 만들기</a></li>
    
  </ul>

  <h3>개발환경</h3>
  <ul>
    
      <li><a href="/posts/VSCode-extensions/">VS Code Extentions</a></li>
    
      <li><a href="/posts/visualstudiocode-snippets/">Snippets in Visual Studio Code</a></li>
    
      <li><a href="/posts/zsh-setting/">iterm + zsh 설정</a></li>
    
  </ul>

  <h3>하이브</h3>
  <ul>
    
      <li><a href="/posts/hive-exclude-field-query/">[Hive] 특정 필드() 제외하고 컬럼 추출</a></li>
    
      <li><a href="/posts/hive-resources-env-setting/">[Hive] Setting Resource Environment</a></li>
    
      <li><a href="/posts/hive-external-partition-table/">[Hive] External Partitioned Table (CREATE, INSERT, ALTER)</a></li>
    
      <li><a href="/posts/hive-beeline-parameter/">[Hive] 변수, 파라미터 사용하는 방법</a></li>
    
      <li><a href="/posts/hive-timestamp-sql/">[Hive] Timestamp 쿼리 정리</a></li>
    
      <li><a href="/posts/hive-create-external-table/">[Hive] External 테이블 생성 쿼리</a></li>
    
  </ul>

  <h3>블로그</h3>
  <ul>
    
      <li><a href="/posts/jekyll-disqus/">[Jekyll] We were unable to load Disqus. If you are a moderator please see our troubleshooting guide.</a></li>
    
      <li><a href="/posts/jekyll-chirpy-favicon-setting/">[Jekyll] Chirpy Theme Favicon, Avatar 세팅</a></li>
    
  </ul>

  <h3>파이썬</h3>
  <ul>
    
      <li><a href="/posts/python-string-concat/">[Python] 문자열 붙이기 성능 비교 (join, +)</a></li>
    
      <li><a href="/posts/python-naming/">[Python] 파이썬 네이밍</a></li>
    
      <li><a href="/posts/python-postgresql-connection/">[Python] Postgresql Connection</a></li>
    
      <li><a href="/posts/postgresql-m1-psycopg2/">[Python] Mac Silicon psycopg2 설치 오류</a></li>
    
      <li><a href="/posts/fastapi-react-awesome/">[FastAPI] FastAPI + React</a></li>
    
      <li><a href="/posts/awesome-fastapi-github/">[FastAPI] Bunnybook 프로젝트 코드 구조 파악</a></li>
    
      <li><a href="/posts/fastapi-dockerize/">[FastAPI] Dockerize</a></li>
    
      <li><a href="/posts/fastapi-https/">[FastAPI] HTTPS 적용</a></li>
    
      <li><a href="/posts/navershopping-scrap/">[Python] 네이버 카탈로그 페이지 스크랩</a></li>
    
      <li><a href="/posts/naver-smartstore-scrap/">[Python] 네이버 스마트스토어 정보 스크랩</a></li>
    
      <li><a href="/posts/fastapi-start-2/">FastAPI 시작</a></li>
    
      <li><a href="/posts/fast-api-cors/">[FastAPI] CORS</a></li>
    
      <li><a href="/posts/coupang-scrap/">[Python] 쿠팡 이미지, 상품명, 가격 스크랩</a></li>
    
      <li><a href="/posts/streamlit-bug/">[Python] Streamlit ValueError: variable encoding field is specified without a type; the type cannot be inferred because it does not match any column in the data.</a></li>
    
      <li><a href="/posts/realestate-project-1/">[Python] 부동산 실거래 매매 건수 확인 (분당구)</a></li>
    
      <li><a href="/posts/pandas_dataframe_to_sql_append_skipdupes/">[Python] Pandas DataFrame to_sql 데이터 중복시 무시하는 방법</a></li>
    
      <li><a href="/posts/realestate-tran-cnt-per-dong/">[Python] 부동산 동별로 거래 건수 확인</a></li>
    
      <li><a href="/posts/matplotlib-with-style/">[Python] Matplotlib 스타일 지정하기</a></li>
    
      <li><a href="/posts/real-estate-get-data/">[Python] 공공데이터 부동산 실거래 가져오기</a></li>
    
      <li><a href="/posts/pandas-isnan/">[Python] Pandas에서 NaN인 로우 가져오기</a></li>
    
      <li><a href="/posts/fastapi-start/">[FastAPI] 시작하기</a></li>
    
      <li><a href="/posts/fastapi-mysql/">[FastAPI] MySQL 연동</a></li>
    
      <li><a href="/posts/python-m1-could-not-import-the-lzma-module/">[Python] M1에서 Could not import the lzma module</a></li>
    
      <li><a href="/posts/python-pd-dataframe-to-mysql-codes/">[Python] Pandas DataFrame을 MySQL로 INSERT</a></li>
    
      <li><a href="/posts/python-logger-code/">[Python] Custom Logger</a></li>
    
      <li><a href="/posts/python-subparser/">[Python] Subparser</a></li>
    
      <li><a href="/posts/python-pylint/">[Python] Pylint</a></li>
    
      <li><a href="/posts/python-pandas-except-specific-column/">[Python] Pandas에서 특정 컬럼 제외하고 나머지 선택</a></li>
    
      <li><a href="/posts/python-multiprocessing-pool/">[Python] multiprocessing Pool</a></li>
    
      <li><a href="/posts/advanced-technique-python/">[Python] Advanced Technique Python (2)</a></li>
    
      <li><a href="/posts/python-timeit-decorator/">[Python] Timeit Decorator (함수 실행시간 체크)</a></li>
    
      <li><a href="/posts/pywebio/">[Python] Pywebio</a></li>
    
      <li><a href="/posts/python39-new-features/">[Python] 3.9버전에서 새롭게 사용할  있는 기능</a></li>
    
      <li><a href="/posts/python-version-mac/">[Python] 파이썬 버전 설치  변경</a></li>
    
      <li><a href="/posts/python-scrap-google-news/">[Python] 구글 뉴스 Selenium, BeautifulSoup을 이용해 스크랩하기</a></li>
    
      <li><a href="/posts/python-prophet/">[Python] 시계열 예측을 위한 Prophet</a></li>
    
      <li><a href="/posts/python-pandas-profiling/">[Python] EDA 대신 Pandas Profiling</a></li>
    
      <li><a href="/posts/python-advanced-techniques/">[Python] Advanced Techniques</a></li>
    
      <li><a href="/posts/gunicorn-overview/">[Python] Gunicorn 살펴보기</a></li>
    
      <li><a href="/posts/dockerfile-for-python/">[Python] Dockerfile for Python Application</a></li>
    
      <li><a href="/posts/python-tensorflow-serving-on-k8s/">[Python] TF Serving with Docker</a></li>
    
      <li><a href="/posts/python-scrap-youtube-video-info/">[Python] Selenium을 이용해서 Youtube 데이터 가져오기</a></li>
    
      <li><a href="/posts/python-functools/">[Python] Functools</a></li>
    
      <li><a href="/posts/python-decorators/">[Python] Decorators</a></li>
    
      <li><a href="/posts/m1-pyarrow-install/">[Python] M1에서 파이썬 패키지 설치 오류  설치 방법</a></li>
    
      <li><a href="/posts/python-logging-handler/">[Python] Logging Handler</a></li>
    
      <li><a href="/posts/python-logging-loggeradapter/">[Python] LoggerAdapter</a></li>
    
  </ul>

  <h3></h3>
  <ul>
    
      <li><a href="/posts/shell-date-loop/">[Shell] 날짜 범위 지정해서 실행</a></li>
    
      <li><a href="/posts/shell-read-id-passwd/">[Shell]  입력하는 방법 (id/passwd)</a></li>
    
  </ul>

  <h3>통계</h3>
  <ul>
    
      <li><a href="/posts/abtesting-udacity/">Udacity A/B Testing</a></li>
    
      <li><a href="/posts/ttest/">t-test 정리</a></li>
    
  </ul>

  <h3>라즈베리파이</h3>
  <ul>
    
      <li><a href="/posts/raspberrypi-cctv/">[RaspberryPi] 애기 CCTV 만들기</a></li>
    
  </ul>

  <h3>쿠버네티스</h3>
  <ul>
    
      <li><a href="/posts/kubernetes-overview/">Kubernetes Overview</a></li>
    
      <li><a href="/posts/k8s-loadbalancer/">Load Balancer</a></li>
    
  </ul>

  <h3>카프카</h3>
  <ul>
    
      <li><a href="/posts/kafka-on-kubernetes-external-client/">외부(External Client)에서 Kafka on Kubernetes 연결</a></li>
    
  </ul>

  <h3>텐서플로우</h3>
  <ul>
    
      <li><a href="/posts/tensorflow-widendeep/">[Tensorflow] Wide&Deep, Deep&Cross 모델 생성</a></li>
    
      <li><a href="/posts/tensorflow-dnn/">[Tensorflow] DNN 모델</a></li>
    
      <li><a href="/posts/tensorflow-serving-intro/">[Tensorflow] Serving</a></li>
    
      <li><a href="/posts/tensorflow-serving-400/">[Tensorflow] requests.exceptions.HTTPError: 400 Client Error: Bad Request for url</a></li>
    
  </ul>

  <h3> </h3>
  <ul>
    
      <li><a href="/posts/starcraft-m1/">M1 MAC mini에서 starcraft 동작 안함</a></li>
    
  </ul>

  <h3></h3>
  <ul>
    
      <li><a href="/posts/git-reset-remote/">[Git] Remote branch로 덮어 씌우는 방법</a></li>
    
  </ul>

  <h3>제플린</h3>
  <ul>
    
      <li><a href="/posts/zeppelin-notebook-level-dynamic-form/">[Zeppelin] Notebook Level Dynamic Form (=Global Variable)</a></li>
    
  </ul>

  <h3>데이터베이스</h3>
  <ul>
    
      <li><a href="/posts/mysql-hangul-encoding/">[MySQL] Docker로 실행했을때 한글 깨짐</a></li>
    
      <li><a href="/posts/mysql-workbench-docker/">[MySQL] Workbench UI Docker</a></li>
    
      <li><a href="/posts/mysql-init/">[MySQL] 초기 작업</a></li>
    
      <li><a href="/posts/mysql-docker/">[MySQL] M1에서 MySQL Docker 실행</a></li>
    
  </ul>

  <h3>데이터엔지니어링</h3>
  <ul>
    
      <li><a href="/posts/mysql-airflow-setting/">[Airflow] MySQL 연동</a></li>
    
      <li><a href="/posts/airflow-cfg-docker-compose/">[Airflow] Your Airflow administrator chose not to expose the configuration, most likely for security reasons.</a></li>
    
      <li><a href="/posts/airflow-slack/">[Airflow] 에러 발생시 Slack으로 알림 주기</a></li>
    
      <li><a href="/posts/airflow-python-bash/">[Airflow] Python 스크립트 BashOperator로 실행</a></li>
    
      <li><a href="/posts/airflow-bashoperator/">[Airflow] bashOperator 사용시에 jinja2.exceptions.TemplateNotFound</a></li>
    
      <li><a href="/posts/airflow-docker-apple-silicon/">[Airflow] Docker로 실행하기 Apple Silicon</a></li>
    
  </ul>

  <h3>배쉬</h3>
  <ul>
    
      <li><a href="/posts/bash-overwrite-builtin-functions/">[Bash] Overwrite builtin command (rm, ls, echo)</a></li>
    
      <li><a href="/posts/bash-check-include-string/">[Bash] String 포함되었는지 확인하는 방법</a></li>
    
  </ul>

  <h3>React</h3>
  <ul>
    
      <li><a href="/posts/react-native-ios-simulator/">[React Native] ios siulator 실행</a></li>
    
      <li><a href="/posts/react-native/">React Native 환경 구성</a></li>
    
      <li><a href="/posts/react-native-fetch/">[React Native] useEffect를 활용해 RestAPI 호출</a></li>
    
  </ul>

  <h3>Docker</h3>
  <ul>
    
      <li><a href="/posts/dockerize-nginx/">Nginx Docker에 띄우기 (+HTTPS)</a></li>
    
  </ul>

  <h3>macOS</h3>
  <ul>
    
      <li><a href="/posts/m1-lib64-ld-linux-x86-64.so.2/">[M1] /lib64/ld-linux-x86-64.so.2: No such file or directory</a></li>
    
  </ul>

  <h3>macos</h3>
  <ul>
    
      <li><a href="/posts/tmux/">[MacOS] tmux</a></li>
    
  </ul>

  <h3>redis</h3>
  <ul>
    
      <li><a href="/posts/docker-compose-redis/">FastAPI에서 RedisCache 사용 방법 w docker-compose</a></li>
    
  </ul>

  <h3>flutter</h3>
  <ul>
    
      <li><a href="/posts/flutter-xml-parse/">[Flutter] XML Parsing</a></li>
    
      <li><a href="/posts/flutter-awesome/">[Flutter] Awesome 프로젝트 리스트</a></li>
    
      <li><a href="/posts/flutter-pull-to-referesh/">[Flutter] pull to refresh</a></li>
    
      <li><a href="/posts/flutter-markdown/">[Flutter] Markdown</a></li>
    
      <li><a href="/posts/flutter-gridview-fetch-data/">[Flutter] GirdView 리스트 결과 출력</a></li>
    
      <li><a href="/posts/flutter-samples/">[Flutter] Samples</a></li>
    
      <li><a href="/posts/flutter-network-image/">[Flutter] Network image</a></li>
    
      <li><a href="/posts/flutter-deploy-web/">[Flutter] Deploy netlify</a></li>
    
      <li><a href="/posts/flutter-navigation-routing/">[Flutter] Navigation and routing</a></li>
    
      <li><a href="/posts/flutter-layouts/">[Flutter] Layouts</a></li>
    
      <li><a href="/posts/flutter-basic/">[Flutter] Basic</a></li>
    
  </ul>

  <h3>Flutter</h3>
  <ul>
    
      <li><a href="/posts/intro-flutter/">Flutter 시작</a></li>
    
  </ul>

  <h3>알고리즘</h3>
  <ul>
    
      <li><a href="/posts/add-two-numbers/">[Algorithm] Add Two Numbers II</a></li>
    
      <li><a href="/posts/populating-next-right-pointers-in-each-node/">[Algorithm] Populating Next Right Pointers in Each Node</a></li>
    
      <li><a href="/posts/climbing-stairs/">[Algorithm] Climbing Stairs</a></li>
    
      <li><a href="/posts/word-search/">[Algorithm] Word search</a></li>
    
      <li><a href="/posts/word-break/">[Algorithm] Word break</a></li>
    
      <li><a href="/posts/gas-station/">[Algorithm] Gas station</a></li>
    
      <li><a href="/posts/unique-paths/">[Algorithm] Unique paths</a></li>
    
      <li><a href="/posts/sorting-and-searching/">Sorting and Searching</a></li>
    
      <li><a href="/posts/merge-k-sorted-lists/">[Algorithm] Merge k sorted lists</a></li>
    
      <li><a href="/posts/lru-cache/">[Algorithm] LRU Cache</a></li>
    
      <li><a href="/posts/longest-substring-without-repeating-characters/">[Algorithm] Longest substring without repeating charaters</a></li>
    
      <li><a href="/posts/sum-of-two-values/">[Algorithm] Sum of Two values</a></li>
    
      <li><a href="/posts/merge-two-sorted-linked-lists/">[Algorithm] Merge two sorted linked lists</a></li>
    
      <li><a href="/posts/level-order-traversal-of-binary-tree/">[Algorithm] Level Order Traversal of Binary Tree</a></li>
    
      <li><a href="/posts/leetcode-make-the-string-great/">[Algorithm] 1544. Make The String Great</a></li>
    
      <li><a href="/posts/find-the-missing-number-in-the-array/">[Algorithm] Find the missing number in the array</a></li>
    
      <li><a href="/posts/copy-linked-list-with-arbitrary-pointer/">[Algorithm] Copy Linked List with Arbitrary Pointer</a></li>
    
  </ul>

  <h3>면접</h3>
  <ul>
    
      <li><a href="/posts/how-to-prepare-interview/">Interview 준비</a></li>
    
      <li><a href="/posts/amazon-onsite-interview-plan/">Amazon onsite interview plan</a></li>
    
      <li><a href="/posts/amazon-onsite-interview-prep/">Amazon Onsite Interview 준비</a></li>
    
      <li><a href="/posts/amazon-interview-lp/">Amazon Onsite Interview LP(Leadership Principles)</a></li>
    
  </ul>

  <h3>데이터구조</h3>
  <ul>
    
      <li><a href="/posts/dfs-bfs/">[Data Structure] BFS, DFS</a></li>
    
  </ul>

  <h3>시스템디자인</h3>
  <ul>
    
      <li><a href="/posts/system-design-youtube/">System Design Youtube</a></li>
    
      <li><a href="/posts/system-design-twitter/">System Design Twitter</a></li>
    
  </ul>

  <h3>컨테이너</h3>
  <ul>
    
      <li><a href="/posts/container-infra-env/">[컨테이너] 인프라 환경 구성(모톨리식 아키텍처 VS 마이크로서비스 아키텍처)</a></li>
    
  </ul>

  <h3>기타</h3>
  <ul>
    
      <li><a href="/posts/happy-hacking-multi-paring/">[해피해킹] 여러개 디바이스 페어링하기</a></li>
    
  </ul>

  <h3>도커</h3>
  <ul>
    
      <li><a href="/posts/dockerfile-health-check/">[Docker] Dockerfile HealthCheck, DependencyCheck</a></li>
    
      <li><a href="/posts/docker-persistency-storage/">[Docker] Persistency Storage</a></li>
    
      <li><a href="/posts/docker-golden-image/">[Docker] Golden Image</a></li>
    
      <li><a href="/posts/docker-image-layer/">[Docker] Docker Image Layer 이해하기</a></li>
    
      <li><a href="/posts/docker-dockerfile/">[Docker] Dockerfile 작성하기</a></li>
    
      <li><a href="/posts/docker-dockerfile-optimization/">[Docker] Dockerfile 최적화</a></li>
    
      <li><a href="/posts/docker-cli/">[Docker] 자주 사용하는 CLI, FLAG</a></li>
    
  </ul>

  <h3>FCPX</h3>
  <ul>
    
      <li><a href="/posts/video-materials/">[FCPX] 무료 폰트</a></li>
    
      <li><a href="/posts/fcpx-tips/">[FCPX] Tips</a></li>
    
  </ul>

  <h3>GoPro</h3>
  <ul>
    
      <li><a href="/posts/gopro-settings/">[GoPro] 모드 세팅</a></li>
    
  </ul>

  <h3>Next.js</h3>
  <ul>
    
      <li><a href="/posts/nextjs-start-copy/">[Next.js] 참고하면 좋은 사이트</a></li>
    
  </ul>

  <h3>애플</h3>
  <ul>
    
      <li><a href="/posts/macbook-stand/">[애플] Macbook 거치대 - Twelve South Curve Flex</a></li>
    
      <li><a href="/posts/ipad-hover-bar-tower/">[애플] iPad 침실 스탠드 - Twelve South HoverBar Tower</a></li>
    
  </ul>

  <h3>ML</h3>
  <ul>
    
      <li><a href="/posts/bentoml/">BentoML</a></li>
    
  </ul>

  <h3>MLflow</h3>
  <ul>
    
      <li><a href="/posts/mlflow-model-registry/">[MLflow] Model Registry</a></li>
    
  </ul>

  <h3>Serving</h3>
  <ul>
    
      <li><a href="/posts/bentoml-yatai/">BentoML Yatai</a></li>
    
      <li><a href="/posts/bentoml-integeration-mlflow/">BentoML Integeration MLflow</a></li>
    
  </ul>

This post is licensed under CC BY 4.0 by the author.

Welcome to Jekyll!

블로그 만들기