목록Tips (Utility, Computer Language, and etc.) (201)
감동, 마음이 움직이는 것
[Ref] https://stackoverflow.com/questions/30216573/reading-specific-columns-from-a-text-file-in-python import csv with open('file.txt') as inf: row_data = csv.reader(inf, delimiter=" ") #delimiter에 구분자를 넣을것 이 경우는 스페이스가 구분자임. col_data = zip(*row_data) More detailed explanation is available at the reference.
Note: List의 모든 elements가 string일때만 사용 가능하다.res = []res.append(["a", "123", "bb"])ofp.write("%s\n" % " ".join(res))
[Ref] https://mathematica.stackexchange.com/questions/60272/how-do-i-change-axes-scaleFactor = 3Plot[3 Sin[2 x], {x, 0, 7}, ScalingFunctions -> {factor*# &, factor*# &}]
[Ref] https://tex.stackexchange.com/questions/64176/derivative-at-a-point긴 bar를 사용하고 싶을 땐 \bigg라는 옵션? 명령어?를 사용해 줘야 한다. 어떤 패키지를 쓰느냐에 따라 \Big \big \Bigg \bigg 중 하나인 듯.나는 \big는 안되고 \bigg가 되더라. P_{ext} (t) &= -\int^{\infty}_0 \frac{\partial c(x,t)}{\partial t}dx = D \frac{\partial c(x,t)}{\partial x}\bigg |_{x=0},
[ref] https://stackoverflow.com/questions/10834037/gnuplot-adjust-size-of-key-legend set key spacing #
[1] My domains의 DNS Management로 이동, A @ 뒤의 value값에 연결할 사이트IP주소를 써준다.그러면 내가 산 도메인으로 접속을 시도하면 지정해준 IP로 연결 시켜준다. 그런데 해당 IP에 여러 홈페이지를 운영하고 있는 경우, 내가 연결하려는 홈페이지 주소에 해당하는 폴더로 연결을 시켜줄 수 있도록 aphache2설정 파일을 바꿔줘야 한다.[2] 이 설정 파일은 /etc/apache2/sites-enabled/폴더에 있다. (혹은 만들어야 한다.)ServerAdmin webmaster@localhostServerName www.domainServerAlias domain #DocumentRoot /var/wwwDocumentRoot /home/www/homepage/hjpark..
출처 [https://math.stackexchange.com/questions/114260/what-is-the-right-symbol-for-the-max-like-pi-is-for-product][https://en.wikipedia.org/wiki/Arg_max] max_{x\in\mathcal{R}} f(x): maximum value of f(x) when x is real numberargmax_{x\in\mathcal{R}} f(x): x which gives manimum f(x)
[ref] https://tex.stackexchange.com/questions/172094/latexdiff-doesnt-mark-changes-in-bibliography-bibtex그냥 tex 파일에 써져 있는걸 비교하는 경우 citation바뀐 게 적용이 안된다.이런 경우 이전파일과 현재파일의 bbl파일을 만들고 그 bbl파일의 diff.bbl파일을 만들어서 사용해야 한다.즉,latexdiff-so previous.bbl current.bbl > diff.bbl로 ddl파일을 따로 만들어 사용.#bibtex #latexdiff #bbl #citation
https://stackoverflow.com/questions/41144654/git-error-rpc-failed-http-413-curl-22-the-requested-url-returned-error-413-rehttps://github.com/gitblit/gitblit/issues/461https://stackoverflow.com/questions/7489813/github-push-error-rpc-failed-result-22-http-code-413 서버로 업로드 하려는 용량이 커서 생기는 에러인데 디폴트로 지정되는 세팅의 문제이다.뭘로 정확히 고쳤는지는 모르겠지만 내가 시도 했던 것들을 써두겠다. 일단 git에서 upload할 수 있는 용량을 올렸다. [1] 커멘드에서 다음의 명령어를..