itunesu

Graphics Architecture - Tracks http://deimos3.apple.com/WebObjects/Core.woa/Feed/ucdavis-public.3159642031.03159642044

이것도 보류. 나중에 필요할 때 다시 봐야지.

Introduction / Course Overview 1:10:16 10. 2. 13. John Owens UC Davis
만 오래 전에 봤는데, 유익했었던 것 같다.
 

 

'공부 > Computers' 카테고리의 다른 글

wwdc 2011 중 interface builder tutorial 인상적  (0) 2011.09.16
Effective cpp 시작  (0) 2011.09.09
ios push notification  (0) 2011.09.02
wwdc web 중 앞부분  (1) 2011.08.31
developer apple com video  (0) 2011.08.31
Standford machine learning  (0) 2011.08.26
The 3n+1 problem 부터도 실패  (1) 2011.08.15
WWDC2011 iBooks  (0) 2011.08.07
중소기업 직원 교육 훈련의 기회  (0) 2011.05.31
opengl 동영상 강의 찾기  (0) 2011.05.12
by 언제나19 2011. 8. 26. 14:40


Machine Learning http://deimos3.apple.com/WebObjects/Core.woa/Feed/itunes.stanford.edu-dz.4331558558.04331558560

중국계로 보이는 선생님이 조곤조곤 잘 가르쳐준다.
발음은 중국(?) 발음이 들어 있다. 
칠판에 수식을 써서 가르쳐 줘서 좋다. 
나한테는 어려운 편. 

3. Machine Learning Lecture 3 1:13:13 08. 7. 24. Andrew Ng Stanford science, math, engineering, computer, technology, robotics, algebra, locally, weighted, logistic, regression, linear, probabilistic, interpretation, Gaussian, distribution, digression, perceptron

까지 봤는데, 집중 안해서 봐서, 
다음에 볼때도 처음부터 봐야겠다.

machine learning이 당장은 필요 없어져서, 우선 중단.

--- 중단했었다가 오늘 lec02 부터 다시 본다.  

Lecture 2    View Now >

1 hr 16 min

  • Topics: An Application of Supervised Learning - Autonomous Deriving, ALVINN, Linear Regression, Gradient Descent, Batch Gradient Descent, Stochastic Gradient Descent (Incremental Descent), Matrix Derivative Notation for Deriving Normal Equations, Derivation of Normal Equations
  • Transcript: HTML PDF

YouTube | iTunes | Vyew | WMV Torrent | MP4 Torrent

transcript 가 있었네.
itunes로만 보지 말고, 자막을 같이 봐야겠다.


아직 이걸 보기에는 좀 무리인 것 같다. 요새는 이런 것이 당장 필요한 게 아니라서. 입학 시험에 나올 만한 기본 과목 공부부터 착실히 해둬야겠다.

책이랑 같이 볼 수 있는 과목부터 공부해야 효율적으로 많이 소화해낼 수 있겠다.

확률과 선형대수가 prerequisites



 

'공부 > Computers' 카테고리의 다른 글

Effective cpp 시작  (0) 2011.09.09
ios push notification  (0) 2011.09.02
wwdc web 중 앞부분  (1) 2011.08.31
developer apple com video  (0) 2011.08.31
Graphics architecture 강의  (0) 2011.08.26
The 3n+1 problem 부터도 실패  (1) 2011.08.15
WWDC2011 iBooks  (0) 2011.08.07
중소기업 직원 교육 훈련의 기회  (0) 2011.05.31
opengl 동영상 강의 찾기  (0) 2011.05.12
ios Camera AV Foundation 공부  (0) 2011.04.16
by 언제나19 2011. 8. 26. 14:37


http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=29&page=show_problem&problem=36
에는 설명이 좀 있네.

그런데, 결국 실패했다.
program judge 입맛을 맞춰주고 싶지도 않다.
지금 정석으로 나가기에는 시간이 아까워..

이것 저것 다 시도해보다가 code만 섞였다. c로 썼다가, c++로 썼다가..

lec02 동영상을 41분 봐도 도움되는 말은 "큰 수, 작은 수" 순서 case를 조심하라는 말밖에 안나온다.

계속 틀렸다는 메시지만 받으니, optimize하고 싶지도 않다 T_T

// PcSkienaTry.cpp : 콘솔 응용 프로그램에 대한 진입점을 정의합니다.
//

//#include "stdafx.h"
//
//
//int _tmain(int argc, _TCHAR* argv[])
//{
// return 0;
//}

#include <iostream>

int CalculateCycle(int nStart)
{
 long long i = nStart;
 long long nCycle = 0;

 while (i > 1)
 {
  if (i % 2 != 0)
   i = i * 3 + 1;
  else
   i /= 2;

  nCycle++;
 }

 return nCycle+1;
}

int main()
{
 long long nFrom, nTo;
 long long i = 0;

 while ( std::cin >> nFrom >> nTo
  )
 {
  long long nCycle = 0;
  long long nMaxCycle = 0;

  unsigned long int nStart = 0;
  unsigned long int nEnd = 0;

  if (nFrom < nTo)
  {
   nStart = nFrom;
   nEnd = nTo;
  }
  else
  {
   nStart = nTo;
   nEnd = nFrom;
  }

  long long i = nStart;
  for (; i <= nEnd; i++)
  {
   nCycle = CalculateCycle(i);
   if (nCycle > nMaxCycle)
    nMaxCycle = nCycle;
  }

  

  std::cout << nStart << " " << nEnd << " " << nMaxCycle << std::endl;
 }

 return 0;
}

 




Programming Challenges 사이트는 다음과 같습니다.

http://www.programming-challenges.com

UVa 사이트는 다음과 같습니다.

http://uva.onlinejudge.org

'공부 > Computers' 카테고리의 다른 글

ios push notification  (0) 2011.09.02
wwdc web 중 앞부분  (1) 2011.08.31
developer apple com video  (0) 2011.08.31
Graphics architecture 강의  (0) 2011.08.26
Standford machine learning  (0) 2011.08.26
WWDC2011 iBooks  (0) 2011.08.07
중소기업 직원 교육 훈련의 기회  (0) 2011.05.31
opengl 동영상 강의 찾기  (0) 2011.05.12
ios Camera AV Foundation 공부  (0) 2011.04.16
msdn 동영상 강의 시작  (0) 2010.12.23
by 언제나19 2011. 8. 15. 21:59


WWDC 2011 Session Videos - HD                   
에서 ebook 에 관련된 내용을 조금 보기.

Session 505 - iAd Implementation Best Practices    43:28    11. 6. 16.    Apple Developer    Developer on iTunes   

iAd는 지금 국내에서 쓸 수 있나 모르겠네.

Session 507 - iBooks    57:07    11. 6. 16.    Apple Developer    Developer on iTunes   
iBooks is an amazing way for anyone to create, sell and enjoy many types of books on iPhone and iPad. See how to leverage EPUB and the latest HTML and CSS technologies to create any type of book, from novels and technical manuals to cookbooks and children's books. Go beyond text and discover how to add supplementary content such as tables, PDFs, audio and video. Learn how to create precise picture books using your own custom layout and use CSS to enrich books with animation.

epub 3.0 spec도 조금 가르쳐주고,
contents 만드는 법도 조금 가르쳐주니까 좋다.
flowing books와 fixed layout에 대해서 보여준다.

ebook viewer를 만든다면, ibooks를 보고 그대로 따라 만드는 게 정석이겠다.
게다가 epub 3.0 지원할꺼면.



Session 508 - Understanding and Optimizing Web Graphics 42:32 11. 6. 16. Apple Developer Developer on iTunes
canvas, svg 사용법을 1시간만에 가르쳐 준다. 좋아.
 
Session 509 - What's New in CSS Effects and Animation 44:14 11. 6. 16. Apple Developer Developer on iTunes
css3 animation을 1시간만에 가르쳐 준다. 매우 좋아..
신기한 게 code만으로 막 되는구나.

딱 이거 3개를 진작에 봐뒀어야 했다.

 

'공부 > Computers' 카테고리의 다른 글

wwdc web 중 앞부분  (1) 2011.08.31
developer apple com video  (0) 2011.08.31
Graphics architecture 강의  (0) 2011.08.26
Standford machine learning  (0) 2011.08.26
The 3n+1 problem 부터도 실패  (1) 2011.08.15
중소기업 직원 교육 훈련의 기회  (0) 2011.05.31
opengl 동영상 강의 찾기  (0) 2011.05.12
ios Camera AV Foundation 공부  (0) 2011.04.16
msdn 동영상 강의 시작  (0) 2010.12.23
교보문고에서 c# 책 중 Inside c#  (0) 2010.05.14
by 언제나19 2011. 8. 7. 21:57


Imperial College London 는 어디지? London에 있나보다.
http://deimos3.apple.com/WebObjects/Core.woa/Feed/imperial-ac-uk-public-dz.5929116825.05929116827
Biology lecture이길래 받아봤는데,
대학 General Biology가 아니라, 일종의 seminar?였다.
topic에 대해 얘기해 주는 거.
얘기 꺼리로 가볍게 버스 안에서 보는 게 낫겠다.

Parakeet project calls for a flock of bird-spotters in South-East England    3:44    11. 6. 24.    Imperial College London    Imperial College London    Parakeet project calls for a flock of bird-spotters in South-East England
가 가장 최근 꺼였나보다.
이것만 봤었다.

같은 학교의 Physics
http://deimos3.apple.com/WebObjects/Core.woa/Feed/imperial-ac-uk-public-dz.5935824052.05935824054
도 얘기꺼리.
Can we freeze time? Laser adventures in the realm of the nano-nanosecond    54:08    11. 6. 30.    Imperial College London    Imperial College London    Can we freeze time? Laser adventures in the realm of the nano-nanosecond
만 봤다.
연구 소개일 뿐, 공부는 안된다.

Yale physics도 general physics 가 아니라 얘기꺼리인 것 같다.
http://deimos3.apple.com/WebObjects/Core.woa/Feed/yale.edu-dz.4496759242.04496759244
게다가 이건 audio만 나오나?


Kahn academy는 뭔지 잘 모르겠는데, 각종 강의가 많긴 하더라.
Physics            Khan Academy        Projectile motion, mechanics and electricity and magnetism. Solid understanding of algebra and a basic understanding of trigonometry necessary.    http://deimos3.apple.com/WebObjects/Core.woa/Feed/khanacademy.org-dz.4627311005.04627311007

얘네가 내놓는 것들은 한 강의가 10분 정도씩밖에 안되는 것이 특징인 것 같다.
잠깐씩 보기에 어울릴 지 모르겠지만,
보통은 너무 쉽게만 설명했던 것 같다.
그리고, 어떤 강의가 1번인지를 모르겠다.

아직 보지는 않았다.



마땅한 게 별로 없나보다. 그냥 고전적인 것을 봐야겠다.
itunes u 보기 전부터 봤던 것들
mit physics
berkeley biology
berkeley chemistry
open yale university organic chemistry

부담없이 천천히.







by 언제나19 2011. 7. 12. 19:30