2015년 3월 20일 금요일

MS_NO_COREDLL



python27_d.lib 을 못찾을 때

#define MS_NO_COREDLL
#include

Default account picture location of Mavericks




/Library/User Pictures 에 사진 넣어야 보임


2015년 3월 1일 일요일

The puzzle of motivation

100번을 봐도 괜찮을거 같은 talk이다.


Candle problem



The test presents the participant with the following task: how to fix and light a candle on a wall (a cork board) in a way so the candle wax won't drip onto the table below [1]. To do so, one may only use the following along with the candle:
  • a book of matches
  • a box of thumbtacks



.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.








누구나 자신만의 candle problem 을 풀고 있다는 다음 동영상 속의 말이 참 와닫는다.

누구나 자신만의 candle problem 을 풀고 있었구나~

[1] Richard E. Snow and Marshall J. Farr, ed. (1987). "Positive Affect and Organization". Aptitude, Learning, and Instruction Volume 3: Conative and Affective Process Analysis. Routledge. ISBN 978-0-89859-721-9.


2015년 2월 20일 금요일

Dolby AC-3



This format has different names:

  • Dolby Digital
  • DD (an abbreviation for Dolby Digital, often combined with channel count; for instance, DD 2.0, DD 5.1)
  • AC-3 (Audio Codec 3, Advanced Codec 3, Acoustic Coder 3. [These are backronyms. Adaptive Transform Acoustic Coding 3 is a separate format developed by Sony.])[12]
  • ATSC A/52 (name of the standard)[13]


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

윈도우 코덱 :
http://emptyeyed.tistory.com/450

2015년 2월 17일 화요일

Mavericks 에서 PHP 활성화


아래처럼 하면 끝~


Mavericks comes with PHP 5.4.17, so now we need to turn it on:
sudo nano /etc/apache2/httpd.conf
Use ctrl+w to search within nano and search for “php”. Uncomment the first line you find (remove the #):
LoadModule php5_module libexec/apache2/libphp5.so
Press ctrl+o and then ctrl+x to save and exit. Restart Apache for the change to kick in:
sudo apachectl restart

2015년 2월 1일 일요일

맥북 프로 충전 단자 깜빡일때


dbartul 의 방법으로 구사일생 (2011 late)

Won't start up; charger blinking orange
https://discussions.apple.com/thread/4270970


Had the same problem with my MacBook Pro 13" (Late 2011), switching adapters didn't work, SMC reset didn't work and I was just about to quit trying and take it to the shop when out of frustration I've unplugged the battery connector and plugged it right back in and that FIXED IT!!
(note: do not remove the battery since that will void the warranty, just remove the connector)

2014년 12월 26일 금요일

rotation VS orientation

An orientation is a state: “the object’s orientation is…”
A rotation is an operation: “Apply this rotation to the object”

That is, when you apply a rotation, you change the orientation. Both can be represented with the same tools, which leads to the confusion.

from http://www.opengl-tutorial.org/intermediate-tutorials/tutorial-17-quaternions/

2014년 10월 25일 토요일

Missing launcher and window menu bar of Ubuntu 12.04 on Paralles

Parallels 에 돌아가는 Ubuntu 의 menu bar가 사라져있음.

해결 : unity --reset

2014년 9월 29일 월요일

Hardware Accelerated Execution Manager


다음의 에러:
emulator: ERROR: x86 emulation currently requires hardware acceleration!
Please ensure Intel HAXM is properly installed and usable.
CPU acceleration status: HAX is not installed on this machine (/dev/HAX is missing).

Intel® Hardware Accelerated Execution Manager 설치하면 됨.
The Intel Hardware Accelerated Execution Manager (Intel HAXM) is a hardware-assisted virtualization engine (hypervisor) that uses Intel Virtualization Technology (Intel VT) to speed up Android app emulation on a host machine.


2014년 9월 9일 화요일

string이 URL 형태인지 체크 (Java)


import java.net.MalformedURLException;
import java.net.URL;


try { URL url = new URL("url_string"); }
catch (MalformedURLException e) { /* invalid URL */ }



http://stackoverflow.com/questions/9902265/find-out-the-string-is-url