<feed xmlns="http://www.w3.org/2005/Atom"> <id>https://ye0ngjin.github.io/blog/</id><title>Ye0ngjin</title><subtitle>A minimal, responsive and feature-rich Jekyll theme for technical writing.</subtitle> <updated>2024-08-24T22:02:18+09:00</updated> <author> <name>Ye0ngjin</name> <uri>https://ye0ngjin.github.io/blog/</uri> </author><link rel="self" type="application/atom+xml" href="https://ye0ngjin.github.io/blog/feed.xml"/><link rel="alternate" type="text/html" hreflang="ko-KR" href="https://ye0ngjin.github.io/blog/"/> <generator uri="https://jekyllrb.com/" version="4.3.3">Jekyll</generator> <rights> © 2024 Ye0ngjin </rights> <icon>/blog/assets/img/favicons/homepageicon.ico</icon> <logo>/blog/assets/img/favicons/homepageicon.ico</logo> <entry><title>정보처리기사 합격 후기</title><link href="https://ye0ngjin.github.io/blog/certificate/jeong-cheo-gi/" rel="alternate" type="text/html" title="정보처리기사 합격 후기" /><published>2024-08-21T00:00:00+09:00</published> <updated>2024-08-24T22:01:56+09:00</updated> <id>https://ye0ngjin.github.io/blog/certificate/jeong-cheo-gi/</id> <content src="https://ye0ngjin.github.io/blog/certificate/jeong-cheo-gi/" /> <author> <name>Ye0ngjin</name> </author> <category term="Certificate" /> <summary> 정보처리기사 자격증이 IT업계로 취업하는 데 있어서 꼭 필요한 자격증은 아니겠지만, 비전공자에게 있어서는 CS지식과 코드는 읽을 줄 안다는 것을 어필할 수 있는 수단인 것 같다. 그리고 공기업을 포함해서 일부 기업에서는 지원자격이거나 우대사항이므로 따서 나쁠 것은 없는 것 같다. 최근 정처기 문제는 프로그래밍 문제와 데이터베이스 문제를 합쳐서 절반 이상을 차지한다. 프로그래밍 문제 8문제 중 8문제를 맞췄고, 데이터베이스 문제는 4문제 중 2문제를 맞췄다. 그리고 나머지 네트워크, 보안, 디자인 패턴, CS지식 등의 문제 중에서 4문제를 맞췄다. 사실 정보처리기사를 2021년도에 필기를 합격하고서 미루다가, 23년도에 실기를 두번 봤지만 준비가 부족해서 떨어졌었다. 그리고 필기 유효기... </summary> </entry> <entry><title>파이썬으로 최대공약수 최소공배수 구하는 법</title><link href="https://ye0ngjin.github.io/blog/python/python-gcd-lcm/" rel="alternate" type="text/html" title="파이썬으로 최대공약수 최소공배수 구하는 법" /><published>2024-08-19T00:00:00+09:00</published> <updated>2024-08-19T00:00:00+09:00</updated> <id>https://ye0ngjin.github.io/blog/python/python-gcd-lcm/</id> <content src="https://ye0ngjin.github.io/blog/python/python-gcd-lcm/" /> <author> <name>Ye0ngjin</name> </author> <category term="Python" /> <summary> 파이썬으로 최대공약수 최소공배수 구하는 법 파이썬에서 math 라이브러리를 import 해도 최대공약수(gcd)와 최소공배수(lcm)를 구하는 함수를 바로 사용 가능하지만, 직접 구현해보고 싶어서 여러 블로그를 토대로 만들어봤다. # 유클리드 호제법 # 2개의 자연수 a, b에 대해서 a를 b로 나눈 나머지를 r이라 하면(단, a&amp;gt;b), # a와 b의 최대공약수는 b와 r의 최대공약수와 같다. # https://devum.tistory.com/128 def gcd_(*nums): b = 0 # 0은 모든 수의 배수이므로, 모든 수를 약수로 가진다. 따라서 n과 0의 최대공약수는 n이다. https://maramarathon.tistory.com/54 for a in nums: w... </summary> </entry> <entry><title>플러터로 간단한 웹앱 만들기</title><link href="https://ye0ngjin.github.io/blog/playground/udemy-festival-flutter-tutorial/" rel="alternate" type="text/html" title="플러터로 간단한 웹앱 만들기" /><published>2023-12-08T00:00:00+09:00</published> <updated>2023-12-09T03:39:31+09:00</updated> <id>https://ye0ngjin.github.io/blog/playground/udemy-festival-flutter-tutorial/</id> <content src="https://ye0ngjin.github.io/blog/playground/udemy-festival-flutter-tutorial/" /> <author> <name>Ye0ngjin</name> </author> <category term="Playground" /> <summary> 참고한 사이트 및 결과물 링크 https://gist.github.com/Ye0ngjin/d4970f7f8400978068801f7d843a550f https://dartpad.dev/?id=d4970f7f8400978068801f7d843a550f https://github.com/joeyhwangGit/exchange_rate_calculator https://joeyhwang.tistory.com/20 https://stackoverflow.com/questions/72851548/permission-denied-to-github-actionsbot https://github.com/subosito/flutter-action 강의 보며 따라 만든 프로필 앱 유데미 코딩 페... </summary> </entry> <entry><title>지킬 테마 바꾸기</title><link href="https://ye0ngjin.github.io/blog/blog/change-theme/" rel="alternate" type="text/html" title="지킬 테마 바꾸기" /><published>2023-11-29T00:00:00+09:00</published> <updated>2023-11-29T00:00:00+09:00</updated> <id>https://ye0ngjin.github.io/blog/blog/change-theme/</id> <content src="https://ye0ngjin.github.io/blog/blog/change-theme/" /> <author> <name>Ye0ngjin</name> </author> <category term="Blog" /> <summary> 지킬 테마를 minimal-mistakes에서 chirpy로 바꿨음 </summary> </entry> <entry><title>마크다운으로 표 만들기</title><link href="https://ye0ngjin.github.io/blog/playground/make-table/" rel="alternate" type="text/html" title="마크다운으로 표 만들기" /><published>2023-11-16T00:00:00+09:00</published> <updated>2023-11-16T00:00:00+09:00</updated> <id>https://ye0ngjin.github.io/blog/playground/make-table/</id> <content src="https://ye0ngjin.github.io/blog/playground/make-table/" /> <author> <name>Ye0ngjin</name> </author> <category term="Playground" /> <summary> 체스판 ♜   ♝ ♛ ♚ ♝ ♞ ♜   ♟ ♟ ♟   ♟ ♟ ♟ ♟   ♞             ♗     ♟               ♙         ... </summary> </entry> </feed>
