schoolwork2015. 3. 12. 19:28

깐깐하게 배우는 파이썬 - 2.4 (2.16)

Sublime Text 따라잡기 : 강력한 에디터와 플러그인 활용이 가능한 차세대 IDE - 1.4 (1.26)

자바+안드로이드를 다루는 기술 실무에서 알아야 할 기술은 따로 있다! - 3.6

Software Engineering : A Practitioner's Approach 8/E - 3.5

[외서] UML Distilled : A Brief Guide to the Standard Object Modeling Language(Paperback, 3/E)  - 2.6

Posted by Joe.C
schoolwork/class2015. 3. 11. 16:47

1. https://www.petsymposium.org/2014/papers/Renkema.pdf

'schoolwork > class' 카테고리의 다른 글

2015 1학기 시간표  (0) 2015.03.06
Posted by Joe.C
schoolwork/research2015. 3. 10. 18:11

1. Self-Adaptive Software: Landscape and Research Challenges - MAZEIAR SALEHIE and LADAN TAHVILDARI University of Waterloo - DONE (03/11)

2. Software Engineering for Self-Adaptive Systems: A Second Research Roadmap

- Reading...

3. Engineering self-adaptive systems through feedback loops

- Reading...

4. A journey to highly dynamic, self-adaptive service-based applications


A. Autonomic Web Processes (Kunal Verma, Amit P. Sheth)

B. Self-Adaptive Applications-On the Development of Personalized Web-Tasking Systems


Posted by Joe.C
schoolwork/class2015. 3. 6. 14:33



'schoolwork > class' 카테고리의 다른 글

정보시스템보안 paper reading 주제 정하기  (0) 2015.03.11
Posted by Joe.C
DIGITory/Mac2014. 12. 27. 02:01

add path to '/etc/paths'


ex :

/usr/bin

/bin

/usr/sbin

/sbin

/usr/local/bin

Posted by Joe.C
DIGITory/Codes2014. 12. 16. 11:48

http://kldp.org/KoreanDoc/html/GNU-Make/GNU-Make.html

'DIGITory > Codes' 카테고리의 다른 글

Test Random apk  (3) 2016.04.13
코드 수행 시간 for C/C++  (0) 2014.07.25
Posted by Joe.C
Code/Python2014. 12. 15. 17:43

#!/usr/bin/python
# -*- coding: 949 -*-

위와 같이 949 혹은 cp949 ms949... 등과 같이 선언하면 됨.

그러나! 

ubuntu에서는 'SyntaxError: 'cp949' codec can't decode bytes in position 20-21: illegal multibyte sequence' 와 같은 에러가 발생 함.


ubuntu의 한글코드 기본값이 utf-8이므로,
파이썬 코드를 편집할 때 첫째줄에
# -*- coding:utf-8 -*-
을 추가하시면 됩니다.   (출처 : "https://kldp.org/node/81708")

Posted by Joe.C
DIGITory/Ubuntu2014. 12. 9. 11:49

when I tried to install ubuntu 12.04, I got this error.

"/usr/lib/ubiquity/plugins/ubi-timezone.py" follows the message "ubiquity crashed with ValueError in raw_decode(): No JSON object could be decoded"


this is the discussion of ubuntu forum : "http://ubuntuforums.org/archive/index.php/t-1965802.html"

and I fixed this that unplugged network cable.

Posted by Joe.C
DIGITory/Ubuntu2014. 12. 2. 08:03

https://code.google.com/p/chromium/issues/detail?id=313427


크롬의 문제, 혹은 우분투의 문제인 줄 알았으나... 결국 synergy의 업데이트로 수정됨.

Posted by Joe.C
DIGITory/Ubuntu2014. 11. 17. 11:18

sudo gnome-desktop-item-edit /usr/share/applications/ --create-new


If gnome-desktop-item-edit is not available (e.g., on Ubuntu), you can install it as follows.

$ sudo apt-get install --no-install-recommends gnome-panel


after creation .desktop file, If you can't see the icon on your dock, excute it once on terminal, and lock to launcher.

Posted by Joe.C