천왕역 공영주차장의 위엄 공유 링크 만들기 Facebook X Pinterest 이메일 기타 앱 8월 05, 2013 서울 시내 나갈때, 보통 천왕역 공영주차장을 이용함. 환승 + 경차 할인을 받았더니 8,000원 요금에서 할인받아 800원 결재. 경차 할인은 어떻게 적용되나 물어보니, 자동으로 인식한다고 함. 참 좋은 세상이다. 천왕역은 4급지에 경차로 환승하면 초반 3시간 면제 후, 80% 감면. ㄷㄷㄷ. 요금 체계 공유 링크 만들기 Facebook X Pinterest 이메일 기타 앱 댓글
Stop console process using Ctrl+C. 4월 18, 2015 http://stackoverflow.com/questions/813086/can-i-send-a-ctrl-c-sigint-to-an-application-on-windows https://msdn.microsoft.com/en-us/library/ms686016(VS.85).aspx private void Button1_OnClick(object sender, RoutedEventArgs e) { var file = new FileInfo(@"C:\temp\video.mp4"); if (file.Exists) { file.Delete(); } ct = new CancellationTokenSource(); Task.Factory.StartNew(() => { var pInfo = new ProcessStartInfo("cmd.exe", string.Format("/c {0} \"{1}\"", new object[] {"adb.bat", file.Name})); pInfo.CreateNoWindow = true; pInfo.UseShellExecute = false; pInfo.RedirectStandardError = true; pInfo.RedirectStandardOutput = true; pInfo.RedirectStandardInput = true; var p = Process.Start(pInfo); ... 자세한 내용 보기
자바스크립트 이용한 AES 암호화. 7월 10, 2019 http://www.c-sharpcorner.com/UploadFile/4d9083/encrypt-in-javascript-and-decrypt-in-C-Sharp-with-aes-algorithm/ 소스 : https://www.dropbox.com/s/blfmozbwsbgormo/AES.zip?dl=0 자세한 내용 보기
Using Table as Queue 7월 10, 2019 http://rusanu.com/2010/03/26/using-tables-as-queues/ 좋은 글이네요. 자세한 내용 보기
댓글
댓글 쓰기