Thanks to visit codestin.com
Credit goes to github.com

Skip to content
View Joooohee's full-sized avatar
💣
keep going
💣
keep going
  • Seoul, S. Korea

Highlights

  • Pro

Block or report Joooohee

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
Joooohee/README.md

Hi there 👋

About me

I'm juhui(Judy), Window Application developer with about 5 years of experience in C#, MSSQL

  • 💬 Ask me about anything, anytime!
  • 📫 How to reach me: Email
  • ⚡ Fun fact: I love mint chocolate.
GitHub Stats
Some Advance Stats about my GitHub Profile - https://gitstats.me/joooohee
Social

Tech Blog Badge

Pinned Loading

  1. 한글 키보드 / 한글 조합, 분리 / 중성,초성,종성 한글 키보드 / 한글 조합, 분리 / 중성,초성,종성
    1
    Dictionary<string, string> combinations = new Dictionary<string, string>
    2
    {
    3
      	{ "ㅗㅏ", "ㅘ" },
    4
        { "ㅗㅐ", "ㅙ" },
    5
        { "ㅜㅓ", "ㅝ" },
  2. 장치VID/PID를 사용해서 PC에 연결되어 있는 특정 장치 찾기 장치VID/PID를 사용해서 PC에 연결되어 있는 특정 장치 찾기
    1
        private string getDeviceComport(string vid, string pid)
    2
        {
    3
            var comport = String.Empty;
    4
    
                  
    5
            using (var searcher = new ManagementObjectSearcher("SELECT * FROM WIN32_SerialPort"))
  3. FTP서버 경로의 하위 경로 포함 전체 파일 리스트 가져오기 FTP서버 경로의 하위 경로 포함 전체 파일 리스트 가져오기
    1
        private void getFilesRecursively(string fullpath, string ftpUser, string ftpPw, DataTable dataTable)
    2
        {
    3
            var credentials = new NetworkCredential(ftpUser, ftpPw);
    4
            FtpWebRequest listRequest = (FtpWebRequest)WebRequest.Create(fullpath);
    5
            listRequest.Method = WebRequestMethods.Ftp.ListDirectoryDetails;