일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- MSSQL
- Serial
- 자본주의
- sql developer
- rs422
- 크롤링
- 티스토리 초대장
- M2M
- 딥러닝
- matplot
- tensorflow
- 텐서플로우
- c#
- 파이썬
- 장고
- windows10
- rs485
- Visual Studio Code
- MSSQL PYTHON
- pymssql
- oracle
- scrapy
- MX Component
- MEAN Stack
- django
- PYTHON MSSQL
- vscode
- 오라클
- Python
- 윈도우10
- Today
- Total
목록분류 전체보기 (669)
안까먹을라고 쓰는 블로그
일반적으로는 Trim() 이나 Replace(" ", "")를 사용하면, 공백이 제거되나, 공백이 제거가 안되어.. 아래으 방법으로 해결! string.Concat(sTemp.Where(c => !char.IsWhiteSpace(c))) sTemp = "((15 - NowTemp) * 0.00106) + 1 "; // 공백 제거가 안됨....?? sTemp = sTemp.Trim(); // 결과 값 : ((15 - NowTemp) * 0.00106) + 1 sTemp = sTemp.Replace(" ", ""); // 결과 값 : ((15 - NowTemp) * 0.00106) + 1 // 공백 제거 성공!! sTemp = string.Concat(sTemp.Where(c => !char.IsWhiteS..
https://www.flightradar24.com/ Live Flight Tracker - Real-Time Flight Tracker Map | Flightradar24 The world’s most popular flight tracker. Track planes in real-time on our flight tracker map and get up-to-date flight status & airport information. www.flightradar24.com

AZURE (마이크로소프트) https://azure.microsoft.com/ko-kr/pricing/details/virtual-machines/windows/ 가격 - Windows 가상 머신 | Microsoft Azure 지금 Windows 가상 머신을 구입하고 사용한 만큼만 지불하세요. 가격 옵션을 비교하고 비즈니스에 가장 적합한 계획을 선택하세요. azure.microsoft.com AWS (아마존) https://aws.amazon.com/ko/lightsail/pricing/ 요금 뭄바이 및 시드니 리전의 플랜에서 제공하는 데이터 전송 허용량은 다른 리전보다 적습니다. 월별 요금 3.50 USD 5 USD 10 USD 20 USD 40 USD 80 USD 160 USD 데이터 전송 0.5..
https://www.4winkey.com/bypass-windows-7-password.html How to bypass Windows 7 password When it is forgotten Top 3 Methods to Bypass Windows 7 Login Password and Admin Password Login password on Windows 7 could be Local account password and Administrator account password. So, how to bypass Windows 7 login screen without password? Is it complicated? In this post, www.4winkey.com

https://docs.djangoproject.com/en/2.1/intro/tutorial01/ Writing your first Django app, part 1 | Django documentation | Django Django The web framework for perfectionists with deadlines. Overview Download Documentation News Community Code Issues About ♥ Donate docs.djangoproject.com 장고 버전 확인하기 python -m django --version 장고 프로젝트 만들기 django-admin startproject mysite 더보기 외부 mysite - 프로젝트의 컨테이너 입니다. ..
http://cyber.kosmes.or.kr/cyber_new/index_new.jsp 중소벤처기업연수원 이러닝연수 cyber.kosmes.or.kr 01차시. Getting Start Python 1. 파이썬 언어의 탄생 - 1991년 "Monty Python's Flying Circus" 라는 TV프로그램의 이름을 따서 만들어진 고급 프로그램 언어 - 1980년대 말 고안되어 1989년 12월 구현하기 시작함. 특징 1. 비영리의 파이썬 소프트웨어 재단이 관리하는 개방형, 공동체 기반 개발 모델을 가짐. 2. 고급 프로그래밍 언어 3. 플랫폼이 독립적이며, 소스코드를 중간 언어로 변환 후 바로 실행하는 인터프리터 4. 객체지향적이며, 실행시간에 자료형을 검사하는 동적타이핑(Dynamically Ty..

장고 데이터베이스 설정 https://pypi.org/project/django-pyodbc-azure/? 1. 드라이버 설치 pip install django-pyodbc-azure 2. settings.py의 DATABASES 항목수정 DATABASES = { 'default': { #'ENGINE': 'django.db.backends.sqlite3', #'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), 'ENGINE' : 'sql_server.pyodbc', 'NAME' : 'test', 'USER' : 'sa', 'PASSWORD' : '1111', 'HOST' : '192.168.0.53', 'PORT' : '1433', 'OPTIONS' : { 'driver'..

https://docs.djangoproject.com/en/2.1/ref/django-admin/#django-admin-runserver django-admin and manage.py | Django documentation | Django Django The web framework for perfectionists with deadlines. Overview Download Documentation News Community Code Issues About ♥ Donate docs.djangoproject.com runserver 로 아래와 같이 IP정보도 명기하여 실행. python manage.py runserver 192.168.0.53:5500 ※ 장고 서버 접속 시, 에러발생 setti..

ZOOM - 현재 코로나 사태로 미국, 유럽에서 많이 급상승 중인 화상회의솔루션 - 최대 100명의 참가자가 40분제한 회의 기능은 무료로 사용가능하다. - 사용법이 너무나 간단하다. 회의초대자는 회원가입을 해야하지만, 초대받는사람은 회원원가입을 하지않아도, 초대코드와 비밀번호만 알면 회의에 참석가능하다. https://zoom.us/pricing Video Conferencing, Web Conferencing, Webinars, Screen Sharing Zoom is the leader in modern enterprise video communications, with an easy, reliable cloud platform for video and audio conferencing, chat,..

https://code.visualstudio.com/docs/python/tutorial-django Python and Django tutorial in Visual Studio Code Python Django tutorial demonstrating IntelliSense, code navigation, and debugging for both code and templates in Visual Studio Code, the best Python IDE. code.visualstudio.com 파이썬 설치 https://www.python.org/downloads/windows/ Python Releases for Windows The official home of the Python Progra..