일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- file open
- 월세
- 청량리역한양수자인192
- lua interpreter
- #부동산전자거래 #부동산전자계약 #부동산계약 #부동산전자계약방법 #부동산전자계약하는법 #부동산계약방법 #부동산중개수수료 #부동산중개수수료아끼기 #부동산복비아끼기
- 엑스퍼트생일축하해
- TCP/IP
- 수도권주택공급
- 국토교통부
- file read
- FILE TRANSFER
- lua for windows
- 중소규모택지
- QT TCP
- lua setup
- 등록임대주택
- Lua
- meta table
- QTcpServer
- 엑스퍼트2주년
- C API
- 티몬삼겹살데이
- #신혼부부 #결혼준비 #신혼부부희망타운신혼부부특별공급
- 프리미어 영상변환
- file write
- 찾다죽는줄
- object
- lua install
- C++ API
- 프리미어 영상저장
- Today
- Total
목록1. 프로그래밍 (95)
Value Creator의 IT(프로그래밍 / 전자제품)
0. 전문 아래의 3가지 정보 모두 알고 있어야 원활하게 수행 가능하다. 하지만 정보가 흩어져 있어서 어렵다. 따라하기만 하면 되도록 순서를 잘 정리하였다. ...더보기 1) 아래 첨부파일이 제일 잘 정리되어 있으나 include, library 넣는 방법이 빠져있다. ...더보기 2) Lua 스크립트를 C언어에서 불러오는 소스코드 http://lua-users.org/wiki/SimpleLuaApiExample lua-users wiki: Simple Lua Api Example This is a simple introductory example of how to interface to Lua from C. The C program loads a Lua script file, sets some Lua ..
리눅스(Linux)에서의 파일 압축 개념은 윈도우즈(Windows)에서의 파일 압축 개념에 비해 세분화 되어있다. 윈도우즈에서는 보통 압축을 한다하면, zip 등의 방식으로 선택된 파일이나 폴더들을 묶으면서 동시에 압축(compress)을 하는 것을 의미한다. 반면, 리눅스에서는 파일이나 폴더들을 묶는 것(archive)과 실제로 압축(compress)하는 기능이 나뉘어져있다. 리눅스에서 여러 파일을 한 파일로 묶은 것을 아카이브(archive)라 하며 확장자는 .tar 이다. 일반적으로 tar로 묶인 아카이브를 gunzip을 사용해서 .tar.gz 의 확장자를 가지는 압축 아카이브로 많이 사용한다. 압축 하기 □ 사용법 1 $ tar -cvzf [압축된 파일 이름] [압축할 파일이나 폴더명] eg) 해..
1. File Open [소스코드] --file open -- r : Read only (default) -- w : overwrite or create a new file(덮어쓰기) -- a : Append or create a new file (추가하기) -- r+ : Read & Write existing file -- w+ : Overwrite read or create a file -- a+ : Append read or create file file = io.open("testr2.lua", "w+") file:write("Random String of text\n") file:write("some more text\n") file:seek("set", 0) print(file:read("*a..
--[[1. 주석처리 한 줄 주석(짝대기 2개) -- 여러줄 주석 시작 --[[ 여러줄 주석 끝 --]] num = 42 -- 모든 수는 double 형(최대 52bit) s = 'walternate' -- 파이썬(Python) 같은 바꿀 수 없는 문자열. t = "쌍 따옴표는 문자열(string)" u = [[ 이중 대괄호는 여러 줄 문자열의 시작과 끝을 나타냅니다.]] t = nil -- t를 정의되지 않은 변수로 만듭니다. 루아에는 가비지 컬렉션 기능이 있습니다. -- 블록은 do와 end로 표기됩니다. while num 40 then print('over 40') else..
1. 계산기 소스코드 #ifndef WIDGET_H #define WIDGET_H namespace Ui { class Widget; } class Widget : public QWidget { Q_OBJECT public: explicit Widget(QWidget *parent = 0); ~Widget(); private slots: void on_pushButton_clicked(); void on_pushButton_2_clicked(); void on_pushButton_3_clicked(); void on_pushButton_4_clicked(); void on_pushButton_5_clicked(); void on_pushButton_6_clicked(); void on_pushButton..
1. 아래 그림대로 실행한다.
1. qlineEdit /************** dialog.h****************/ #ifndef DIALOG_H #define DIALOG_H #include #include namespace Ui { class Dialog; } class Dialog : public QDialog { Q_OBJECT public: explicit Dialog(QWidget *parent = 0); ~Dialog(); private slots: void on_pushButton_clicked(); void on_pushButton_2_clicked(); private: Ui::Dialog *ui; QString name; int kor; int eng; int math; int total; int avg..
아몰랑 유튜브에서 보고싶다 ->https://www.youtube.com/watch?v=tHzPBCUi0G8&list=PLumkkj1MBmYs-WArrEkw2R6wO9Agj3FoX 외국 형들의 숨결을 느끼고 싶다 https://wiki.qt.io/Qt_for_Beginners Qt for Beginners - Qt Wiki En Ar Bg De El Es Fa Fi Fr Hi Hu It Ja Kn Ko Ms Nl Pl Pt Ru Sq Th Tr Uk Zh Warning : Be sure to have some knowledge of C++ before starting! Remark : This tutorial series target mainly Qt4. Even if most of these tutor..