일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 |
- visual studio code cli
- GNC
- code .
- AWS
- Nodejs
- code 설치
- 티스토리 초대장
- 프리티어
- '티스토리 초대장/ 티스토리초대'
- 초대장
- visual studio code
- 네이버 클라우드 플랫폼
- 클라우드 비교
- 플러그인
- settings sync
- code 세팅
- 티스토리 초대장/ 티스토리초대
- CLI
- 티스토리초대
- Toast
- code
- 유니옥션
- Today
- 0
- Total
- 61,869
목록프로그래밍 (14)
신나게 개발하기
개발 배포 전/후 Diff 를 비교하여 문제가 있는 곳을 찾아주는 솔루션을 만들기위해 Github에 등록을 했다. React 와 Node.js 가 적응이 안되서 그냥 Spring 으로 만들까를 매번 생각하지만 공부를 위해서 하는 작업이니 만큼 끝까지 만들어가야겠다. https://github.com/JunhoYi/diff-sonic JunhoYi/diff-sonic Contribute to JunhoYi/diff-sonic development by creating an account on GitHub. github.com
등록은 다른걸 먼저 했는데 얘가 가장 먼저 됐다 .. 망고폰 꼭 받고 말테다
해피캠퍼스에서 열심히 팔고있는 나의 게임ㅎ 구매자도 10명이 넘을정도로 저의 주력상품(?)이다 중력센서를 이용해서 움직이고 surfaceview를 이용해서 화면을 그리는 형식으로 만든 게임입니다. 물론 버그가 많이 있다 .. 그냥 보여주기 식이라 미사일 맞아도 안죽을때도 있고 , 소스를 수정해서 고치긴 했는데 해피캠퍼스엔 굳이 수정안했다..; 이후에 아이템도 추가하고 미사일도 늘렸지만 자료는 증발해서 안타깝다 ㅠㅠ 팔고있는 주소는 http://mybox.happycampus.com/eternalno1/5589571
#include #include static GLfloat spin = 0.0; void display(void) { glClear(GL_COLOR_BUFFER_BIT); glPushMatrix(); glRotatef(spin, 0.0, 0.0, 0.1); glColor3f(1.0, 1.0, 1.0); glColor3f(1.0, 1.0, 1.0); glBegin(GL_POLYGON); glVertex3f (11.25, 11.25, 0.0); glVertex3f (93.75, 11.25, 0.0); glVertex3f (93.75, 11.75, 0.0); glVertex3f (11.25, 11.75, 0.0); glEnd(); glPopMatrix(); glColor3f(1.0, 1.0, 1.0); glB..
#include #include #include typedef struct listNode *node_p; struct listNode { char name[5]; node_p link; }; void printList(node_p L) { node_p p; printf("\n("); p = L; while (p != NULL) { printf("%s", p->name); p = p->link; if (p != NULL) printf(", "); } printf(")\n"); } node_p addLastNode(node_p L, char *x) { node_p newNode, p; newNode = (node_p)malloc(sizeof(struct listNode)); strcpy(newNode->n..
#include #include using std::cout; using std::endl; class Person { public: int age; Person() { age=1; } Person(int i ) { age=i; } ~Person() { } }; class Junho:public Person { private: char * name; int idNum; public: void setDet(int a,int b); char * getName(void); Junho() { this->name="2211"; idNum=0; } Junho(char * i):Person(23) { name=i; idNum=1; } Junho(char * i,int j) { name=i; idNum=j; } ~Ju..
#include using std::cout; using std::endl; class junho { private: char name; int idNum; public: void setDet(int a,int b); int getName(void); junho() { name=1; idNum=0; } junho(int i) { name=i; idNum=1; } junho(int i,int j) { name=i; idNum=j; } }; void junho::setDet(int a,int b) { name=a; idNum=b; } int junho::getName(void) { return name; } void main() { junho jh;// 디폴트 생성자는 () 이게 없음 ; cout
#include using std::cout; using std::endl; class junho { private: int name; int idNum; public: void setDet(int a,int b); }; void junho::setDet(int a,int b) { name=a; idNum=b; } void main() { junho jh={1,2}; jh.setDet(3,11); cout
아직 해야할것, 한수두고 끝난다 .수정해야함. 게임이 끝난후 화면 다시 원래대로 돌아가게 해야함 . 방 몽록 출력해줘야함.. 기타 등등 .
using System; using System.Collections.Generic; using System.Text; namespace ConsoleApplication1 { class Calc { public int a, b; public Calc(int a, int b) { this.a = a; this.b = b; } public void option(String opt) { if (opt=="+") { this.plus(); } else if (opt=="-") { this.minus(); } else if (opt=="/") { this.nanum(); } else if (opt=="*") { this.gob(); } else { } } public void plus() { System.Con..