반응형

분류 전체보기 290

[HTML] 코드아카데미 문제풀이 "Build a Website: HTML" (8/9)

[HTML] 코드아카데미 문제풀이 "Build a Website: HTML" (8/9) Wrap with a div 1. 문제 원문링크 As before, let's group all three pieces of supporting content with divs, like this: Travel ... Host ... Trust and Safety ... Instructions Wrap all pieces of supporting content with two divs, like in the example above. Give the outer div a class="learn-more" and the inner div a class="container". 2. 풀이 h3, p, 링크를 포함한 p를 가..

카테고리 없음 2014.07.30

[HTML] 코드아카데미 문제풀이 "Build a Website: HTML" (7/9)

[HTML] 코드아카데미 문제풀이 "Build a Website: HTML" (7/9) Supporting content 2 1. 문제 원문링크 Excellent! Next let's add two more pieces of supporting content, each having the same structure as before: Subheading Description text. Link text Instructions Under the closing of the first piece of supporting content, add two more: Add a second piece of supporting content with the following elements: A div for grou..

카테고리 없음 2014.07.30

[HTML] 코드아카데미 문제풀이 "Build a Website: HTML" (6/9)

[HTML] 코드아카데미 문제풀이 "Build a Website: HTML" (6/9) Supporting content 1 1. 문제 원문링크 Great work! We're definitely making good progress. Below the jumbotron, let's add a piece of supporting content. The piece will have an h3, a p, and an a, like this: Travel From apartments and rooms to treehouses and boats: stay in unique spaces in 192 countries. See how to travel on Airbnb The h3 describes the subh..

카테고리 없음 2014.07.30

쇼미더머니3 타래 악마의 편집 의혹관련 논란 상황을 보다보니 간혹 '영상 편집'의 원리조차 모르는 사람들이 보인다.

관련 논란을 살펴보다가 카페에서 이런 글을 보았다. 내용은 요약하면 "중간에 나간걸로 방송에 나왔는데 어떻게 중간에 안나갔다고 뻥을치나"이다. 원문 다음 카페 링크 텍스트 내용 아니 타블로가 말을 김효은한테 하다가 쟤 나가는걸 보고 말이 끊김ㅋㅋㅋㅋ그래서 서로 마스타우랑 쳐다보는거 이대 초등교육학과 | 조회 361 |추천 0 | 2014.07.24. 20:28 근데 영상 다시 봤는데 그럼 타블로 말하고있는데 나가는게 CG라는 거임?????? 중간에 나가서 다들 벙쪄있고 존나 어이없어하는데..ㅋㅋㅋㅋㅋㅋ 중간에 박차고 나가는거 아님? 걍 몰리니까 아무말이나 한건가 페북에 ㅋㅋㅋ 진짜 아무튼 저런 뒤로 비호감 됨 저런 정신상태 마음가짐으로는 뭘해도 안 될듯 댓글이 달리면 카페앱에서 바로 알려드려요! 설치하기..

카테고리 없음 2014.07.25

[영화 레시피] 더 시그널 (2014)

더 시그널 (2014) The Signal 6.9 감독 윌리엄 유뱅크 출연 브렌튼 스웨이츠, 로렌스 피쉬번, 올리비아 쿡, 뷰 크냅, 로버트 롱스트릿 정보 SF, 액션, 스릴러 | 미국 | 94 분 | 2014-07-09 SF스릴러쯤으로 생각되는 이 영화를 보고 재미있다고 느낀 사람들 중에는 반전에 반전에 반전을 거듭한다는 말을 하는 사람들이 유독 많았다. 반전이 있다는 것은 그 전까지 눈치 채지 못했다는 말이고 그건 그 반전이 나오기 전에 스릴과 서스팬스를 느꼈을 거란 걸 반증한다. 영화 시작하자 보여주는 미지의 해커의 “노매드”의 유인작전 + 하늘로 빨려 올라가는 인간의 모습 이후의 상황에서 다른 어떤 것을 기대했기에 반전이란 말이 나오는지 모르겠다. 더 시그널 이번 평은 대체적으로 악평이되었네요. ..

카테고리 없음 2014.07.25

[자바스크립트] 코드아카데미 문제풀이 Build "Rock, Paper, Scissors" (9/9)

[자바스크립트] 코드아카데미 문제풀이 Build "Rock, Paper, Scissors" (9/9) Next Steps 1. 문제 Congratulations on making your awesome game! But now comes the best bit. You have the skills to build a game of your own design! Below are some ideas: What if a user makes an inappropriate choice like 'dog'? How can we extend the function to handle that? What if players in the game could also choose Rope in this game? In t..

카테고리 없음 2014.07.24

[자바스크립트] 코드아카데미 문제풀이 Build "Rock, Paper, Scissors" (8/9)

[자바스크립트] 코드아카데미 문제풀이 Build "Rock, Paper, Scissors" (8/9) What if choice1 is scissors? 1. 문제 Lastly, what if choice1 is "scissors"? Given choice1 is "scissors", a. if choice2 === "rock", then "rock" wins. b. if choice2 === "paper", then "scissors" wins. 원문링크 2. 풀이 이용자가 가위를 냈을 때의 if else 구문을 생성 합니다. 3. 해답 다음과 같이 입력하면 작동은 되지만 알수 없는 이유로 통과는 하지 못합니다. 프롬프트에서 사용자의 가위바위보를 입력받을 때 아무 값도 입력하지 않으면 통과가 되는 현상..

카테고리 없음 2014.07.24

[자바스크립트] 코드아카데미 문제풀이 Build "Rock, Paper, Scissors" (7/9)

[자바스크립트] 코드아카데미 문제풀이 Build "Rock, Paper, Scissors" (7/9) What if choice1 is paper? 1. 문제 Now what if choice1 is "paper"? Given choice1 is "paper", a. if choice2 === "rock", then "paper" wins. b. if choice2 === "scissors", then "scissors" wins. 원문링크 2. 풀이 사용자가 보를 냈을 경우에 대한 else if 구문을 추가한다. 3. 해답 알수 없는 조건 미충족으로, 다음과 같이 입력하면 통과하지는 못합니다. 가위바위보는 잘 작동됩니다. var userChoice = prompt("Do you choose rock, ..

카테고리 없음 2014.07.24

[자바스크립트] 코드아카데미 문제풀이 Build "Rock, Paper, Scissors" (6/9)

[자바스크립트] 코드아카데미 문제풀이 Build "Rock, Paper, Scissors" (6/9) What if choice1 is rock? 1. 문제 You're doing great! Now we consider the other scenarios. Let's break the problem down a little. What if choice1 is "rock"? Given choice1 is "rock", a. if choice2 === "scissors", then "rock" wins b. if choice2 === "paper", then "paper" wins. How do we structure this? It's a bit different from what we have alre..

카테고리 없음 2014.07.24

[자바스크립트] 코드아카데미 문제풀이 Build "Rock, Paper, Scissors" (5/9)

[자바스크립트] 코드아카데미 문제풀이 Build "Rock, Paper, Scissors" (5/9) Both choices are the same! Now comes the fun part! We need to create a function. It will take two parameters (ie. the two choices made) and then return the winning choice. When programming a game like this, you have to first figure out all the various outcomes. One outcome is that the choice the user makes is equal to the choice the comput..

카테고리 없음 2014.07.24