emotional developer 썸네일형 리스트형 httpclient 를 이용한 테스트 중,,,,,, DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> 400 Bad Request Bad Request Your browser sent a request that this server could not understand. Apache/2.2.16 (Debian) Server at pvs.ifi.uni-heidelberg.de Port 80 http://stackoverflow.com/questions/10268296/http-client-connection-in-java 이런 에러를 만나게 되면.method 타입을 확인해야 한다.파라미터를 method 타입에 따라 보내야 문제가 없다.......... 더보기 MS SQL 여러 디비에 변경 쿼리 실행 TSQL. 여러디비를 대상으로 동일한 쿼리를 해야 하는 경우.@exesql 에 DML, DDL 을 넣고. 적당히 DB 이름을 재정의 -> EXECUTE ('use BBS' + @cnt2 + '; ' + @exesql); 한다.지금은 번호가 1번부터 16번이 붙는 DB를 대상으로 쿼리를 실행한다. DECLARE @exesql varchar(8000)DECLARE @cnt2 INTDECLARE @maxbbsno INT /* 실행 변경 쿼리*/SET @exesql = 'alter table blabla add no int' SET @cnt2 = 1SET @maxbbsno = 16WHILE @cnt2 더보기 python list 함수 append vs extend https://docs.python.org/2/tutorial/datastructures.htmllist.append(x)Add an item to the end of the list; equivalent to a[len(a):] = [x].list.extend(L)Extend the list by appending all the items in the given list; equivalent to a[len(a):] = L. append 는 기존 list 에 추가할 list 자체가 추가 되는 형태. extend 는 기존 list 에 추가할 list 요소들이 기존 list 의 요소로 추가 되는 형태. 예제 코드)http://stackoverflow.com/questions/252703/python-app.. 더보기 PyDev 가 이클립스에서 보이지 않는 경우. http://pydev.sourceforge.net/download.htmlPyDev does not appear after install!Well, the main issue at this time is that PyDev requires Java 7 in order to run. So, if you don't want to support PyDev by going the LiClipse route (which is mostly a PyDev standalone plus some goodies), you may have to go through some loops to make sure that you're actually using Java 7 to run Eclipse/PyDev (as explai.. 더보기 python. 소수 출력. def checkNumber(inputNumber):finded = 0for item in range(2, inputNumber):if inputNumber % item == 0:finded = 1break if not finded :print("prime number: " + str(inputNumber)) for testNumber in range(1, 100):checkNumber(testNumber) 간단히 만들어 본 소수 출력 코드.너무 날림이네; ㅎ; 더보기 redis 모니터링툴. 개인적으로 redis 모니터를 할 수 있는 오픈프로젝트를 알아 보았는데.아래 두개가 개인적으로 맘에 들었다. https://github.com/steelThread/redmonhttps://github.com/junegunn/redis-stat 둘다 ruby 기반이라서, 약간 낮선 느낌이었는데.설치 또한 쉽지는 않았다. cent os 버전이 낮은 바람에 완전 개삽질을 했는데.두고 두고, 기억 날듯 하다. 아무튼. 둘다 괜찮은 툴인데모니터링용으로는 redmon 이 좀더 괜찮은 듯 하다.CLI 도 지원하고. UI도 깔끔하다. 설치나 메뉴얼은 각 git 프로젝트의 설명을 따라만 하면 문제 없다.물론. 설치 할 서버의 환경도 중요하겠지만... 추가. # redmon 설치환경 준비 참고https://www.dig.. 더보기 proxy 방식 이해 재성아저씨 포스팅 JDK Dynamic Proxy와 CGLIB Proxy에 대한 이해http://wiki.javajigi.net/pages/viewpage.action?pageId=1065 더보기 zookeeper web ui tool - zk-web 저장소 경로https://github.com/qiuxiafei/zk-web 기본 제공 되는 zkCli 로 관리/동작제어가 가능하지만.뚜렸한 view 가 보이지 않는 복잡한 tree 라면, 이야기가 다르다. 이런 경우는, UI 형태를 가진 tool 의 사용이 능률적이고 효율적이다. 이것저것 공개 된 것을 찾다가 그 중 가장 설치가 잘 되고, 간편한 것 같다라는 생각이 드는 오픈소스다. 설치는 github 에서 설명한 대로 차근히 하면 된다.아 일단, lein(클로저) 설치 부터. http://leiningen.org/#install 에서 스크립트 다운 받고 하거나yum 패키지매니저에서 install 하거나.. UsageTo use zk-web, you need leiningen and git current.. 더보기 이전 1 ··· 8 9 10 11 12 13 14 ··· 24 다음