2017.08 TIL

프로그래밍/기타 2017. 10. 8. 14:33

2017.08.24
winform vs WPF (WPF가 더 좋다는...)
http://demozip.tistory.com/entry/WinForm%EA%B3%BC-WPF%EC%9D%98-%EC%B0%A8%EC%9D%B4http://alleysark.tistory.com/91 http://hackersstudy.tistory.com/64 http://hoonsbara.tistory.com/83http://celdee.tistory.com/215 http://jooji815.tistory.com/35

not exists remind
http://blog.uphs.co.kr/72

참고 : http://naudhizb.tistory.com/804

파이썬 스케줄러
https://apscheduler.readthedocs.io/en/latest/index.html http://tomining.tistory.com/138

2017.08.25
http://click.pocoo.org : 파이썬 터미널 앱에서 사용할 수 있는 CLI 프래임워크 argparse 는 표준 라이브러리라고 하나 안좋다고 함.

http://urwid.org/ : Console user interface library for Python curses 는 표준 라이브러리라고 하나 안좋다고 함.

python 파일을 exe파일로 변환하기
http://blog.naver.com/PostView.nhn?blogId=neroororo&logNo=30183775300https://stackoverflow.com/questions/41570359/best-method-of-converting-py-to-exe-for-python-3-6http://infocentre.tistory.com/3 http://sh1n2.tistory.com/entry/Python3-%EC%9C%88%EB%8F%84%EC%9A%B0-%EC%8B%A4%ED%96%89%ED%8C%8C%EC%9D%BC-%EB%A7%8C%EB%93%A4%EA%B8%B0 http://tkqlzz.tk/9

http://hashcode.co.kr/questions/336/%EC%99%B8%EB%B6%80-%EB%AA%85%EB%A0%B9%EC%96%B4%EB%A5%BC-%ED%8C%8C%EC%9D%B4%EC%8D%AC%EC%9C%BC%EB%A1%9C-%EC%8B%A4%ED%96%89%ED%95%98%EA%B8%B0

2017.08.28
문자열 병합(concatenation)을 위해서는 + 연산자를 사용하지 말고, StringBuilder나 String.Format()을 사용한다.

2017.08.29
mssql 의 SP에서 임시테이블을 declare 하여 사용할 수 있다는 걸 알았다.
http://sonim1.tistory.com/166 http://lab.cliel.com/entry/SQL-%EC%9E%84%EC%8B%9C-Table%EA%B3%BC-%EB%B3%80%EC%88%98-Table http://firewind.tistory.com/entry/DB-MS-SQL-Procedure%EC%97%90%EC%84%9C-Table%EA%B5%AC%EC%A1%B0%EB%A5%BC-%EC%A0%80%EC%9E%A5%ED%95%98%EB%8A%94-%EB%B0%A9%EB%B2%95

2017.08.30
조인방식 3가지. 기억이 새롭다.
http://sonim1.tistory.com/108

블록체인을 가장 쉽게 설명한 글이라고 한다. http://www.msip.go.kr/webzine/posts.do?postIdx=261

Posted by 빨강토끼
,

티스토리 기반에서 지난 2015년에 openshift (Redhat 제공 Paas 서비스)에 설치형 블로그인 Ghost(https://ghost.org/) 를 직접 설치하여 사용중이였는데.

최근에  v2 -> v3로 바꾸는 도중 내가 이메일을 제때 확인하지 못하여 결국 블로그가 날아갔다. 


v3 에서 새로 블로그를 구축할까 했는데 괘씸하기도하고 (무료이용자라고 무시하나?)

해서 AWS 나 GITHUB 에서 만들려고 하니 귀한 연휴를 소비하는게 아까워(사실 가장 좋은 때 이긴한데...귀찮아...)

그냥 일단 기존에 사용하던 티스토리 기반을 당분간 사용하기로 했다.


약 2년간 썼던 글들이 날아갔다....ㅜㅜ

Posted by 빨강토끼
,

El Capitan 에서 rhc 를 설치하려면 아래와 같은 에러가 납니다.

$ sudo gem install rhc
ERROR:  While executing gem ... (Errno::EPERM)
    Operation not permitted - /usr/bin/rhc


El Capitan 에서는 편집기(nano 나 vi)를 사용해서 ruby가 gem을 통하여 인스톨하는 경로를 바꿔줘야 한다.
$ nano ~/.gemrc 그리고 gem: -n/usr/local/bin을 추가하여 저장한다.

MacBook-Air:~ red$ sudo gem install rhc
===========================================================================

If this is your first time installing the RHC tools, please run 'rhc setup'

===========================================================================
Successfully installed rhc-1.37.1
Parsing documentation for rhc-1.37.1
Installing ri documentation for rhc-1.37.1
1 gem installed

/usr/local/bin/rhc 라는 경로에 rhc가 설치된다.

Posted by 빨강토끼
,