'Programming'에 해당되는 글 1733건

  1. 2014.09.19 qt 시그널 .. emit
  2. 2014.09.19 qt 설치 -_-a
  3. 2014.08.28 lighthttpd / php / FastCGI
  4. 2014.08.25 aptana / eclipse
  5. 2014.08.13 dangling if-else
  6. 2014.07.14 JSP + CKeditor / CKfinder
  7. 2014.07.07 node.js
  8. 2014.07.07 부트스트랩 - 웹개발 프레임워크
  9. 2014.07.07 php5 class / object oriented programming 4
  10. 2014.07.07 jsp / php 기본 문법 비교
Programming/qt2014. 9. 19. 15:27
qt 프로젝트 소소를 뒤지다 보니 emit이라는게 나와 찾아보니
시그널 관련된 키워드라고 한다.
(게다가 c++이라 ctags는 헤매고 있고.. -_-)

[링크 : http://qt-project.org/doc/qt-4.8/signalsandslots.html]
[링크 : http://www.korone.net/bbs/board.php?bo_table=qt_qna&wr_id=14903
[링크 : http://woboq.com/blog/how-qt-signals-slots-work.html]


---
2014.11.12

[링크 : http://forum.falinux.com/zbxe/index.php?document_srl=406286&mid=graphic] 슬롯
[링크 : http://forum.falinux.com/zbxe/index.php?document_srl=406288&mid=graphic] 사용자 슬롯
[링크http://forum.falinux.com/zbxe/index.php?document_srl=406322&mid=graphic 시그널 & 슬롯
[링크 : http://www.korone.net/bbs/board.php?bo_table=qt_lecture&wr_id=475
[링크 : http://berabue.tistory.com/90]  

'Programming > qt' 카테고리의 다른 글

QT modules  (0) 2014.11.05
QT Quick UI  (2) 2014.11.05
qt moc(Meta Object Compiler)  (0) 2014.09.20
Qt 기본 encoding 설정  (0) 2014.09.19
qt 설치 -_-a  (0) 2014.09.19
Posted by 구차니
Programming/qt2014. 9. 19. 15:25
QT 개발환경은 여러가지가 있는데 아무래도 윈도우에서 하다 보니..
MinGW가 포함되어 있는 녀석을 골라야 하는데 헐... 737메가!! ㄷㄷㄷ
아무튼 이거 하나 깔면된다.

Source Components는 예제 파일.
음. 그런데 왜 Tools과 Qt양쪽에 MinGW가 포함되어 있는걸까?



Qt Online Installer for Linux 32-bit (23 MB) (Info)
Qt Online Installer for Linux 64-bit (22 MB) (Info)
Qt Online Installer for Mac (9.5 MB) (Info)
Qt Online Installer for Windows (14 MB) (Info)
Qt 5.3.2 for Android (Linux 32-bit, 518 MB) (Info)
Qt 5.3.2 for Android (Linux 64-bit, 517 MB) (Info)
Qt 5.3.2 for Android (Windows 32-bit, 817 MB) (Info)
Qt 5.3.2 for Linux 32-bit (449 MB) (Info)
Qt 5.3.2 for Linux 64-bit (447 MB) (Info)
Qt 5.3.2 for Mac (456 MB) (Info)
Qt 5.3.2 for iOS (Mac, 913 MB) (Info)
Qt 5.3.2 for Android (Mac, 517 MB) (Info)
Qt 5.3.2 for Android and iOS (Mac, 1.0 GB) (Info)
Qt 5.3.2 for Windows 32-bit (MinGW 4.8.2, OpenGL, 737 MB) (Info)
Qt 5.3.2 for Windows 32-bit (VS 2010, OpenGL, 539 MB) (Info)
Qt 5.3.2 for Windows 32-bit (VS 2012, OpenGL, 555 MB) (Info)
Qt 5.3.2 for Windows 32-bit (VS 2013, 561 MB) (Info)
Qt 5.3.2 for Windows 32-bit (VS 2013, OpenGL, 559 MB) (Info)
Qt 5.3.2 for Windows 64-bit (VS 2013, 575 MB) (Info)
Qt 5.3.2 for Windows 64-bit (VS 2013, OpenGL, 573 MB) (Info)
Qt 5.3.2 for Windows RT 32-bit (649 MB) (Info)

기본 다운로드인 온라인 설치 버전은 10MB 이지만
다운로드 속도가 풀 패키지 보다 받는게 느리므로 여러모로 풀 패키지가 유리하다.

[링크 : http://qt-project.org/downloads]

'Programming > qt' 카테고리의 다른 글

QT modules  (0) 2014.11.05
QT Quick UI  (2) 2014.11.05
qt moc(Meta Object Compiler)  (0) 2014.09.20
Qt 기본 encoding 설정  (0) 2014.09.19
qt 시그널 .. emit  (0) 2014.09.19
Posted by 구차니
Programming/php2014. 8. 28. 18:06
최신버전에는 php-fpm이 통합된 것으로 보이며
php 가 요청에 따라 마구 늘어나는 것을 fpm(Fastcgi Process Manager)를 통해 어느정도 억제가 가능하거나
connection pool을 제공함으로서 성능 향상을 도모할 수 있는 것으로 추측된다.


'Programming > php' 카테고리의 다른 글

php-fpm관련  (0) 2014.09.25
xcache apc  (0) 2014.09.23
php5 class / object oriented programming  (4) 2014.07.07
웹소켓 (websocket)  (0) 2014.07.03
php 로그인 예제  (0) 2014.05.19
Posted by 구차니
Programming/web 관련2014. 8. 25. 17:32
이클립스 기반의 웹개발 IDE

[링크 : http://www.aptana.com/]

'Programming > web 관련' 카테고리의 다른 글

html / input type radio에서의 reset 처리  (0) 2015.01.06
HTML META cache  (0) 2014.10.20
node.js  (0) 2014.07.07
부트스트랩 - 웹개발 프레임워크  (0) 2014.07.07
jsp / php 기본 문법 비교  (0) 2014.07.07
Posted by 구차니
Programming/언어론2014. 8. 13. 17:16
문득.. 내가 쓰는 문법이 댕글링 if-else를 생성하는거 같아서 찾아보니..
딱히 문제는 없도록 C언어에서 문법적으로 처리한다고 해서 한숨을 쉬는중..

일단 자바와 C C++은 인접한 if에 else가 붙는다고 한다.
Java, C and C++ have chosen to resolve the Dangling-Else ambiguity uses the following rule: 
An else keyword always associates with the nearest preceeding if keyword that does NOT cause a syntax error

[링크 : http://www.mathcs.emory.edu/~cheung/Courses/561/Syllabus/2-C/dangling-else.html]  

[링크 : http://en.wikipedia.org/wiki/Dangling_else]

'Programming > 언어론' 카테고리의 다른 글

double의 정확도 자릿수  (0) 2011.03.25
함수 포인터 (function pointer)  (0) 2010.09.16
type system  (0) 2010.09.15
calling convention(콜링 컨벤션)  (0) 2010.04.17
Posted by 구차니
Programming/jsp2014. 7. 14. 17:09
CKEditor는 웹 에디터로는 거의 세계 1위라고 보면 되는데..
자바 스크립트라서 php가 아니어도 돌아간다고 한다. 오홍..
통합 예제가 있으니 war 파일 받아서 실험해봐야겠다.

jsp로 블로그 만들어 볼까나..

음.. asp와 jsp용이 있지만. 2012년 이후로 업뎃이 안되고 있다.



[링크 : http://nimba.tistory.com/entry/jsp-웹에디터-CKEditor와-CKFinder-함께-사용하기]
[링크 : http://ckeditor.com/blog/CKEditor-for-Java-3.6.2-Released ]

[링크 : http://sourceforge.net/projects/jckconnector/ ]
[링크 : http://cksource.com/ ]
Posted by 구차니
Programming/web 관련2014. 7. 7. 23:15
node.js는 구글의 V8 자바스크립트 엔진을 기반으로 하는 플랫폼이다.
Node.js is a platform built on Chrome's JavaScript runtime for easily building fast, scalable network applications.

[링크 : http://nodejs.org/

내장 API중 하나인 HTTP를 이용하여 접속시 Hello World를 보여주는 예제라는데...
var http = require('http');
http.createServer(function (req, res) {
  res.writeHead(200, {'Content-Type': 'text/plain'});
  res.end('Hello World\n');
}).listen(1337, "127.0.0.1");
console.log('Server running at http://127.0.0.1:1337/');

[링크 : http://nodejs.org/about/


요즘 임베디드에서 node.js로 GPIO 제어하는게 많이 보이는데
음.. 가볍게 테스트용도로 쓰기에는 좋으나 제품으로 쓰기에는 조금 사양이 높은 임베디드에서나 가능하려나?
V8 엔진은 Garbage collection  기반의 메모리 관리를 하기 때문에, GC시 CPU 사용률이 Spike를 치면서 순간적으로 서버를 멈추게할 수 있다는 문제점

[링크 : http://bcho.tistory.com/876

[링크 : http://www.slideshare.net/jeongsangbaek/nodejs-15279050]
[링크 : http://www.nodebeginner.org/index-kr.html]

'Programming > web 관련' 카테고리의 다른 글

HTML META cache  (0) 2014.10.20
aptana / eclipse  (0) 2014.08.25
부트스트랩 - 웹개발 프레임워크  (0) 2014.07.07
jsp / php 기본 문법 비교  (0) 2014.07.07
post 방식과 get 방식의 차이점(cache)  (0) 2014.05.15
Posted by 구차니
Programming/web 관련2014. 7. 7. 22:46

'Programming > web 관련' 카테고리의 다른 글

aptana / eclipse  (0) 2014.08.25
node.js  (0) 2014.07.07
jsp / php 기본 문법 비교  (0) 2014.07.07
post 방식과 get 방식의 차이점(cache)  (0) 2014.05.15
sql designer(web)  (0) 2014.05.11
Posted by 구차니
Programming/php2014. 7. 7. 13:27
php 책 펴놓고 공부하면서 찾아보는데..
객체지향은 php5 부터 지원한다고 한다.

[링크 :  http://php.net/manual/en/language.oop5.php]

'Programming > php' 카테고리의 다른 글

xcache apc  (0) 2014.09.23
lighthttpd / php / FastCGI  (0) 2014.08.28
웹소켓 (websocket)  (0) 2014.07.03
php 로그인 예제  (0) 2014.05.19
php framework / 읽을꺼리  (0) 2014.04.09
Posted by 구차니
Programming/web 관련2014. 7. 7. 12:53
귀찮아서 대충 정리..

jsp
<%@ %> 
<% %>
${variable}

php
<? ?>
$variable

'Programming > web 관련' 카테고리의 다른 글

node.js  (0) 2014.07.07
부트스트랩 - 웹개발 프레임워크  (0) 2014.07.07
post 방식과 get 방식의 차이점(cache)  (0) 2014.05.15
sql designer(web)  (0) 2014.05.11
호스팅어 / 무료 웹 호스팅  (4) 2014.04.27
Posted by 구차니