진행 전 준비 Django 절차서(1)에서 진행한 가상환경 활성화 (conda activate 가상환경명) 환경 진입 (cd 작업 폴더 경로) 1. 프로젝트에 App 만들기 django-admin startapp 앱이름 *) 작업 환경에서 위 내용 실행 시 앱이름으로 생성된 폴더 있는지 확인 *) config\settings.py의 INSTALLED_APPS에서 앱이름 추가 2. config\urls.py 파일 수정 from django.contrib import admin from django.urls import include, path urlpatterns = [ path('admin/', admin.site.urls), path('selfapp/', include('selfapp.urls')), ..
함수 생성 console에 값이 찍히는 print와 같은 기능 : DBMS_OUTPUT.PUT_LINE(); CREATE OR REPLACE FUNCTION 함수명( 변수 ) RETURN IS BEGIN RETURN 리턴값; END; PL/SQL 배열(컬렉션) 예시 Associative Array, ****VARRAY, Nested Table CREATE OR REPLACE FUNCTION 함수명( 변수 ) RETURN IS TYPE creatArray IS TABLE OF NUMBER; arr_data creatArray; BEGIN arr_data := creatArray(); RETURN 리턴값; END; FOR문 CREATE OR REPLACE FUNCTION 함수명( 변수 ) RETURN IS ..
Que) — python Beautifulsoup을 활용하여 웹크롤링 — style 속성 값을 가져오려고 한다. — style 속성 값을 딕셔너리로 변환한 후 key값이 ‘left’인 value 값을 추출 Final Code from bs4 import BeautifulSoup # 예시 HTML 코드 html = """ Hello World """ # HTML 파싱 soup = BeautifulSoup(html, 'html.parser') # style 속성값 가져오기 style = soup.find('div')['style'] # style 속성값을 딕셔너리 형태로 변환 keys = [] values = [] style_split = style.split("; ") print(style_split) f..
* 펌웨어가 깨졌을 때 공장 초기화 과정도 수행되지 않을 경우 아래와 같은 방법으로 복구할 수 있습니다 1. 펌웨어 다운로드 기종에 맞는 버전으로 다운로드를 진행하여야 합니다! https://samfw.com Samsung Firmware Download - Lastest official firmware update Samsung Firmware Download ⭐ Official and fast update ⭐ Lastest and old version ⭐ Max speed and free download ⭐ Best Samsung Galaxy website samfw.com 2. odin 설치 https://www.osamsung.com/kr/ 최신 삼성 오딘 무료 다운로드 | Latest Samsu..
설치에 필요한 준비 자료 다운로드odinhttps://www.osamsung.com/kr/ 최신 삼성 오딘 무료 다운로드 | Latest Samsung Odin Free Download삼성 오딘 공식 다운로드 버전: 3.14 3.131 3.12 - 갤럭시 롬 변경 툴, Odin 3.131 3.12 Download : Samsung Mobile Odin Firmware Downloader Tool, 펌웨어 다운로드, 커스텀롬, 커롬, xda, samfirm, 삼펌www.osamsung.comtwrphttps://twrp.me/Devices/ Devices twrp.meadbhttps://developer.android.com/studio/releases/platform-tools?hl=ko SDK 플랫폼 ..
PC 상에 Drozer 설치 1. 윈도우 보안 해제 윈도우 보안 해제 후 다운로드 설정 - 업데이트 및 보안 - 바이러스 및 위협 방지 2. Drozer .msi 설치 https://github.com/WithSecureLabs/drozer/releases/tag/2.4.4 Release 2.4.4 · WithSecureLabs/drozer [Build Process] AppVeyor updated to deploy Windows installer [Build Process] Fixed versioning of whl, deb and rpm packages [Bug Fixes] Several bug fixes github.com 모바일 상에 Drozer 설치 1. Drozer apk 설치 https://..