Technical Discussion

Technical Dicussion 보드입니다.

[추천도서] Dive Into Python

Python from novice to pro

Dive Into Python is a Python book for experienced programmers. You can buy a printed copy, read it online, or download it in a variety of formats. It is also available in multiple languages.

책으로도 나와있고, 무료로 PDF버젼 및 다양한 미디어로 공개된 파이썬 자료입니다. Side Effects Inc의 추천 도서이기도 합니다.

http://www.diveintopython.org/

Render Manager | DrQueue

DrQueue라는 렌더메니져입니다. 아주 좋은 툴인거 같아요. 말하자면, 오픈소스베이스이며, 웬만한 툴은 다 지원을 합니다. 중소규모의 회사에서 사용하면 정말 좋을 듯합니다.

파이썬은 쉽다.

Python SOPs vs VEX SOPs

가장 틀린점은 역시나 Python은 geometry를 생성 및 삭제할 수 있고, VEX는 그게 않된다는 거였죠. VEX는 지오메트리를 Editting만 할 수 있었습니다.

파이선 초보자 문제 vol.01

이강성의 파이선2.0 개정판을 보고 공부하다가, 저같은 초보자분들이 한번쯤
헷갈려 할만한 문제를 올려봤습니다. 저도 남지현님에게 도움을 받아서 알게되었습니다;

[문제]

다음과 같은 문자열이 주어져 있다
s = "kimchi cruzer mini 1gb"
s.split()을 하면 위의 문자열이 단어 단위로 분리된 문자열 리스트를 얻게 된다. 이 리스트에서
저장된 단어들을 알파벳 순으로 정렬하고(리스트 연산), 각 단어를 순서대로 출력하라.(for 문)

[답]

s = "kimchi cruzer mini 1gb"
ss = s.split() ##여기서 ss 에 s.split()값을 넣어주지 않고 바로 s.sort()를 하면 에러가 생기기때문에 주의!
ss.sort()
for k in ss:
print k

[출력된값]

1gb
cruzer
kimchi
mini

Texture sequence mapping slim palette.

Installation:

#Open your Slim Console.

#Load the file.
slim ReadSlimFile "/home/jihyunn/dropbox/texseq.slim"

#Find the name of the template.
slim (jihyunn) 35 % slim GetTemplates -name "*texseq*"
Cutter,texseq#0

#Find out what palettes you have.
slim (jihyunn) 36 % slim GetPalettes
plt0 plt2 plt3

#Edit one of the palettes in the palette editor.
slim (jihyunn) 39 % plt2 Edit

#Intantiate the template in that palette.
slim (jihyunn) 41 % plt2 CreateInstance -template Cutter,texseq#0
func68

Pres

Pages

Subscribe to RSS - Technical Discussion