일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- SciPy
- GT-S80
- Numpy
- SPL
- index
- E-P1
- DFS
- mean
- ipad
- mariadb
- RNN
- pip
- Python
- Splunk
- synology
- keras
- GitHub
- Button
- dataframe
- install
- LSTM
- Lotto
- Series
- 알고리즘
- imread
- 삼성소프트웨어멤버십
- javascript
- pycharm
- pandas
- CNN
- Today
- Total
목록공부/C sharp (34)
잠토의 잠망경
http://www.codeproject.com/Articles/11616/Watch-Dog
문자열을 역순으로 출력해야할때가 있다. "안녕하세요." -à ".요세하녕안" 이렇게 C#에서는 간단하게 아래와 같이 코딩하면 된다. String targetSTR ="hihi"; String temp = new String(targetSTR.ToCharArray().Reverse().ToArray());
일반적으로 C#에서는 그림과 같이 기본 Windows Form에 Serial을 드래그해 복사하는 방식으로 사용하게 된다. 그런다음 그림과 같이 설정을 하고 다음과 같이 serial을 통해 값이 들어 왔을 경우 처리할 이벤트 핼들러 함수를 만들어준다. 근데 이런식으로 작성하면 기능 구현에는 무리가 없다. But 디버깅 모드에서 Break Point를 걸고 라인단위로 디버깅할때 문제가 발생한다. 왜냐하면 디버깅시 프로세스는 정지하게 된다. 이럴 경우 DataRecived에 해당되는 핸들러함수는 Serial에서 넘어오는 값들을 제때 처리가 안된다. 그래서 하나의 방법이 Serial을 위한 추가 Thread를 만들어주는 것이다. 우선. using 으로 다음 그림을 추가 해준다. 다음은 풀소스이다. 이와 같이 추..
[A .NET sniffer application written with SharpPcap] Introduction Packet capturing (or packet sniffing) is the process of collecting all packets of data that pass through a given network interface. Capturing network packets in our applications is a powerful capability which lets us write network monitoring, packet analyzers and security tools. The libpcap library for UNIX based systems and its Wi..
제목 그대로 입니다. 속도는 가희 폭발적으로 느려지더군요. 원래 source는 이렇습니다. ---------------------------------------------------------------- this.richTextBox1.AppendText(Convert.ToString(Convert.ToChar(Register[88]))); this.richTextBox1.ScrollToCaret(); ---------------------------------------------------------------- 이렇게 source를 고쳤습니다. 즉 필요할때만 요청했죠. ---------------------------------------------------------------- if(Reg..
Introduction A hack to replicate MFC's CWaitCursor class in C#. Background I found that the using keyword in C# has two uses: The using directive, which we all know. The using statement, which is v. cool. This gave me the idea for this article. 출처: http://www.codeproject.com/KB/cs/waitcursor.aspx
Introduction This code shows a way to make a CD ripper in C#. There are APIs from some vendors that allow reading audio CD tracks but it is also possible to do it using APIs that allow low level access to CD drives such as ASPI from Adaptec or IOCTL control codes. The latter method is used in this case, because there is no need to install any third party software, it is completely covered by Win..
Introduction This is a very simple article to know how to access and get information about the CD-ROM (open, close, occupied?, drive name), and this is achieved using some Windows APIs. 출처: http://www.codeproject.com/KB/system/cdrom.aspx