Tech
-
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…
-
[Python] NumPy 활용
배열 데이터 계산 NumPy =========================================================== Sample – 1 basic display *.reshape =========================================================== import numpy as np list1 = [0, 1, 2] abc = np.array(list1) print(abc) ========================================================== 데이터 구조화 Pandas ========================================================== Sample – 1…