๋ถ๋ฅ ์ ์ฒด๋ณด๊ธฐ
-
Computer BasicsTIL 2022. 9. 17. 04:02
1. The 4 Basic Parts of Computer ์ปดํจํฐ๋ ํฌ๊ฒ 4๊ฐ์ง๋ก ๊ตฌ์ฑ๋์ด ์๋ค. - input - cpu - output - memory ๊ทธ๋ฆฌ๊ณ ๊ฐ ํํธ๋ CPU๋ฅผ ์ค์ฌ์ผ๋ก ์ํธ์์ฉํ๋ค. 2. More Computer Hardware - Input : mouse, keyboard์ ๊ฐ์ด ์ปดํจํฐ์ ๋ด๊ฐ ์ฐ๊ฒฐํ ์ฅ์น๋ค - Output : ๋ชจ๋ํฐ์ ์คํผ์ปค์ฒ๋ผ ์ถ๋ ฅํด๋ด๋ ๊ฒ - CPU : ์ปดํจํฐ์ ์ค์ฌ. ์ปดํจํฐ๋ฅผ ์๋์ํค๊ฒ ํ๋ core ์ฅ์น์ด๋ค. - Memory : short term memory(LAM) or longer term memory(hard drive, cd-ROM) 3 more things 1. motherboard(also called mainboard) ๋ชจ๋ ๊ฒ๊ณผ ์ฐ๊ฒฐ๋ b..
-
๐จ ubuntu | shell theme ๋ฐ๊พธ๊ธฐTIL 2022. 9. 15. 23:14
๋ณ๊ฒฝ ์ 1. gnome-tweaks ๋ค์ด๋ฐ๊ธฐ what is GNOME? ๊ทธ๋์ GNU Network Object Model Environment์ ์ฝ์๋ก ๋ฆฌ๋ ์ค ์์คํ ์์ ์ฌ์ฉ์๊ฐ ์ฝ๊ฒ ์ปดํจํฐ ์ดํ๋ฆฌ์ผ์ด์ ์ ์ค์ ํ ์ ์๋๋ก ๋์์ฃผ๋ GUI์ด๋ค. ๋ฆฌ๋ ์ค๋ ์๋์ฐ์ ๋ค๋ฅด๊ฒ ์ค์ ์ ํ ๋ ์ฃผ๋ก GUI ๊ฐ ์๋ CLI(command-line interface)๋ฅผ ์ด์ฉํ๋ค. ๊ทธ๋์ ์๋์ฐ์์์ฒ๋ผ ์ฝ๊ฒ ์ธํ ์ GUI ํ๊ฒฝ์์ ํ ์ ์๋๋ก ๋์์ค๋ค. GNOME tweaks ๋๊ตฌ๋ฅผ ์ด์ฉํ๋ฉด ๋ฆฌ๋ ์ค ๋ฐ์คํฌํ์ ์ฝ๊ฒ ์ปค์คํฐ๋ง์ด์ง ํ ์ ์๋ค. $sudo apt install gnome-tweaks 2. ocs-url ๋ค์ด๋ฐ๊ธฐ ocs-url์ ์ฐ๋ถํฌ ํ๊ฒฝ์์ install์ ๋์์ฃผ๋ ํ๋ก๊ทธ๋จ์ด๋ค. ocs-url์ ํตํด..
-
Git , Github | ๊น๊ณผ ๊นํ๋ธ ๋ง์คํฐTIL 2022. 9. 14. 21:59
1. setup ๊น ์ค์นํ๊ธฐ git : all the commands git --version .gitconfig : ๋ชจ๋ git์ ๊ดํ ์ค์ ! git config --list config ํ์ผ ์ด๊ธฐ git config --global -e config ํ์ผ์ ์๋ํฐ์ ์ฐ๊ฒฐํ๊ธฐ git config --global core.editor "code" code ๋ช ๋ น์ด๋ฅผ ์ ๋ ฅํ๋ฉด gitconfig ํ์ผ์ด ์๋ํฐ์์ ์ด๋ฆผ code . ๊ธฐ๋ณธ ์ ๋ณด ์ค์ ํ๊ธฐ git config --global user.name "sinyoung" //name ์ค์ git config --global user.email "sinyoung@naver.com" //email ์ค์ git config userr.name //sinyoung..
-
๐จ CSS 6 | ๊ทธ๋ฆฌ๋(with ๋๋ฆผ์ฝ๋ by ์จ๋ฆฌ) 2ํCSS 2022. 9. 9. 16:38
Step 4 : grid ์์์๊ฒ ์ค ์ ์๋ ์์ฑ๋ค ( grid cell ) Grid Line -grid-column-start , grid-column-end column์ ๊ธฐ์ค์ผ๋ก ๋ช ๋ฒ์งธ ์ค๋ถํฐ ๋ช ๋ฒ์งธ ์ค๊น์ง ์ฐจ์งํ ์ง ์ ์ .item2{ grid-column-start : 2; grid-column-end : 4; } -grid-row-start , grid-row-end row๋ฅผ ๊ธฐ์ค์ผ๋ก ๋ช ๋ฒ์งธ ์ค๋ถํฐ ๋ช ๋ฒ์งธ ์ค๊น์ง ์ฐจ์งํ ์ง ์ ์ .item2{ grid-column-start : 2; grid-column-end : 4; grid-row-start : 1; grid-row-end : 3; } ๋จ์ถํ .item2{ grid-column : 2 / 4; grid-row : 1 / 3; } ..
-
๐จ CSS 5 | ๊ทธ๋ฆฌ๋(with ๋๋ฆผ์ฝ๋ by ์จ๋ฆฌ) 1ํCSS 2022. 9. 9. 14:45
Step 1 : Grid vs Flexbox CSS Layout ์ ๋ฐฐ์นํ ์ ์๋ ๋๊ตฌ๋ก๋ Flexbox์ grid ๋ ๊ฐ์ง๊ฐ ์๋ค. Flexbox์ ๊ฒฝ์ฐ ๊ฐ๋ก๋ฅผ ๊ธฐ์ค์ผ๋ก, ์ธ๋ก๋ฅผ ๊ธฐ์ค์ผ๋ก 1์ฐจ์์ ์ผ๋ก CSS ๋ ์ด์์์ ๋ฐฐ์นํ ์ ์๋ค. ๊ฐ๋ก๋ก ๋ฌถ๊ฑฐ๋ ์ธ๋ก๋ก ๋ฌถ๊ฑฐ๋ Grid์ ๊ฒฝ์ฐ ๊ฐ๋ก์ถ๊ณผ ์ธ๋ก์ถ์ ๊ธฐ์ค์ผ๋ก 2์ฐจ์์ ์ผ๋ก CSS ๋ ์ด์์์ ๋ฐฐ์นํ ์ ์๋ค. Step 2 : Grid Grid๋ container(๋ถ๋ชจ)์ ์ฃผ๋ ์์ฑ๊ณผ grid cell(์์)์ ์ฃผ๋ ์์ฑ์ผ๋ก ๋๋๋ค. container ์ ๊พธ๋ฉฐ์ค ์ ์๋ ์์ฑ๋ค - display - grid-template-columns - grid-template-rows - grid-template-areas - grid-gap grid cell์ ๊พธ๋ฉฐ์ค..
-
โจ HTML5 | HTML ๋ฉํ ํ๊ทธ๋คHTML 2022. 9. 6. 00:39
1. DOCTYPE html> ์ ์๋ฏธ html ๋ฌธ์๋ฅผ ์์ฑํ ๋ ๊ฐ์ฅ ์ฒซ ์ค์ ์ ๋ ์ ์น ๋ธ๋ผ์ฐ์ ์๊ฒ ์ด๋ค ๋ฒ์ ์ HTML ์ ์ฌ์ฉํ๋์ง ์๋ ค์ฃผ๋ ๋ฌธ๊ตฌ์ด๋ค. ์์ HTML5 ๋ฌธ์ strict HTML 4.01 ๋ฌธ์ transitional HTML 4.01 ๋ฌธ์ frameset HTML 4.01 ๋ฌธ์ What is the DOCTYPE Declaration in HTML? The HTML document type declaration, also known as DOCTYPE, is the first line of code required in every HTML or XHTML document. The DOCTYPE declaration is an instruction to the web browser..
-
๐จ CSS 4 | Flexbox (with ๋๋ฆผ์ฝ๋ by ์จ๋ฆฌ) 2ํCSS 2022. 9. 5. 23:25
Step 4: Flexbox ์์์๊ฒ ์ค ์ ์๋ ์์ฑ๋ค (item) HTML ๋ฌธ์ ์์ฑ 1 2 3 CSS ์์ฑ .container { padding-top : 100px; background : beige; height: 100vh; display : flex; } .item { width: 40px; height: 40px; border : 1px solid black; } .item1 { background-color: rgb(247, 114, 114); } .item2 { background-color: rgb(250, 134, 153); } .item3 { background-color: rgb(165, 100, 250); } - order default ๊ฐ : 0; ์์ ์์๋ก ์ง์ ํ๊ธฐ .co..
-
โฑ๏ธ ์คํฑ์์น ์ ์ํ๊ธฐ | setInterval , String.padStartTIL 2022. 9. 5. 22:22
1. semantic html tag ์์ฑ โฑ๏ธSTOPWATCH 00:00:00 ์์ 2. CSS ์์ฑ *{ margin : 0; padding : 0; box-sizing: border-box; } main{ position : absolute; top : 50%; left : 50%; transform : translate(-50%, -50%); width : 551px; border : 1px solid #ccc; border-radius : 10px; } main h1{ font-size : 15px; color :#4285f4; font-weight : lighter; border-bottom : 1px solid #4285f4; padding : 10px; } main section.stopw..