DonzBox.com(599)
-
한글검색 정규식
┌──────────────────────┒ │한글검색용 정규식 ┕━━━━━━━━━━━━━━━━━━━━━━┛ [^"\u0080-\uffff;\\n]*[\u0080-\uffff][^";\\n]*
2019.09.09 -
java hashtag using
public static String hashtagRegex = "^#\\w+|\\s#\\w+"; public static Pattern hashtagPattern = Pattern.compile(hashtagRegex); public static String urlRegex = "http+://[\\S]+|https+://[\\S]+"; public static Pattern urlPattern = Pattern.compile(urlRegex); public static String mentionRegex = "^@\\w+|\\s@\\w+"; public static Pattern mentionPattern = Pattern.compile(mentionRegex); public static String..
2019.07.31 -
지금 이클립스는 UTF-8 시대
이클립스 기본설정을 UTF-8 로 하는법 이클립스 모든 신규 프로젝트 출처: https://gangzzang.tistory.com/entry/이클립스-개발환경-UTF8-인코딩-설정 한 프로젝트만 출처: https://gangzzang.tistory.com/entry/이클립스Eclipse-한-프로젝트만-UTF8-설정?category=526617
2019.06.27 -
redis 문법
츄르처 : https://bstar36.tistory.com/347 [Redis] 데이터 타입 1. 데이터 처리 명령어 1.1 문자열 데이터 처리 저장 가능한 문자열의 크기는 최대 512MB 이다. set, get 하나의 문자열을 저장하고 조회 한다. mset, mget 여러 개의 문자열을 저장하고 조회 한다. (Multi를 뜻하.. bstar36.tistory.com 1. 데이터 처리 명령어 1.1 문자열 데이터 처리 1) set, get 하나의 문자열을 저장하고 조회 한다. (~512M) 2) mset, mget 여러 개의 문자열을 저장하고 조회 한다. (m = multi), (z = set , h = hash) 3) 없는 데이터 조회 시에는 nil 리턴 4) 기존에 있는 key값을 입력하면 기존 값..
2019.04.23 -
이클립스 톰켓에서 Server ____ failed to start.
multi gragleをsingleで割合後、tomcat起動ができなくなりました。 Startメニュー押下! そのローグ 4월 10, 2019 10:19:27 오전 org.apache.tomcat.util.digester.SetPropertiesRule begin 경고: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.jee.server:trading.DonzBox.com' did not find a matching property. 4월 10, 2019 10:19:27 오전 org.apache.catalina.startup.VersionLoggerListener log 정보: S..
2019.04.10 -
중국에서 facebook 하고 싶을때
중국에서 facebook 하고 싶을때, 한국의 윈도우 컴퓨터에 아래와 같이 설치하면 됨(참고: https://github.com/shadowsocks/shadowsocks/wiki/Install-Shadowsocks-Server-on-Windows) 재료일람 파일명 다운로드 url Win64OpenSSL-1_1_1b.msi https://slproweb.com/products/Win32OpenSSL.html (Win64 OpenSSL v1.1.1b) python-2.7.16.amd64.msi https://www.python.org/downloads/windows (Download Windows x86-64 MSI installer) Shadowsocks.exe https://github.com/shad..
2019.03.06