Frontiers of Biomedical Engineering with W. Mark Saltzman

내용은 좋은 것 같은데, 저작권 문제로 프리젠테이션을 안보여주니까 집중도 안되고, 내용 전달이 효과적이지 않다.

계속 선생님만 영상에 나온다.

3까지만 대충 틀어놓다가 말았다.





by 언제나19 2013. 12. 19. 10:52




University of London International Programmes

Malicious Software and its Underground Economy: Two Sides to Every Story

조용하고 얌전한 목소리 선생님.


android 보안에 대해서도 배운다.

몇 가지 해킹/보안 기법에 대해서 배운다.

사용할 만한 tool에 대해서도 조금 배운다.

길지 않다.


https://www.coursera.org/course/malsoftware

Malicious Software and its Underground Economy: Two Sides to Every Story

Learn about traditional and mobile malware, the security threats they represent, state-of-the-art analysis and detection techniques, and the underground ecosystem that drives such a profitable but illegal business.

Watch intro video


by 언제나19 2013. 12. 15. 23:19


초반은

graphic engine이 좋아진다는 얘기


10분 쯤에는 개발자 옵션 중 GPU관련 얘기

GPU에서 시간을 얼마나 쓰는지 즉시 그래프로 보여준다.

각 영역에 대해 몇 번을 redraw하는지 가르쳐주는 option도 있다. 이게 좋네.

red 3번, deep red(갈색) 4번 redraw한다는 의미.

Developer options

Show GPU overdraw

Blue 1x

Green 2x

Red 3x

Deep Red 4x


Profile GPU rendering

On screen as bars




20분 쯤부터 개발할 때 도움이 되는 얘기를 한다.

android는 기본적으로 windowBackground를 그리기 때문에

ListView에 background를 지정하면, redraw가 발생한다.

ListView에 android:background를

style에서 theme 색깔을 바꾸면, overdraw를 1번 줄일 수 있다.

<style name="AppTheme" parent="android:Theme.Light">

<item name="android:windowBackground">@color/dark/background</item>

</style>


for big bitmap

b.setHasMipMap(true);

<bitmap

 android:mipMap="true"

 android:src="@drawable/my_drawable" />



alpha를 쓰면, 부담이 되므로, 대안이 있으면 대안을 쓰기


alpha를 직접 계산할 수 있으면 직접 미리 계산해서 계산된 값을 쓰기

ImageView에서 setAlpha보다는 setImageAlpha를 쓰기

그 외에도 3가지 정도 방법이 있다.


canvas에서 rotation, clipping 등을 할 때, 사각형 모양으로 clip되게 하는 것이 더 좋다. (?)





성능을 높이기 위해서 한 번 이상 보고 모든 것을 다 익혀 놓는 것이 좋겠다.


마지막에 6개 정도 다른 link를 가르쳐준다. 이것들도 봐두면 좋겠다.


by 언제나19 2013. 12. 15. 13:34


커스텀 뷰를 만들기 전에 한 번 꼭 보기.

View에 override할 만한 method가 너무 많은데, 그 중 어떤 것들이 필수인지 알 수 있다.

간단한 소개, 설명도 들을 수 있다.


자세한 동작은 View.java 등에서 소스를 직접 보면 알 수 있다.


LayoutParams, onSaveInstanceState 등이 인상적이다.


2번 봤다.


android measure, layout pass 설명이 좀 적다. 이거 가르쳐준 session이 과거에 있었던 것 같은데, 제목이 생각나지 않는다.


android 3.0부터 가능한 hardware rendering에 대해서 더 알려면 다른 영상을 더 봐야 하겠다.

제목은 모르겠다.




by 언제나19 2013. 12. 15. 00:01


일본 모 자격증 국가시험 문제 중에 에스트로겐의 생성장소를 묻는 객관식 질문이 있었는지도 모르겠다.

기출문제인지 문제집인지 모르겠네.

그런데, 난소 이외에도 여러 곳에서도 생성되네.. 문제가 잘못된 것 같다.

일본 문제 꾸리하네..


http://en.wikipedia.org/wiki/Estrogen

Estrogens, in females, are produced primarily by the ovaries, and during pregnancy, the placenta.Follicle-stimulating hormone (FSH) stimulates the ovarian production of estrogens by thegranulosa cells of theovarian follicles andcorpora lutea. Some estrogens are also produced in smaller amounts by other tissues such as the liver, adrenal glands, and the breasts. These secondary sources of estrogens are especially important in postmenopausal women.Fat cells produce estrogen as well.[8]


산소 포화도가 95% 이상, 80% 이상 어느 것이 정상인지 묻는 이상한 문제도 있네.

동맥인지 정맥인지 표시도 안해주고..


by 언제나19 2013. 12. 14. 13:33