디시인사이드 갤러리

갤러리 이슈박스, 최근방문 갤러리

갤러리 본문 영역

webgl example

webgl(175.196) 2013.02.23 15:42:19
조회 54 추천 0 댓글 0

http://kaidu1982.github.com/2013-jco-webgl/


function webGLStart() {    var canvas = document.getElementById("canvas-id");    initGL(canvas);    initShaders()    initBuffers();    gl.clearColor(0.0, 0.0, 0.0, 1.0);    gl.enable(gl.DEPTH_TEST);    drawScene();}                                

<h2 style="margin: 0px 0px 20px; padding: 0px; border: 0px; font-size: 2.11em; font: inherit; vertical-align: baseline; -webkit-hyphens: auto; word-break: break-word; color: rgb(238, 238, 238); font-family: 'League Gothic', Impact, sans-serif; line-height: 0.9em; letter-spacing: 0.02em; text-transform: uppercase; text-shadow: rgba(0, 0, 0, 0.2) 0px 0px 6px; text-align: center; background-color: rgb(43, 43, 43);">WEBGL CODE(2)</h2><pre style="margin: 15px auto; padding: 0px; border: 0px; font-size: 0.55em; font: inherit; vertical-align: baseline; position: relative; width: 810px; font-family: monospace; line-height: 1.2em; word-wrap: break-word; box-shadow: rgba(0, 0, 0, 0.298039) 0px 0px 6px; color: rgb(238, 238, 238); background-color: rgb(43, 43, 43);"><code class="" style="display: block; padding: 5px; background-color: rgb(63, 63, 63); color: rgb(220, 220, 220); margin: 0px; border: 0px; font-size: 18px; font: inherit; vertical-align: baseline; overflow: auto; max-height: 400px;">function initGL(canvas) {    try {        gl = canvas.getContext("experimental-webgl");        gl.viewportWidth = canvas.width;        gl.viewportHeight = canvas.height;    } catch (e) {    }    if (!gl) {        alert("Could not initialise WebGL, sorry :-(");    }}                                        </code><code class="" style="display: block; padding: 5px; background-color: rgb(63, 63, 63); color: rgb(220, 220, 220); margin: 0px; border: 0px; font-size: 18px; font: inherit; vertical-align: baseline; overflow: auto; max-height: 400px;">
</code><code class="" style="display: block; padding: 5px; background-color: rgb(63, 63, 63); color: rgb(220, 220, 220); margin: 0px; border: 0px; font-size: 18px; font: inherit; vertical-align: baseline; overflow: auto; max-height: 400px;">
<section class="present" style="margin: 0px; padding: 20px 0px; border: 0px; font-size: 36px; font: inherit; vertical-align: baseline; position: absolute; width: 900px; z-index: 11; line-height: 1.2em; -webkit-transform-style: preserve-3d; -webkit-transition: -webkit-transform-origin 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), -webkit-transform 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), visibility 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), opacity 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); left: -50%; top: -297px; opacity: 1; min-height: auto !important;"><h2 style="margin: 0px 0px 20px; padding: 0px; border: 0px; font-size: 2.11em; font: inherit; vertical-align: baseline; -webkit-hyphens: auto; word-break: break-word; font-family: 'League Gothic', Impact, sans-serif; line-height: 0.9em; letter-spacing: 0.02em; text-transform: uppercase; text-shadow: rgba(0, 0, 0, 0.2) 0px 0px 6px;">WEBGL CODE(3)</h2><pre style="margin: 15px auto; padding: 0px; border: 0px; font-size: 0.55em; font: inherit; vertical-align: baseline; position: relative; width: 810px; text-align: left; font-family: monospace; line-height: 1.2em; word-wrap: break-word; box-shadow: rgba(0, 0, 0, 0.298039) 0px 0px 6px;"><code class="" style="display: block; padding: 5px; background-color: rgb(63, 63, 63); color: rgb(220, 220, 220); margin: 0px; border: 0px; font-size: 18px; font: inherit; vertical-align: baseline; overflow: auto; max-height: 400px;">function initShaders() {        var fragmentShader = getShader(gl, "shader-fs");        var vertexShader = getShader(gl, "shader-vs");        shaderProgram = gl.createProgram();        gl.attachShader(shaderProgram, vertexShader);        gl.attachShader(shaderProgram, fragmentShader);        gl.linkProgram(shaderProgram);        if (!gl.getProgramParameter(shaderProgram, gl.LINK_STATUS)) {                alert("Could not initialise shaders");        }        gl.useProgram(shaderProgram);        shaderProgram.vertexPositionAttribute = gl.getAttribLocation(shaderProgram, "aVertexPosition");        gl.enableVertexAttribArray(shaderProgram.vertexPositionAttribute);        shaderProgram.vertexColorAttribute = gl.getAttribLocation(shaderProgram, "aVertexColor");        gl.enableVertexAttribArray(shaderProgram.vertexColorAttribute);        shaderProgram.pMatrixUniform = gl.getUniformLocation(shaderProgram, "uPMatrix");        shaderProgram.mvMatrixUniform = gl.getUniformLocation(shaderProgram, "uMVMatrix");}                                </code><code class="" style="display: block; padding: 5px; background-color: rgb(63, 63, 63); color: rgb(220, 220, 220); margin: 0px; border: 0px; font-size: 18px; font: inherit; vertical-align: baseline; overflow: auto; max-height: 400px;">
</code><code class="" style="display: block; padding: 5px; background-color: rgb(63, 63, 63); color: rgb(220, 220, 220); margin: 0px; border: 0px; font-size: 18px; font: inherit; vertical-align: baseline; overflow: auto; max-height: 400px;">        </code><h2 style="margin: 0px 0px 20px; padding: 0px; border: 0px; font-size: 2.11em; font: inherit; vertical-align: baseline; -webkit-hyphens: auto; word-break: break-word; color: rgb(238, 238, 238); font-family: 'League Gothic', Impact, sans-serif; line-height: 0.9em; letter-spacing: 0.02em; text-transform: uppercase; text-shadow: rgba(0, 0, 0, 0.2) 0px 0px 6px; text-align: center; white-space: normal;">WEBGL CODE(4)</h2><pre style="margin: 15px auto; padding: 0px; border: 0px; font-size: 0.55em; font: inherit; vertical-align: baseline; position: relative; width: 810px; font-family: monospace; line-height: 1.2em; word-wrap: break-word; box-shadow: rgba(0, 0, 0, 0.298039) 0px 0px 6px; color: rgb(238, 238, 238);"><code class="" style="display: block; padding: 5px; background-color: rgb(63, 63, 63); color: rgb(220, 220, 220); margin: 0px; border: 0px; font-size: 18px; font: inherit; vertical-align: baseline; overflow: auto; max-height: 400px;">function initBuffers() {        triangleVertexPositionBuffer = gl.createBuffer();        gl.bindBuffer(gl.ARRAY_BUFFER, triangleVertexPositionBuffer);        var vertices = [                 0.0,  1.0,  0.0,                -1.0, -1.0,  0.0,                 1.0, -1.0,  0.0        ];        gl.bufferData(gl.ARRAY_BUFFER, new Float32Array(vertices), gl.STATIC_DRAW);        triangleVertexPositionBuffer.itemSize = 3;        triangleVertexPositionBuffer.numItems = 3;                var indices = [0, 2, 1];                triangleIndexPositionBuffer = gl.createBuffer();        gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, triangleIndexPositionBuffer);        gl.bufferData(gl.ELEMENT_ARRAY_BUFFER, new Uint16Array(indices), gl.STATIC_DRAW);        triangleVertexColorBuffer = gl.createBuffer();        gl.bindBuffer(gl.ARRAY_BUFFER, triangleVertexColorBuffer);        var colors = [                1.0, 0.0, 0.0, 1.0,                0.0, 1.0, 0.0, 1.0,                0.0, 0.0, 1.0, 1.0        ];        gl.bufferData(gl.ARRAY_BUFFER, new Float32Array(colors), gl.STATIC_DRAW);        triangleVertexColorBuffer.itemSize = 4;        triangleVertexColorBuffer.numItems = 3;}                                        </code><code class="" style="display: block; padding: 5px; background-color: rgb(63, 63, 63); color: rgb(220, 220, 220); margin: 0px; border: 0px; font-size: 18px; font: inherit; vertical-align: baseline; overflow: auto; max-height: 400px;"><h2 style="margin: 0px 0px 20px; padding: 0px; border: 0px; font-size: 2.11em; font: inherit; vertical-align: baseline; -webkit-hyphens: auto; word-break: break-word; color: rgb(238, 238, 238); font-family: 'League Gothic', Impact, sans-serif; line-height: 0.9em; letter-spacing: 0.02em; text-transform: uppercase; text-shadow: rgba(0, 0, 0, 0.2) 0px 0px 6px; text-align: center; white-space: normal; background-color: rgb(43, 43, 43);">WEBGL CODE(5)</h2><pre style="margin: 15px auto; padding: 0px; border: 0px; font-size: 0.55em; font: inherit; vertical-align: baseline; position: relative; width: 810px; font-family: monospace; line-height: 1.2em; word-wrap: break-word; box-shadow: rgba(0, 0, 0, 0.298039) 0px 0px 6px; color: rgb(238, 238, 238); background-color: rgb(43, 43, 43);"><code class="" style="display: block; padding: 5px; background-color: rgb(63, 63, 63); color: rgb(220, 220, 220); margin: 0px; border: 0px; font-size: 18px; font: inherit; vertical-align: baseline; overflow: auto; max-height: 400px;">   function drawScene() {        gl.viewport(0, 0, gl.viewportWidth, gl.viewportHeight);        gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT);        mat4.perspective(45, gl.viewportWidth / gl.viewportHeight, 0.1, 100.0, pMatrix);        mat4.identity(mvMatrix);        mat4.translate(mvMatrix, [0, 0.0, -7.0]);        gl.bindBuffer(gl.ARRAY_BUFFER, triangleVertexPositionBuffer);        gl.vertexAttribPointer(shaderProgram.vertexPositionAttribute, triangleVertexPositionBuffer.itemSize, gl.FLOAT, false, 0, 0);        gl.bindBuffer(gl.ARRAY_BUFFER, triangleVertexColorBuffer);        gl.vertexAttribPointer(shaderProgram.vertexColorAttribute, triangleVertexColorBuffer.itemSize, gl.FLOAT, false, 0, 0);        setMatrixUniforms();                        gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, triangleIndexPositionBuffer);        gl.drawElements(gl.TRIANGLES, 3, gl.UNSIGNED_SHORT,0);        }                                        </code><code class="" style="display: block; padding: 5px; background-color: rgb(63, 63, 63); color: rgb(220, 220, 220); margin: 0px; border: 0px; font-size: 18px; font: inherit; vertical-align: baseline; overflow: auto; max-height: 400px;">
</code><code class="" style="display: block; padding: 5px; background-color: rgb(63, 63, 63); color: rgb(220, 220, 220); margin: 0px; border: 0px; font-size: 18px; font: inherit; vertical-align: baseline; overflow: auto; max-height: 400px;">
</code></pre></code></pre></pre></section><section class="future" style="margin: 0px; padding: 20px 0px; border: 0px; font-size: 36px; font: inherit; vertical-align: baseline; position: absolute; width: 900px; z-index: 10; line-height: 1.2em; -webkit-transform-style: preserve-3d; -webkit-transition: -webkit-transform-origin 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), -webkit-transform 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), visibility 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), opacity 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); left: -50%; top: -296.5px; opacity: 0; -webkit-transform: translate3d(100%, 0px, 0px) rotateY(90deg) translate3d(100%, 0px, 0px); min-height: auto !important;"><h2 style="margin: 0px 0px 20px; padding: 0px; border: 0px; font-size: 2.11em; font: inherit; vertical-align: baseline; -webkit-hyphens: auto; word-break: break-word; font-family: 'League Gothic', Impact, sans-serif; line-height: 0.9em; letter-spacing: 0.02em; text-transform: uppercase; text-shadow: rgba(0, 0, 0, 0.2) 0px 0px 6px;">WEBGL CODE(4)</h2><pre style="margin: 15px auto; padding: 0px; border: 0px; font-size: 0.55em; font: inherit; vertical-align: baseline; position: relative; width: 810px; text-align: left; font-family: monospace; line-height: 1.2em; word-wrap: break-word; box-shadow: rgba(0, 0, 0, 0.298039) 0px 0px 6px;"><code class="" style="display: block; padding: 5px; background-color: rgb(63, 63, 63); color: rgb(220, 220, 220); margin: 0px; border: 0px; font-size: 18px; font: inherit; vertical-align: baseline; overflow: auto; max-height: 400px;">function initBuffers() {        triangleVertexPositionBuffer = gl.createBuffer();        gl.bindBuffer(gl.ARRAY_BUFFER, triangleVertexPositionBuffer);        var vertices = [                 0.0,  1.0,  0.0,                -1.0, -1.0,  0.0,                 1.0, -1.0,  0.0        ];        gl.bufferData(gl.ARRAY_BUFFER, new Float32Array(vertices), gl.STATIC_DRAW);        triangleVertexPositionBuffer.itemSize = 3;        triangleVertexPositionBuffer.numItems = 3;                var indices = [0, 2, 1];                triangleIndexPositionBuffer = gl.createBuffer();        gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, triangleIndexPositionBuffer);        gl.bufferData(gl.ELEMENT_ARRAY_BUFFER, new Uint16Array(indices), gl.STATIC_DRAW);        triangleVertexColorBuffer = gl.createBuffer();        gl.bindBuffer(gl.ARRAY_BUFFER, triangleVertexColorBuffer);        var colors = [                1.0, 0.0, 0.0, 1.0,                0.0, 1.0, 0.0, 1.0,                0.0, 0.0, 1.0, 1.0        ];        gl.bufferData(gl.ARRAY_BUFFER, new Float32Array(colors), gl.STATIC_DRAW);        triangleVertexColorBuffer.itemSize = 4;        triangleVertexColorBuffer.numItems = 3;}                                        </code></pre></section><section class="future" style="margin: 0px; padding: 20px 0px; border: 0px; font-size: 36px; font: inherit; vertical-align: baseline; position: absolute; width: 900px; z-index: 10; line-height: 1.2em; -webkit-transform-style: preserve-3d; -webkit-transition: -webkit-transform-origin 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), -webkit-transform 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), visibility 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), opacity 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); left: -50%; top: -297px; opacity: 0; -webkit-transform: translate3d(100%, 0px, 0px) rotateY(90deg) translate3d(100%, 0px, 0px); min-height: auto !important;"><h2 style="margin: 0px 0px 20px; padding: 0px; border: 0px; font-size: 2.11em; font: inherit; vertical-align: baseline; -webkit-hyphens: auto; word-break: break-word; font-family: 'League Gothic', Impact, sans-serif; line-height: 0.9em; letter-spacing: 0.02em; text-transform: uppercase; text-shadow: rgba(0, 0, 0, 0.2) 0px 0px 6px;">WEBGL CODE(5)</h2><pre style="margin: 15px auto; padding: 0px; border: 0px; font-size: 0.55em; font: inherit; vertical-align: baseline; position: relative; width: 810px; text-align: left; font-family: monospace; line-height: 1.2em; word-wrap: break-word; box-shadow: rgba(0, 0, 0, 0.298039) 0px 0px 6px;"><code class="" style="display: block; padding: 5px; background-color: rgb(63, 63, 63); color: rgb(220, 220, 220); margin: 0px; border: 0px; font-size: 18px; font: inherit; vertical-align: baseline; overflow: auto; max-height: 400px;">   function drawScene() {        gl.viewport(0, 0, gl.viewportWidth, gl.viewportHeight);        gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT);        mat4.perspective(45, gl.viewportWidth / gl.viewportHeight, 0.1, 100.0, pMatrix);        mat4.identity(mvMatrix);        mat4.translate(mvMatrix, [0, 0.0, -7.0]);        gl.bindBuffer(gl.ARRAY_BUFFER, triangleVertexPositionBuffer);        gl.vertexAttribPointer(shaderProgram.vertexPositionAttribute, triangleVertexPositionBuffer.itemSize, gl.FLOAT, false, 0, 0);        gl.bindBuffer(gl.ARRAY_BUFFER, triangleVertexColorBuffer);        gl.vertexAttribPointer(shaderProgram.vertexColorAttribute, triangleVertexColorBuffer.itemSize, gl.FLOAT, false, 0, 0);        setMatrixUniforms();                        gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, triangleIndexPositionBuffer);        gl.drawElements(gl.TRIANGLES, 3, gl.UNSIGNED_SHORT,0);        }                                        </code></pre></section><section class="future" style="margin: 0px; padding: 20px 0px; border: 0px; font-size: 36px; font: inherit; vertical-align: baseline; position: absolute; width: 900px; z-index: 10; line-height: 1.2em; -webkit-transform-style: preserve-3d; -webkit-transition: -webkit-transform-origin 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), -webkit-transform 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), visibility 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), opacity 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); left: -50%; top: -333.5px; opacity: 0; -webkit-transform: translate3d(100%, 0px, 0px) rotateY(90deg) translate3d(100%, 0px, 0px); min-height: auto !important;"><iframe data-src="reveal.js-master/ex/sample.html" src="http://kaidu1982.github.com/2013-jco-webgl/reveal.js-master/ex/sample.html" style="margin: 0px auto; padding: 0px; border-width: 0px; font-size: 36px; font: inherit; vertical-align: baseline; max-width: 100%; max-height: 100%; display: block; background-color: rgb(238, 238, 238); height: 600px; width: 800px;"></iframe></section>
<aside class="controls" style="margin: 0px; padding: 0px; border: 0px; font-size: 36px; font: inherit; vertical-align: baseline; position: fixed; width: 110px; height: 110px; z-index: 30; right: 10px; bottom: 10px; color: rgb(238, 238, 238); font-family: Lato, Times, 'Times New Roman', serif; line-height: 36px; white-space: normal; background-color: rgb(43, 43, 43);">
</aside></code></pre>

추천 비추천

0

고정닉 0

0

댓글 영역

전체 댓글 0
본문 보기

하단 갤러리 리스트 영역

왼쪽 컨텐츠 영역

갤러리 리스트 영역

갤러리 리스트
번호 제목 글쓴이 작성일 조회 추천
설문 반응이 재밌어서 자꾸만 놀리고 싶은 리액션 좋은 스타는? 운영자 25/07/28 - -
AD 휴대폰 액세서리 세일 중임! 운영자 25/07/28 - -
346843 간만에 node.js 개발 이야기 [3] 천회장(118.131) 13.02.22 217 0
346841 html 파싱중에 질문있어요 ㅠㅠ [2] adsf(114.200) 13.02.22 83 0
346840 죽지 않고 질기게도 살아남은 바퀴벌레 언어 파스칼, 코볼 리스프, 베이직 [4] 경번갑(121.167) 13.02.22 261 0
346839 이런새끼가 국장받나? 씨발? [2] 나리링갤로그로 이동합니다. 13.02.22 157 0
346838 프개럴들아 물어볼게 있어 opengl에 대해서... [1] 핥라산갤로그로 이동합니다. 13.02.22 83 0
346837 형들 릴1게1임 개발 제의 들어왔는데.... [6] ㅇ.ㅇ(121.143) 13.02.22 141 0
346836 퇴근 한시간 남았다 [2] ?(123.142) 13.02.22 59 0
346834 코코스2디 [3] 홍길동(121.138) 13.02.22 104 0
346833 IT 뱅크 학원 강사 얼마나 받음? [11] 생물학(123.215) 13.02.22 226 0
346832 C++에 관해 물어볼게 있어~~~ [9] 횽들(115.136) 13.02.22 147 0
346831 IT특기병/전공대비/C언어,고졸,휴학생,미취업자중소기업친화국비지원전액지원 [1] 김민섭팀장(211.48) 13.02.22 139 0
346830 통장 1억이라 딴나라 이야기네 [9] 생물학(123.215) 13.02.22 138 0
346829 ㅇㅋ java로 짰던 post 문제 왜 안됐는지 알게씀 [1] ?(123.142) 13.02.22 85 0
346828 취업이민 가려면 어떤 조건이 있어야 해??? [1] 멍청닭(182.211) 13.02.22 102 0
346827 여자처럼 풀기 힘든 문제는 없는것 같다 [1] 멍청닭(182.211) 13.02.22 89 0
346826 직장인 횽들아 요즘 일자리 좀 있나요??? [2] 멍청닭(182.211) 13.02.22 90 0
346824 DART님 저희집 Intel(R) Core(TM) i3-3110M CPU [4] 염산.(14.37) 13.02.22 318 0
346823 하 ㅅㅂ 애인이랑 싸움 .... [26] 15534(108.198) 13.02.22 274 2
346821 VMware 쓰면 원래 깔려있는 운영체제쓸때 속도가저하된다던가그런거없어? [3] vmware(14.37) 13.02.22 111 0
346820 영세업체는 초봉이 치킨 몇마리쯤 됩니까 [1] (222.116) 13.02.22 60 0
346819 오잉?! c에서 다시 하니 post 날아오넹?? [11] ?(123.142) 13.02.22 125 0
346818 선릉역 근처면 사무실 임대료 비싸지 않나여? [2] 코딩고자(121.66) 13.02.22 99 0
346817 일침좀 가해줘라 [5] d(220.122) 13.02.22 93 0
346816 nasm 문법 중에 궁금한거 [7] 12(59.12) 13.02.22 81 0
346814 전산직 공무원은 땡인가여??? [1] 멍청닭(182.211) 13.02.22 194 0
346813 IT 사장이 가장 좋아하는 개발자. [5] 멍청닭(182.211) 13.02.22 298 0
346812 요즘 대기업 공채 시즌 아니냐??? 멍청닭(182.211) 13.02.22 60 0
346810 그나저나 홈페이지 만드는건 왜이리 재미없어 보일까 [6] asdf(121.66) 13.02.22 167 0
346809 몇천줄 짜가면서 밤을 새워야만 적성이 맞는지 안 맞는지 알 수 있는거임? [6] asdf(121.66) 13.02.22 204 1
346808 자바배울라고 학원다니면 등신인가요?? [1] dd(112.153) 13.02.22 119 0
346807 형들 파이썬에서 파일 출력할때 ㅜㅜ.,, [1] 11(1.245) 13.02.22 113 0
346806 차단목록이나 필터링 목록같은거 고속으로 검색하는방법은없나여? [4] (168.126) 13.02.22 53 0
346805 넘어오지 않는 post 데이터.java [12] ?(123.142) 13.02.22 126 0
346804 님들 이정도면 어느정도 수준이가요 [142] 아주대(220.120) 13.02.22 643 0
346803 http에 대해서 배우고싶은데 어디가서배움? [4] 2er2e(175.215) 13.02.22 78 0
346802 횽들 post 데이터가 안넘어와 ㅠㅠ [6] ?(123.142) 13.02.22 95 0
346801 jsp 인강 좋은거 추천좀해주세여 형님들.. 조공늅늅 [1] dd(112.153) 13.02.22 109 0
346799 군대 SW관리병으로 나온사람 있음? [6] ㅇㅇㅇㅇㅇㅇ(219.254) 13.02.22 667 0
346798 한글 뭐 저리 비쌈? 이모군(175.114) 13.02.22 62 0
346797 it 가 맞는 사람은 수학도 다르게 풀어야 되나요 [12] topandbottom갤로그로 이동합니다. 13.02.22 219 0
346796 국비지원 학원과 SI인력파견업체 공통점 [1] .3(61.255) 13.02.22 251 0
346793 횽들 IT대학 진로방향 좀 대충 요약해줘 [11] 내미키는숙면중갤로그로 이동합니다. 13.02.22 206 0
346792 IT특기병/전공대비/C언어,고졸,휴학생,미취업자중소기업친화국비지원전액지원 [6] 김민섭팀장(211.48) 13.02.22 150 0
346791 횽들 도와줘 [7] 내미키는숙면중갤로그로 이동합니다. 13.02.22 105 0
346790 도스 시절에 프로그래머였으면 지금보다 행복했을까? [9] ㅇㅇ(58.102) 13.02.22 180 0
346788 형들 파이썬에서 출력할때. [3] 1(1.245) 13.02.22 93 0
346787 한국에서 개발자가 인도/중국 아웃소싱 걱정할 필요가 없는 이유 [5] ㅁㄴㄻㄹ갤로그로 이동합니다. 13.02.22 235 0
346786 안드로이드 처음 시작하는데, 책 추천좀 [3] 있긔없긔(121.170) 13.02.22 122 0
346785 유니코드쓰는데 왜 유니코드가 저장이 안댐? [4] 인코딩(221.160) 13.02.22 102 0
346784 activex가 뭐냐 얘들앙 [1] abd(203.226) 13.02.22 64 0
뉴스 코치, 더현대 서울에 매장 오픈...투모로우바이투게더의 태현·휴닝카이·채수빈·이즈나(izna)·마이 등 참석 디시트렌드 07.28
갤러리 내부 검색
제목+내용게시물 정렬 옵션

오른쪽 컨텐츠 영역

실시간 베스트

1/8

뉴스

디시미디어

디시이슈

1/2