일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- mariadb
- install
- Splunk
- mean
- Python
- keras
- SPL
- Lotto
- LSTM
- pip
- javascript
- imread
- E-P1
- ipad
- Button
- synology
- Numpy
- 삼성소프트웨어멤버십
- DFS
- Series
- pycharm
- index
- 알고리즘
- RNN
- GT-S80
- CNN
- pandas
- dataframe
- GitHub
- SciPy
- Today
- Total
목록공부 (287)
잠토의 잠망경
제목 그대로 입니다. 속도는 가희 폭발적으로 느려지더군요. 원래 source는 이렇습니다. ---------------------------------------------------------------- this.richTextBox1.AppendText(Convert.ToString(Convert.ToChar(Register[88]))); this.richTextBox1.ScrollToCaret(); ---------------------------------------------------------------- 이렇게 source를 고쳤습니다. 즉 필요할때만 요청했죠. ---------------------------------------------------------------- if(Reg..
Introduction I was recently trying to steal strings from another program's listview control. You need to pass a pointer so it knows where to put the string. Normally this wouldn't be a problem, but because Windows uses virtual memory pointers are not valid across programs. Virtual memory is how Windows deals out memory to all it's programs. It makes programs think they have 2 Gb of memory to use..
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
Abstract After having published my article about process-wide API spying, I received plenty of encouraging messages - readers have generally accepted my model of hooking function calls. In this article, we will extend our model to kernel- mode spying, and hook the API calls that are made by our target device driver. We will also introduce a brand-new way of communication between the kernel-mode ..
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
Introduction This article is about a USB HID component which enables you to communicate with HID devices over USB. There is no default component available for USB at this moment, and this component should provide you with a good starting point when writing your own USB HID enabled applications. This article provides a sample application aswell as the component itself. 출처: http://www.codeproject...
Contents Introduction A "code-what"? Unless you have spent some time working in the area of reverse engineering, chances are you have not heard of the term "codecave" before. If you have heard of it, you might not have read a clear definition of it or quite understand what it is or why it is useful. I have even asked seasoned assembly programmers about the term before and most of them had not he..