1. Style (Theme)
    • Settings -> Style settings
    • Monokai
  2. Plugin 추가
    • BetterMultiSeleteion v1.4(64bit)
    • NppExec 설치
    • 설정 
      • Plugins > NppExec > Execute NppExec Script
      • Plugins > NppExec > Advanced Options 에서 아래와 같이 설정.
      • Settings > ShortCut ->Plugin Tab 에서 키 설정.
      • 참조 (https://community.notepad-plus-plus.org/topic/11360/multi-selection-and-multi-edit/47)
      •  
      •  
        If saving and naming a script wasn’t obvious, then assigning a keycombo is going to be less intuitive. Just saying. ;-)
        @michaelfernandez98,
        Once you have one or more scripts named and saved as Alan described, then go to Plugins > NppExec > Advanced Options. In the lower left, use the Associated Script pulldown to select the script; click Add/Modify button to add it to the list of Menu Items in the upper left; note whether or not ☑ Place in the Macros Submenu is enabled (you will need this later). Repeat as necessary for all of the above scripts. When you hit OK to apply those changes, a popup will tell you that you should restart Notepad++: save any open files, then restart Notepad++.

        After the restart, then either the Macros menu (if the checkbox was enabled) or the Plugins > NppExec submenu (if the checkbox was disabled) will list your new NppExec scripts.
        To assign a keycombo to each, go to Macros > Modify Shortcut/Delete Macro (or, equivalently, Settings > Shortcut Mapper), and go to the Plugin Commands tab. Filter by NppExec and scroll down until you see the new script names. Click on the script you want a keycombo for, hit Modify, and pick the appropriate combination of Ctrl, Alt, Shift, and the selected key. Repeat the Modify procedure for all the scripts that you want a keycombo for.
         

 

혹시 아래 내용을 진행해 보실 수 있나요?

-> 보내는 사람 PC에서 적용

  1. Windows키 + R을 눌러서 실행 창에 regedit 입력
  2. 레지스트리 키 값으로 이동하여
    HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Outlook\Preferences
  3. DisableTNEF DWORD로 생성 후 값을 1로 설정
  4. Outlook 다시 실행하고 메일을 발송

ref.

https://answers.microsoft.com/ko-kr/msoffice/forum/all/office-365-2016-%EC%95%84%EC%9B%83%EB%A3%A9/4976316e-869a-41e3-9ccb-a86ee5e37228

- Bookmarks 10.4.4 - vscode에는 별도의 bookmark 기능이 없음.

- C/C++ - ms용 (필수)

- C++ Intellisense (필수)

- Go to Next/Previous Member - 함수단위로 점프할 수 있음., 설치한 후 키 설정 필요.

 

- Sublime Text Keymap and Settings Importer - sublime 의 세팅을 가져와서 설정함.

- Identical Sublime Monokai C# theme and colorizer

 

 

 

 

 

 

Windows 7, 10 은 파일명(확장자포함), 폴더명에 대한 길이가 제한되어 있다. (256, 260)


Windows 10은 Registry 를 수정해서 처리 가능

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem


LongPathsEnabled 값을 찾아 1 로 수정


Windows 7은 이런게 없다. Workaround만 있음.

1. 특정 dir을 가상 드리이브로 만들어 사용 (파일복사, 삭제, 편집이 가능)

// 가상 드라이브 생성

C:\ subst z: c:\aaa


// 가상 드라이브 삭제

C:\ subst z: /d


2. 특정 dir을 심볼링크 (바로가기) 활용 (파일복사, 삭제, 편집이 가능)

C:\ mklink /J C:\link    D:\looooooooooooooooooooooooooooooooong\path


삭제는 파일 삭제하듯 탐색기에서 삭제 하면된다 (내부 파일/폴더 지워지지 않음)



출처: http://bwhite.tistory.com/1153

Refer site : 

https://knowledge.autodesk.com/search-result/caas/sfdcarticles/sfdcarticles/The-application-was-unable-to-start-correctly-0xc0000022-Click-OK-to-close-the-application.html


Tool download:

https://docs.microsoft.com/ko-kr/sysinternals/downloads/procmon



  • 문제 원인 : Application에서 사용하는 DLL에 접근 거부로 발생
  • 해결 방법 : 사용하는 DLL의 접근 권한 부여


1. Process Monitor v3.50 을 통해 Application이 사용하는 DLL 찾기

    • Process Monitor v3.50 실행
    • 문제의 Application 실행
    • Process Monitor 의 로그 추출
    • 로그에서 "ACCESS DENIED" 검색 
      • 사용하는 DENIED DLL 확인
    • 탐색기에서 해당 DLL
      • 등록정보(속성) -> 보안탭 -> 고급 버튼 클릭 -> 거부되는 거 허용으로 수정 -> 적용

2. Cygwin 에서 간단히 

    • 사용하는 모든 DLL에 권한 주기
      • $ chmod 777 *.dll



1. Cygwin 설치

- http://www.kaisyu.com/notes/google-android/android-download-full-source-on-windows

- Cygwin: http://www.cygwin.com

- Cygwin 설치 시 추가로 선택해야 할 패키지들: curl, git, python, readline


2.  Repo 설치

- 설치: http://dreamlog.tistory.com/2

- Trouble shooting : http://yeslab.tistory.com/39

- 절차

+ $ mkdir ~/bin

+ $ PATH=~/bin:$PATH

+ $ vi ~/.bashrc

+ 파일 맨 마지막에 

+ PATH="~/bin:$PATH"

+ $ source ~/.bashrc

+ $ curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo

+ $ chmod a+x ~/bin/repo



3. Generate public key

- https://git-scm.com/book/ko/v1/Git-%EC%84%9C%EB%B2%84-SSH-%EA%B3%B5%EA%B0%9C%ED%82%A4-%EB%A7%8C%EB%93%A4%EA%B8%B0

-  절차

+ $ ssh-keygen

+ $ cat ~/.ssh/id_rsa.pub


+ Recent posts