일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- next.js tailwind css
- Android
- mysql 재설치
- mysql 삭제
- Docker
- mysql purge
- mysql error
- 리눅스
- mysql 재설치 명령어
- mysql
- react tailwind css
- PHP
- react 기초
- 도커
- 리액트 tailwind css
- 안드로이드
- Docker ubuntu
- 리액트 문법
- next.js tailwindcss
- javascript
- Python
- react
- 리액트
- react tailwindcss
- react typescript
- 리액트 tailwindcss
- mysql uninstall
- mysql fix install
- mysql broken install
- next.js css framework
- Today
- Total
목록분류 전체보기 (35)
Developer_hong

$ apt-get install lsb-release $ apt-get install wget $ apt-get install curl $ apt-get install gnupg2 $ wget https://repo.percona.com/apt/percona-release_latest.$(lsb_release -sc)_all.deb $ dpkg -i percona-release_latest.$(lsb_release -sc)_all.deb $ apt-get update $ apt-cache search percona $ apt-get install percona-xtradb-cluster-server-5.7

[도커 저장소 위치] $ docker info | grep Root Docker Root Dir: /var/lib/docker [도커 서비스 저장소 위치 변경] $ service docker status * docker.service - Docker Application Container Engine Loaded: loaded (/lib/systemd/system/docker.service; enabled; vendor preset: enabled) -> 실행 파일 위치가 /lib/systemd/system/docker.service 라는 것을 확인 도커 경로 변경은 $ dockerd --help를 통해서 --data-root 를 통해 변경 가능하다는 것을 알수있다 ... --data-root strin..
# FireFox from selenium import webdriver from selenium.webdriver.firefox.options import Options from selenium.webdriver.firefox.firefox_profile import FirefoxProfile ff_driver = None # Setting ff_profile ff_profile = webdriver.FirefoxProfile() ff_profile.set_preference("general.useragent.override", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61...
파이썬 맥 터미널 해당 파이썬 파일 있는 디렉토리에서 실행 가능 ex) Directory: /Users/Work/work_1.py cd /Users/Work/ python3 work_1.py 맥 터미널 파이썬 실행 -> python3 -> print('Print_Test') [ 결과 : Print_Test ] exit() 입력하여 종료 모듈 설치 ex) Selenium 모듈이 필요하다면 pip3 install selenium 모듈이 잘 설치됐는지 확인 -> python3 -> from selenium import webdriver import 가 정상적으로 완료 된다는 것은 모듈 설치가 잘 되었다는 의미
오늘 파이썬 언어 습득을 시작했다 파이썬 코딩을 위한 IDE를 설치한다 * 디렉토리 & 인터프리터 세팅은 MAC OS 기준 pycharm 설치 : 커뮤니티 무료 버전 https://www.jetbrains.com/ko-kr/pycharm/download/#section=mac 다운로드 PyCharm: JetBrains가 만든 전문 개발자용 Python IDE 최신 버전 다운로드: PyCharm (Windows, macOS, Linux) www.jetbrains.com 1. 설치 완료 2. 프로잭트 생성 또는 Import 3.Pycharm - 설정(Preference) - Project:(project_name) - Project Interpreter Pycharm에서 인터프리터를 설정해준다 인터프리터를 ..

REST의 정의 “Representational State Transfer”의 약자 자원을 이름(자원의 표현)으로 구분하여 해당 자원의 상태(정보)를 주고 받는 모든 것을 의미한다. REST의 구체적인 개념 HTTP URI(Uniform Resource Identifier)를 통해 자원(Resource)을 명시하고, HTTP Method(POST, GET, PUT, DELETE)를 통해 해당 자원에 대한 CRUD Operation을 적용하는 것을 의미한다. REST API란 API(Application Programming Interface)란 데이터와 기능의 집합을 제공하여 컴퓨터 프로그램간 상호작용을 촉진하며, 서로 정보를 교환가능 하도록 하는 것 REST API의 정의 REST 기반으로 서비스 AP..
안드로이드 시스템에서 사진첩(갤러리)를 새로고침하는 방법은 대표적으로 2가지가 있다. 1. BroadCast를 이용하는 방법 2. MediaScannerConnection를 이용하는 방법 저는 2번째 MediaScannerConnection 방법을 추천합니다. 3. MediaScanner를 이용하는 방법 sendBroadcast(new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE, Uri.fromFile(targetImageFile))); 4. MediaScanner를 이용하는 방법 ex) 레이아웃 이미지로 저장 + 미디어 스캔 : (https://hongdroid.tistory.com/6) [ 1-1. BroadCast (ACTION_MEDIA_MOUNTED) ] s..
기프티콘 저장과같이 선택한 영역 또는 view 부분만 캡쳐하여 사진첩에 저장하고 싶은 경우가 있다면 다음과같은 코드를 사용하면 된다. /* Main_Activity.java */ public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); LinearLayout capture_target_Layout = (LinearLayout)findViewById(R.id.capture_target_Layout); //캡쳐할 영역의 레이..