- 하드 마이그레이션
- javascript 유효성체크
- 타임피커
- ASP.Net Core 404
- asp.net core Select
- 말줄임표시
- javascript 바코드스캔
- 강제이동
- asp.net Select
- Mac Oracle
- 바코드 생성하기
- javascript 바코드 생성
- 파일업로드 체크
- django 엑셀불러오기
- asp.net dropdownlist
- 맥 오라클설치
- javascript redirection
- 파일업로드 유효성체크
- ViewData
- jquery 바코드생성
- ViewBag
- php 캐쉬제거
- 404에러페이지
- XSS방어
- 바코드 스캔하기
- TempData
- SSD 복사
- jquery 바코드
- 하드 윈도우 복사
- XSS PHP
목록분류 전체보기 (757)
웹개발자의 기지개
heroes = [] type(heroes) ----- list heroes.append("아이언맨") print(heroes) ---- ['아이언맨'] heroes.append("닥터스트레인지") print(heroes) ---- ['아이언맨','닥터스트레인지'] print(heroes[0]) ---- 아이언맨 letters = ['a','b','c','d','e','f'] print(letters) ----- ['a', 'b', 'c', 'd', 'e', 'f'] print(letters[2:5]) ----- ['c', 'd', 'e'] print(letters[3:]) --- ['d', 'e', 'f'] print(letters[:3]) ---- ['a', 'b', 'c'] heroes[1] = "..
x = 300 + 20 print(x) ----- 320 type(x) ----- int name = "테스트" address = "대구 달서구 장기동" print(name,address) ------ 테스트 대구 달서구 장기동 name = "테스트" address = "대구 달서구 장기동" add = address + ":" + name print(add) ----- 대구 달서구 장기동:테스트 type(add) ----- str name = "테스트" address = "대구 달서구 장기동" add = address + 93 print(add) ------ TypeError Traceback (most recent call last) in 1 name = "테스트" 2 address = "대구 달서구 ..
Anaconda 를 설치하면 파이썬과 기타 라이브러리도 같이 자동 설치된다. https://www.anaconda.com/ The World's Most Popular Data Science Platform | Anaconda Anaconda is the birthplace of Python data science. We are a movement of data scientists, data-driven enterprises, and open source communities. www.anaconda.com https://www.anaconda.com/products/individual Anaconda 설치후 Jupyter Notebook 으로 코딩하면 아주 깔끔하게 파이썬을 즐길 수 있다. Jupyte..
이번에는 Spinner 을 이용하는데, 시도와 구군항목이 각각 Spinner 로 되어 있고, 해당 시도를 클릭하면 그에 따른 구군 내용을 mysql 상에서 자동 읽어 와서 구군 Spinner 가 자동 업데이트 되도록 해보자. [ json형태로 읽을 수 있는 php파일 - json_area2.php ] 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 32 33 34 Colored by Color Scripter cs 위의 php 파일을 실제로 읽어서 json 형태의 내용물을 테스트해보자. http://도메인/json_area2.php?sido=대구 { "area2": [ "전체", "남구", "달서구", ..
ArrayList 형태의 놈은 clear() 메소드로 간단히 리셋이 가능하다. 근데 배열은 직접적인 메소드가 없고, 조금 다른형태로 요소를 삭제하면 된다. 1 2 3 4 String[] array = new String[]{"a", "b", "c"}; List list = new ArrayList(Arrays.asList(array)); list.clear(); // 리셋 array = list.toArray(new String[list.size()]); cs
GoogleMap으로 작업중에 MarkerOptions 로 해당 마커의 세부정보를 담아서 여러개의 마커를 맵상에 띄울 수 있는데 아래의 소스내용을 보면 snippet 부분이 해당 내용이다. (소스는 마커정보 일부분) 1 2 3 4 5 6 LatLng aLatLng = new LatLng(Double.parseDouble(lat),Double.parseDouble(lng)); MarkerOptions markerOptions = new MarkerOptions(); markerOptions.position(aLatLng); markerOptions.title("제목입니다."); markerOptions.snippet("내용입니다.\n다음줄입니다.\n셋째줄입니다."); mMap.addMarker(marker..