'Programming'에 해당되는 글 1721건

  1. 2014.10.07 php - register_globals
  2. 2014.10.07 php EGPCS
  3. 2014.09.25 php-fpm관련
  4. 2014.09.24 perl tutorial
  5. 2014.09.24 perl array sort 하기
  6. 2014.09.23 xcache apc
  7. 2014.09.20 qt moc(Meta Object Compiler)
  8. 2014.09.19 Qt 기본 encoding 설정
  9. 2014.09.19 qt 시그널 .. emit
  10. 2014.09.19 qt 설치 -_-a
Programming/php2014. 10. 7. 11:05
register globals 라고
EGPCS 변수들을 글로벌 변수로 바꿔주는 옵션이 있으나

5.3.22
; Whether or not to register the EGPCS variables as global variables.  You may
; want to turn this off if you don't want to clutter your scripts' global scope
; with user data.
; You should do your best to write your scripts so that they do not require
; register_globals to be on;  Using form variables as globals can easily lead
; to possible security problems, if the code is not very well thought of.
; http://php.net/register-globals
register_globals = On 

5.4대로 가면서 deprecated 되어 이를 회피하기 위한 방법으로 각각 페이지 마다 
옵션을 주어 사용하는 방법이 있다고 한다. 
@extract($_GET);
@extract($_POST);
@extract($_SERVER); 

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

lighttpd + php-fpm  (0) 2014.10.10
php 5.3.22 버전 크로스컴파일시 주의사항  (0) 2014.10.08
php EGPCS  (0) 2014.10.07
php-fpm관련  (0) 2014.09.25
xcache apc  (0) 2014.09.23
Posted by 구차니
Programming/php2014. 10. 7. 10:49

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

php 5.3.22 버전 크로스컴파일시 주의사항  (0) 2014.10.08
php - register_globals  (0) 2014.10.07
php-fpm관련  (0) 2014.09.25
xcache apc  (0) 2014.09.23
lighthttpd / php / FastCGI  (0) 2014.08.28
Posted by 구차니
Programming/php2014. 9. 25. 15:22

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

php - register_globals  (0) 2014.10.07
php EGPCS  (0) 2014.10.07
xcache apc  (0) 2014.09.23
lighthttpd / php / FastCGI  (0) 2014.08.28
php5 class / object oriented programming  (4) 2014.07.07
Posted by 구차니
Programming/perl2014. 9. 24. 18:18

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

perl array sort 하기  (0) 2014.09.24
Posted by 구차니
Programming/perl2014. 9. 24. 17:52

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

perl tutorial  (0) 2014.09.24
Posted by 구차니
Programming/php2014. 9. 23. 18:33
xcache - ubuntu 14.04 기준
/etc/php5/mods-available/xcache.ini
/usr/lib/php5/20121212/xcache.so

$ vi /etc/php5/fpm/php.ini
extension=xcache.so

$ vi /etc/php5/mod-available/xcache.ini
[xcache.admin]
;xcache.admin.enable_auth = On
xcache.admin.enable_auth = Off
 

[링크 : http://xcache.lighttpd.net]
[링크 : http://www.tecmint.com/install-xcache-to-accelerate-and-optimize-php-performance/] xcache 설치 / 최적화


[링크 : http://blog.pages.kr/217]
[링크 : http://php.net/manual/en/book.apc.php]



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

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

php EGPCS  (0) 2014.10.07
php-fpm관련  (0) 2014.09.25
lighthttpd / php / FastCGI  (0) 2014.08.28
php5 class / object oriented programming  (4) 2014.07.07
웹소켓 (websocket)  (0) 2014.07.03
Posted by 구차니
Programming/qt2014. 9. 20. 21:42
qt의 c++ 확장인
signal등을 처리하는 비표준 부분을 처리해주는 녀석이 MOC 인거 같은데..
어떻게 보면 qt의 C++비표준 부분에 의해서 나노먼지 단위로 까이는 부분이 이 것 일려나?

[링크 : http://qt-project.org/doc/qt-5/moc.html]
[링크 : http://qt-project.org/doc/qt-5/metaobjects.htm]

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

QT modules  (0) 2014.11.05
QT Quick UI  (2) 2014.11.05
Qt 기본 encoding 설정  (0) 2014.09.19
qt 시그널 .. emit  (0) 2014.09.19
qt 설치 -_-a  (0) 2014.09.19
Posted by 구차니
Programming/qt2014. 9. 19. 17:57

Tools - Option - Text Editor - Behavior  - File Encodings


기본은 UTF-8인데 인코딩이 맞지 않을 경우 상단에 인코딩 바꾸라는 말이 나온다.
EUC-KR의 경우 windows-949로 설정하면 된다.

'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 시그널 .. emit  (0) 2014.09.19
qt 설치 -_-a  (0) 2014.09.19
Posted by 구차니
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 구차니