Some nice quotes from our professor Charles Severance: “Spam is good. Eggs is spam… Is good.” Constants Are Fixed values such as numbers, letters and strings. String constants use single or double quotes. Note: A “string” is any series of letters, numbers, and other symbols. For example: “This...
Continue reading
October 7, 2016 techsupport
Blog, Tech
Chapter 1 Exercises Exercise 1.1: C) Store information for the long term–even beyond a power cycle. Exercise 1.2: A sequence of Python statements that have been crafted to do something. Exercise 1.3: An interpreter reads the source code and interprets right away, translating one line at a time....
Continue reading
October 7, 2016 techsupport
Blog, Tech
Books and Guides https://wiki.python.org/moin/BeginnersGuide http://www.learnpython.org/ One more place to start with python. http://legacy.python.org/dev/peps/pep-0008/#imports Python convention and style guide http://www.greenteapress.com/thinkpython/ Think Python: How to Think Like a Computer Scientist, is a free Book by Allen B. Downey. It is released under the Creative Commons Attribution-NonCommercial 3.0 Unported License. http://openbookproject.net/thinkcs/...
Continue reading
October 7, 2016 techsupport
Blog, Tech
1. PHPExcel 을 이용해 EXCEL 파일 생성시 줄바꿈 처리 방법. setWrapText 허용 $objPHPExcel->getActiveSheet()->getStyle(“D1”)->getAlignment()->setWrapText(true); 2. 줄바꿈 문자 처리 $lfcr = chr(10); $group_for_excel = str_replace(‘|’,$lfcr,substr($search_info_array[8], 1)); 중요한 건 setWrapText 허용 부분과 php에서 줄 바꿈 처리하여 EXCEL파일 생성시 줄바꿈 문자는 chr(10)을 사용한다는 것.
Continue reading
October 5, 2016 techsupport
Blog, Tech
원문보기 1단계) Modern PHP 입문 – Modern PHP 책 필독 – http://www.hanbit.co.kr/book/look.html?isbn=978-89-6848-225-0 – 이 책은 PHP The Right Way의 저자이며, Slim Framework 개발자인 조시 록하트가 지은 책으로 Modern PHP 입문서로 적극 추천합니다. – 만약 지금 이 책을 안 본다면, 앞으로 수백번의 구글링/질문 후에야 이 책을 읽게 될 것...
Continue reading
October 5, 2016 techsupport
Blog, Tech
원문보기 목차 1 다운로드 2 설치 3 쉘 테스트 4 웹 테스트 (오류) 5 오류 해결 (권한 조정) 6 실행예시 (성공) 7 같이 보기 8 주석 다운로드[편집] http://phpexcel.codeplex.com/ 접속 [Download] 클릭하여 PHPExcel_1.8.0_doc.zip 다운로드(5,284 KB) 설치[편집] 서버의 /usr/share/php/vendor 폴더에 zip파일 업로드[1] [root@zetawiki vendor]# ll PHPExcel_1.8.0_doc.zip -rw-r--r-- 1 root...
Continue reading
October 5, 2016 techsupport
Blog, Tech
http://www.pythonlearn.com/install.php Setting up your PythonLearn Devlopment Environment We have separate pages for each of the commonly used Operating Systems: Setting up the PythonLearn Environment in Microsoft Windows Setting up the PythonLearn Environment on a Macintosh Setting up the PythonLearn Environment on a Raspberry Pi (New) Can’t...
Continue reading
October 4, 2016 techsupport
Blog, Tech
원문보기 2009년에 제가 이 프로그램을 한번 소개해드린 적이 있습니다. 2009/12/07 – [유용한 프로그램] – Macrium Reflect FREE Edition – 시스템 복구 솔루션 그런데 최근에 SSD가 대중화 되면서 기존에 사용하던 윈도우 시스템을 SSD에 그대로 복제해서 사용하려는 분들이 꽤 계시더군요. 저는 개인적으로 새로 윈도우를 설치하고 프로그램을 다시 셋팅하는걸 좋아하지만, 번거롭게...
Continue reading
September 25, 2016 techsupport
Blog, Tech
The text includes a single quote. How do I escape that? I tried using two single quotes, but it threw me some errors. eg. insert into my_table values('hi, my name''s tim.');
Continue reading
September 21, 2016 techsupport
Blog, Tech
Using Identity and Primary Key Constraints The solution turns out to be using two constraint options provided by SQL Server. The first is PRIMARY KEY, which as the name suggests, forces the specified column to behave as a completely unique index for the table, allowing for rapid searching...
Continue reading
September 21, 2016 techsupport
Blog, Tech