1 / 24

3rd Mini Conference

3rd Mini Conference. 웹 서비스 , 빠를수록 좋다. 속도의 심리학 - 0.2 초 – 인간이 느낄 수 있는 가장 작은 시간 단위 - 1 초 – 몰입상태 (flow) - 5 초 – 연속적 , 몰입상태로 되돌아가기 가능 - 10 초 – 참고 기다림 만족도 = 체감수준 – 기대수준 체감수준 – 성능 , 디자인 (progress bar 등 ) 기대수준 – PC, Mobile Speed = PV 1 초 딜레이 = 매출 -3%.

lily
Download Presentation

3rd Mini Conference

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. 3rd Mini Conference

  2. 웹 서비스, 빠를수록 좋다 속도의 심리학 - 0.2초 – 인간이 느낄 수 있는 가장 작은 시간 단위 - 1초 – 몰입상태 (flow) - 5초 – 연속적, 몰입상태로 되돌아가기 가능 - 10초 – 참고 기다림 만족도 = 체감수준 – 기대수준 체감수준 – 성능, 디자인 (progress bar 등) 기대수준 – PC, Mobile Speed = PV 1초 딜레이= 매출 -3%

  3. 웹 서비스, 빠를수록 좋다 개발자 사용자 Data Center 이중화 (200%↑) 개발자+기획자+디자이너 의기 투합 실사용자 속도 측정 최적화 사양 브라우저 OS 용량줄이기 CSS Sprite - CSS위로 JS 아래로

  4. 웹 접근성 • 장애를 가진 사람을 포함한 어떤 사람이든 손쉽게 이용 -> 사용성 증가 + 법적 분쟁 최소화 • 적록색맹을 고려한 그래프/네비게이션 • 대체텍스트 / 선형화 • 대안 (Fallback)

  5. 클라우드를 위한 스토레지 기술 • 신뢰성 -> 이중화 • 가용성 - > 복구

  6. NoSQL, CuBrid • 그냥 네이버 기술 Cubrid소개

  7. Google’s Engineering Culture • 근무 : 시간 정해짐 X • 보고 : text위주, 매우 간단한 ppt, 말로 땜빵 • 투명성 : 부서간, 사람간 장벽 X • 채용 : 사람이 필요한 팀 -> 결정, 실무자 의견 중시 • 매니저 : micro manage(x), 지시(x) • 상향평가, 동료평가 • 과제선정 : 아래서부터 (실무자 위주) • 코드리뷰, 오픈소스

  8. facebook • Bootcamp – 입사시험(6주) 다양한 인프라 (서적 등) 멘토 시스템 Bug assigned -> 동기부여 + 많은 경험 • 빡세다 • 영어는 필수다

  9. 채용? 모집?

  10. 기존 역할의 분류 developer designer director

  11. 새로운 분류 developer semi-developer director designer

  12. Google HackFair http://googledevkr.blogspot.kr/2012/08/google-hackfair.html

  13. 코딩 컨벤션

  14. 태그 하위 구성요소에는 탭을 넣으며, 탭의 크기는 공백 4칸으로 한다. ex) <html> <head> <title>제목</title> </head> <body> <div>ㅁㄴㅇㄹ</div> </body> </html>

  15. JavaScript 중괄호 안에는 탭을 넣으며, 탭의 크기는 공백 4칸으로 한다. ex) function tempFunction() { if (a == 1) { if (b == 1) alert(“y”); }else { alert(“n”); } }

  16. 변수, 함수명은 직관적이게 ex) var a, b, c, d (x) function f() (x) var box1, box2 (o) function addMember (o)

  17. 작명은 영어 어순으로 한다. (CSS, JavaScript, PHP, C 등 모든 언어 공통) - 동사 + 명사 순서 ex) addMember (o) memberAdd (x) - 형용사 + 명사 순서 ex) blueTile (o) tileBlue(x)

  18. CSS는 영문소문자, 숫자, 언더바(_) 만 사용하며 언더바로 단어를 구분한다. *영문대문자 사용 안함 ex) .blue_tile{ width:100px; } (o) .blueTile{ width:100px; } (x) <div class=“blue_tile”></div> (o) <div class=“blueTile”></div> (x)

  19. JavaScript는 영문 대소문자, 숫자, 언더바(_) 만 사용하며 영문 대문자로 단어를 구분한다. ex) varblueBox = ㅁㅁㅁㅁㅁㅁ; (o) varblue_box= ㅁㅁㅁㅁㅁㅁ; (x) 변수 순서를 위해서 어순을 바꿀 때에는 (명사 + 형용사 등) 언더바로 변수를 구분한다. varbox_blue= ㅁㅁㅁㅁㅁㅁ; (o) varbox_green= ㅁㅁㅁㅁㅁㅁ; (o) varboxGreen= ㅁㅁㅁㅁㅁㅁ; (비추)

  20. 신개념 프로젝트 보고

  21. - 자동차 게임 :: 이재훈 - Trap Jump :: 배재현 - Shot. :: 이강원 - Animal's War :: 김재원 - ? Defense:: 서강욱, 윤정섭 - K.Cube Hunter :: 박인규 - 지금 우리 디미고는:: 박상민 - Ball Control :: 안병찬

More Related