- 원서 예제 GitHub 저장소: https://github.com/PacktPublishing/Data-Engineering-with-Python
- 원서 컬러 이미지: http://packtpub.com/sites/default/files/downloads/9781839214189_ColorImages.pdf
- p.16
- p.24
- p.30
- p.31
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0</* :: | |
@node "%~f0" %* & goto :eof | |
*/0; | |
const https = require('https'); | |
const http = require('http'); | |
const fs = require('fs'); | |
// URL 확장 결과를 캐싱하는 객체 | |
const urlCache = {}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
p.243 그림 6.1 중간 D3D11_INPUT_ELEMENT_DESC vertexDesc[] = 부터 }; 까지를 다음으로 대체: | |
D3D12_INPUT_ELEMENT_DESC vertexDesc[] = | |
{ | |
{"POSITION", 0, DXGI_FORMAT_R32G32B32_FLOAT, 0, 0, | |
D3D12_INPUT_CLASSIFICATION_PER_VERTEX_DATA , 0}, | |
{"NORMAL", 0, DXGI_FORMAT_R32G32B32_FLOAT, 0, 12, | |
D3D12_INPUT_CLASSIFICATION_PER_VERTEX_DATA , 0}, | |
{"TEXCOORD", 0, DXGI_FORMAT_R32G32_FLOAT, 0, 24, | |
D3D12_INPUT_CLASSIFICATION_PER_VERTEX_DATA , 0}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>>> A = (1, 3, 4, 2) | |
>>> B = ("하나", "셋", "넷", "둘") | |
>>> C, D = zip(*sorted(zip(A,B))) | |
>>> tuple(C) | |
(1, 2, 3, 4) |