Tech
-
Practical Python (파이썬) 이야기
파이썬은 프로그래밍 언어이다. 귀도 반 로섬 (Guido Van Rossum)님이 개발한 인터프린터 언어이다. 프로그래밍교육, 기업실무, 과학기술개발 등 다양한 장소에서 자동화 업무등에 활용되고 있어, 반드시 배워야 하는 언어이다.
-
Linux – Bash Reference Manual
GNU Free Documentation LicenseVersion 1.3, 3 November 2008Copyrightc 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc.http://fsf.org/Everyone is permitted to copy and distribute verbatim copiesof this license document, but changing it is not…
-
나의 바코드 Barcode, 1분내 만들어보자
1분으로 바코드를 이해하고 나만의 코드를 만들어 보자(연결<go>) 바코드가 뭐지?
-
나의 QR Code, 1분내 만들어보자
1분으로 QR이해하고 나만의 코드를 만들어보자 (연결<go>) QR가 뭐지?
-
Using wp-config.php File or functions.php File to change New URL,
Using wp-config.php File or functions.php File Way 1. Change WordPress Site URLs Using wp-config.php File If you installed your wordpress such as : /var/www/html/wordpress/* EDIT : sudo vi /var/www/html/wordpress/wp-config.php Next, add the following code…
-
[Python] CSV/XLS 파일 활용
================================================ Sample – 1 csv 파일 읽고 표시 pip install xlrd pip install openpyxl ================================================ import pandas as pd folder1 = ‘/data/’ xls_file1 = folder1 + ‘usa1.xlsx’ csv_file1 = folder1 + ‘usa1.csv’ df…