error (3) 썸네일형 리스트형 [Linux] omitting directory omitting directory $ cp test1 test1_copy시 오류 발생 해결 방법 $ cp -r test1 test1_copy $ cp --help로 -r 의미 검색 -r --recursive copy directories recursively 하위 디렉토리와 파일 모두 recursive로 복사 Tistory markdown 글자 깨짐 Tistory에서 markdown적용 글자 깨짐 발생 -부분이 깨지는 것을 볼 수 있다. 해결방법 꾸미기의 스킨 편집으로 이동 html 편집 빈 곳에 추가 최근 github css 버전 확인 .markdown-body { box-sizing: border-box; min-width: 200px; max-width: 980px; margin: 0 auto; padding: 45px; } @media (max-width: 767px) { .markdown-body { padding: 15px; } } css 맨 밑에 추가 html 모드 클릭 글의 처음에 글의 마지막에 각각 추가해준다. 결과화면 [unity] NullReferenceError unityNullReferenceError 유니티에서 Raycast 스크립트 적용 시 using System.Collections; using System.Collections.Generic; using UnityEngine; public class ObjectTouchEvent : MonoBehaviour { // Update is called once per frame void Update() { ClickDetect(); } private void ClickDetect() { if (Input.GetMouseButtonDown(0)) { Debug.Log("Click ButtonDown(0)"); RaycastHit hit_info; Ray ray = Camera.main.ScreenPointToR.. 이전 1 다음