Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update #4992

Closed
wants to merge 21 commits into from
Closed

Update #4992

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
source "https://rubygems.org"
gemspec
gemspecs

gem "webrick", "~> 1.8"
gem "minimal-mistakes-jekyll"
41 changes: 21 additions & 20 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,31 +12,31 @@

# theme : "minimal-mistakes-jekyll"
# remote_theme : "mmistakes/minimal-mistakes"
minimal_mistakes_skin : "default" # "air", "aqua", "contrast", "dark", "dirt", "neon", "mint", "plum", "sunrise"
minimal_mistakes_skin : "default" # "default", "air", "aqua", "contrast", "dark", "dirt", "neon", "mint", "plum", "sunrise"

# Site Settings
locale : "en-US"
locale : "en-US" #ko-KR
rtl : # true, false (default) # turns direction of the page into right to left for RTL languages
title : "Site Title"
title_separator : "-"
subtitle : # site tagline that appears below site title in masthead
name : "Your Name"
description : "An amazing website."
url : # the base hostname & protocol for your site e.g. "https://mmistakes.github.io"
title : "import Yeong"
title_separator : "|" #-
subtitle : "success = Yeong.steady()" # site tagline that appears below site title in masthead
name : "Shinyeong-Hong"
description : "This is Yeong's Blog"
url : "https://0package.github.io"
baseurl : # the subpath of your site, e.g. "/blog"
repository : # GitHub username/repo-name e.g. "mmistakes/minimal-mistakes"
teaser : # path of fallback teaser image, e.g. "/assets/images/500x300.png"
logo : # path of logo image to display in the masthead, e.g. "/assets/images/88x88.png"
logo : "/assets/images/developer_0.jpg" # path of logo image to display in the masthead, e.g. "/assets/images/88x88.png"
masthead_title : # overrides the website title displayed in the masthead, use " " for no title
breadcrumbs : # true, false (default)
breadcrumbs : true # true, false (default)
words_per_minute : 200
enable_copy_code_button : # true, false (default)
copyright : # "copyright" name, defaults to site.title
copyright_url : # "copyright" URL, defaults to site.url
comments:
provider : # false (default), "disqus", "discourse", "facebook", "staticman", "staticman_v2", "utterances", "giscus", "custom"
provider : "disqus" # false (default), "disqus", "discourse", "facebook", "staticman", "staticman_v2", "utterances", "giscus", "custom"
disqus:
shortname : # https://help.disqus.com/customer/portal/articles/466208-what-s-a-shortname-
shortname : "0pacakge" # https://help.disqus.com/customer/portal/articles/466208-what-s-a-shortname-
discourse:
server : # https://meta.discourse.org/t/embedding-discourse-comments-via-javascript/31963 , e.g.: meta.discourse.org
facebook:
Expand Down Expand Up @@ -113,11 +113,11 @@ analytics:

# Site Author
author:
name : "Your Name"
name : "Shinyeong-Hong"
avatar : # path of avatar image, e.g. "/assets/images/bio-photo.jpg"
bio : "I am an **amazing** person."
location : "Somewhere"
email :
bio : "This is Yeong's DevBlog"
location : "Republic of Korea"
email : "[email protected]"
links:
- label: "Email"
icon: "fas fa-fw fa-envelope-square"
Expand All @@ -133,10 +133,10 @@ author:
# url: "https://facebook.com/"
- label: "GitHub"
icon: "fab fa-fw fa-github"
# url: "https://github.com/"
url: "https://github.com/0package"
- label: "Instagram"
icon: "fab fa-fw fa-instagram"
# url: "https://instagram.com/"
url: "https://www.instagram.com/lecrap.edoc?igsh=MW56amkyNWtudnBjZg%3D%3D&utm_source=qr"

# Site Footer
footer:
Expand All @@ -158,7 +158,7 @@ footer:
# url:
- label: "Instagram"
icon: "fab fa-fw fa-instagram"
# url:
url: "https://www.instagram.com/lecrap.edoc?igsh=MW56amkyNWtudnBjZg%3D%3D&utm_source=qr"


# Reading Files
Expand Down Expand Up @@ -320,6 +320,7 @@ defaults:
layout: single
author_profile: true
read_time: true
comments: # true
comments: true
share: true
related: true
show_date: true
10 changes: 10 additions & 0 deletions _posts/2024-09-28-test.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
layout: single
title: "Hello World!"
---

# first github-blog test
# 안녕
# 실시간 입력 테스트

![developer_0](https://github.com/user-attachments/assets/01212f98-b5d3-4ad6-ab5b-2ab902c7f686)
28 changes: 28 additions & 0 deletions _posts/2024-09-30-Pocketmon.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
layout: single
title: "Programmers_폰켓몬(Hash, Dictionary)"
---

## 딕셔너리(Key-Value)를 사용한 파이썬 풀이

```python
def solution(nums):
answer = 0
l = len(nums)
pocketmons = {} #dic {포켓몬 번호 : 개수}
for i in nums:
if i in pocketmons:
pocketmons[i] += 1 #키가 있다면 개수 + 1
else:
pocketmons[i] = 1 #키가 없다면 1로 초기화

# 포켓몬 키 값 개수(중복 없음)
answer = len(pocketmons.keys())

#구한 값이 l/2와 같거나 크다면 l/2가 답
if answer >= l/2:
answer = l/2

return answer

```
Binary file added assets/images/developer_0.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/2024-09-28-test/developer_0.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading