iOS 채팅 앱 개발후 리젝 사유 등에 대한 내용

꼬마채팅앱을 개발후 심사요청을 했더니 또 Reject 되어 심사를 통과하지 못했다. 그 이유는 아래와 같다. Your app enables the display of user-generated content but does not have the required precautions in place. Next Steps Please revise your app to implement all of the following precautions: – Require that users agree to terms (EULA) and these terms […]

맥북 sleep에서 돌아오지 않을 경우 해결 방법 [임시방편]

가끔식 맥북이 sleep모드에서 화면이 다시 돌아오지 않을때가 있다. 그런데, 이 현상이 한번 시작되면 잦아진다는게 문제인데, 구글링을 해보니 아래처럼 해주면 증상이 완화되는 것을 찾아냈다. 영원히 주무시고 있는 맥북을 되살리고 싶다면 아래처럼 터미널을 열고 처리해주면 되겟다. Turn off system hibernation Since hibernation mode’s only real benefit is to allow you to resume from sleep in the face […]

Tomcat7 우분투 세팅 과정 정리

우분투에서 로컬 세팅 과정 @@ 톰캣 서버를 부팅 대몬 리스트에서 제외한다. sudo update-rc.d tomcat7 disable default @@ 적절하게 디렉토리를 세팅해 둔다. user1@abab-server:~/public_html$ tree . ├── catalina_base │   └── conf │   ├── Catalina │   │   └── localhost │   │   ├── docs.xml │   │   ├── examples.xml │   │   ├── host-manager.xml │   │   └── manager.xml │   ├── catalina.properties […]

Tomcat 7.0 가상호스트 Virtualhost 설정

tomcat에서 도메인을 기준으로 여러개의 사이트를 운영 즉, 가상호스트를 설정하려면 아래와 같이 하면 된다. <Hostname="localhost" appBase="webapps"unpackWARs="true" autoDeploy="true" xmlValidation="false" xmlNamespaceAware="false"> </Host> <Host name="www.testdomain.com" appBase="new_webapps" unpackWARs="true" autoDeploy="true" xmlValidation="false" xmlNamespaceAware="false"> </Host> 문제가 www 없이 도메인을 입력하고 들어가면 not found가 되거나 localhost로 연결이 된다. 그냥 apache라면 alias를 지정해주면 되었는데… xml 형태라 어떻게 해줘야하나 몰라서 host를 동일하게 추가해보기도 했고 name에 와일드카드(*)를 […]

Bash awk관련 내용 메모

# grep 문 사용하기 cat KR-160315.csv | awk -F"," 'NR > 1 {printf "%-5s|%-10s|%-30s\t|%-5s|%-15s|%-5s|%s\n", $1,$2,$4,$5,$6,$8,$10 | "grep 00K1" }' | head cat KR-160315.csv | awk -F"," 'NR > 1 {printf "%-5s|%-10s|%-40s|%-5s|%-15s|%-5s|%-s\n", $1,$2,$4,$5,$6,$8,$10}' | head   &를 쓰면 매칭된 스트링이 대치된다. user1@ubuntu-desktop:~/Downloads$ echo "candidate a b c " | awk '{ sub(/candidate/, "& and his wife"); […]

Linux Descriptor 편집

[참고문서] http://www.tldp.org/LDP/abs/html/io-redirection.html exec 3<> /tmp/foo # open fd 3. echo a >&3 # write to it exec 3>&- # close fd 3.   Closing File Descriptors n<&- Close input file descriptor n. 0<&-, <&- Close stdin. n>&- Close output file descriptor n. 1>&-, >&- Close stdout. &> 표준출력, 표준에어를 모두 특정 파일에 모두 출력하라는 의미 […]