일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- tensorflow
- PyQt
- MS-SQL
- MySQL
- Linux
- 맛집
- urllib
- node.js
- sqlite
- swift
- 함수
- ubuntu
- flutter
- 다이어트
- 날짜
- Excel
- PyQt5
- javascript
- 리눅스
- 라즈베리파이
- Unity
- IOS
- port
- python
- ASP
- 유니티
- PER
- mssql
- GIT
- pandas
목록랭귀지 (524)
아미(아름다운미소)
프로그램용으로 환경설정 파일을 저장하거나 열람할 수 있으면 편리합니다. import os.path print os.path.expanduser('~') 이 방법은 윈도우즈에서도 작동함 합니다. 멋지죠! (사용자의 "Document and settings" 폴더를 가리키거나, 또는 사용자가 가지고 있다면 네트워크 폴더를 가리키기도 합니다.)
- 케쉬설정 Sub Expires() Response.Buffer = True Response.Expires = 0 Response.AddHeader "Pragma", "no-cache" Response.AddHeader "cache-control", "no-store" End Sub - 트랜잭션 처리에 따른 스크립트처리 Sub Transaction_(Error_Count,Trans_script) If Error_Count = 0 Then DB.CommitTrans Response.Write "" Else DB.RollBackTrans Response.Write "" Call DBClose() Response.End End If End Sub - 필수 입력값 인지 체크 Function CheckEssen..
- 숫자 확인후 3자리마다 , 해주고 숫자가 아니면 문자 그대로 보내줌 Function ChkNumericToValue(CheckValue) If ISNumeric(CheckValue) Then ChkNumericToValue = FormatNumber(CheckValue,0) Else ChkNumericToValue = CheckValue End If End Function - Comma 뺀 숫자만 추출 Function ChkToMComma(CheckValue) dim CheckMomma If Len(CheckValue) > 0 Then CheckValue = replace(CheckValue, ",","") ChkToMComma = CheckValue Else ChkToMComma = "" End I..
- 문자열 바이트길이 가져오기 '-------------------------------------------------------- ' Function Name : GetLength ' Description : 문자열 바이트길이 가져오기 ' Example : GetLength("문자열") ' output : 6 ' -------------------------------------------------------- Function GetLength(strText) Dim nByteLen, nIdx, nLenIdx, nTextLenth If IsNull(strText) Then GetLength = 0 Exit Function End If nByteLen = 0 nTextLenth = Len(strTex..
- 윤달 체크 function get_month_lastday(year, mon) dim month_day(12) month_day(1) = 31 month_day(2) = 28 month_day(3) = 31 month_day(4) = 30 month_day(5) = 31 month_day(6) = 30 month_day(7) = 31 month_day(8) = 31 month_day(9) = 30 month_day(10) = 31 month_day(11) = 30 month_day(12) = 31 if mon = 2 and isdate(year & "-" & mon & "29") then get_month_lastday = 29 else get_month_lastday = month_day(mon) ..
Python에는 requests라는 유명한 http request 라이브러리가 있습니다. 설치하기(pip로 간단하게 설치가 가능합니다.) pip install requests Requests는 정말 좋은 라이브러리이지만, html을 ‘의미있는’, 즉 Python이 이해하는 객체 구조로 만들어주지는 못합니다. 위에서 req.text는 python의 문자열(str)객체를 반환할 뿐이기 때문에 정보를 추출하기가 어렵습니다. 따라서 BeautifulSoup을 이용해야 합니다. 이 BeautifulSoup은 html 코드를 Python이 이해하는 객체 구조로 변환하는 Parsing을 맡고 있고, 이 라이브러리를 이용해 우리는 제대로 된 ‘의미있는’ 정보를 추출해 낼 수 있습니다. 설치하기 BeautifulSoup..
나는 한 프로젝트에서 거대한 XLS 파일을 읽어야 했습니다.물론 COM 호출을 통하여 모든 셀 내용에 접근할 수 있지만, 너무 느린 단점이 있습니다. 간단한 트릭이 있어요: 그냥 엑셀에게 XLS 파일을 열어 그것을 CSV로 저장해 달라고 요구한 다음, 파이썬의 CSV 모듈을 사용하여 그 파일을 읽어 들이면 됩니다! 이 방법이 방대한 XLS 데이터 파일을 읽는 가장 빠른 방법입니다. import os import win32com.client filename = 'myfile.xls' filepath = os.path.abspath(filename) # 언제나 확실하게 절대 경로를 사용하자! # 엑셀을 시작하고 XLS 파일을 연다: excel = win32com.client.Dispatch('Excel.Ap..
# encoding: utf-8 import codecs from collections import deque import urllib2, urlparse import socket from BeautifulSoup import BeautifulSoup def get_links(uri, startswith=""): """Returns list of referenced URIs (without duplicates) found in the document returned for the input URI""" results = set() try: page = urllib2.urlopen(uri) soup = BeautifulSoup(page) for link in soup.findAll('a'): # try: ..
datepicker를 사용하기 위해서는 기본적으로 다음의 3가지 File을 import해야 합니다. datepicker의 가장 기본적인 코드를 살펴보면 다음과 같습니다. $(function() { $( "#testDatepicker" ).datepicker({ dateFormat: 'yy-mm-dd', prevText: '이전 달', nextText: '다음 달', monthNames: ['1월','2월','3월','4월','5월','6월','7월','8월','9월','10월','11월','12월'], monthNamesShort: ['1월','2월','3월','4월','5월','6월','7월','8월','9월','10월','11월','12월'], dayNames: ['일','월','화','수','목',..
jQuery 펼침메뉴 제이쿼리 인클루드 스타일 .menu a{cursor:pointer;} .menu .hide{display:none;} 스크립트 $(document).ready(function(){ $(".menu>a").click(function(){ var submenu = $(this).next("ul"); // submenu 가 화면상에 보일때는 위로 보드랍게 접고 아니면 아래로 보드랍게 펼치기 if( submenu.is(":visible") ){ submenu.slideUp(); }else{ submenu.slideDown(); } }).mouseover(function(){ $(this).next("ul").slideDown(); }); //$(".menu:eq(0)>a").click();..