5월, 2021의 게시물 표시
SEO: search engine optimization

듀얼 모니터 사용 후 창이 안 보일 때

듀얼 모니터 사용 후 창이 안 보일 때 듀얼 모니터 사용 후 창이 안 보일 때가 있다. atom을 사용할 때마다 그런다. 단축키로 화면밖의 창을 화면 안으로 옮겨주자 window + 방향키 로 창을 키보드로 옮기거나 아니면 alt + space + m 으로 마우스로 옮긴다.

matplotlib와 함께 사용할 수 있는 seaborn

  matplotlib와 같이 사용가능한 서드파티 패키지 목록은 여기서 확인 가능 https://matplotlib.org/stable/thirdpartypackages/index.html 컬러 팔레트 기능이 마음에 들어서 여기서 seaborn을 사용해 본다 cmd에 pip install seaborn numpy scipy pandas matplotlib 중에 없는 것이 있으면 자동으로 다운받는다. 컬러팔레트 설명 https://medium.com/analytics-vidhya/deep-dive-into-seaborn-palettes-7b5fae5a258e

LyX 프로그램으로 TeX/LaTeX 쉽게 쓰기

TeX/LaTeX 쉽게 쓰기 LyX:  LaTeX  편집기 https://www.lyx.org/AboutLyX

파이썬 string 비교

  . equals () 파이썬이 아니라 자바임

sketch2code 그림으로 html 코드 생성하기

그림을 그려서 사진을 올리면 자동으로 html 코드를 생성해준다 https://sketch2code.azurewebsites.net/   미래에는 디자이너가 html 다 만드려나 이미지만 올리고 자동으로 코드 생성해서...

[python] np.shape에서 (4,1) (4,)의 차이

 np.shape에서 (4,1) (4,)의 차이는 이차원 일차원 이다. 당연히 둘이 곱할 수 없다 https://stackoverflow.com/questions/13212215/whats-the-difference-between-4-and-4-1-for-the-shape-in-numpy

[python] python에서 제곱은 ^이 아닌 **이다

까먹어서 ^를 썼더니 xor 쓸수 없다고 에러가 떴다. ufunc 'bitwise_xor' not supported for the input types, and the inputs could not be safely coerced to any supported types according to the casting rule ''safe'' ^  ->  **

윈도우 type here to search가 작동하지 않는 경우

갑자기 윈도우 type here to search가 작동하지 않는다. 해결을 위해 한 시도는 다음과 같다. 세번 restart하기 -> 효과 없음 trobleshoot에서 search and indexing -> 에러를 찾아서 고쳤다고 뜨는데 효과는 없음. 업데이트  -> 해결!

jupyter notebook의 kernel이란 무엇인가

 what is kernel in jupyter notebook A ' kernel ' is a program that runs and introspects the user's code.  IPython  includes a  kernel  for Python code, and people have written  kernels  for several other languages. At  kernel  startup,  Jupyter  passes the  kernel  a connection file. ... You can implement the  kernel  machinery in your target language.