파일명 일괄변경 프로그램
2011-06-19 23:51:47

renamer

▼ more
Youtube 클릭 소스
2011-06-19 23:11:37

클릭한것을 알아내지만 느리다.

▼ more
[SharpPcap] 네트워크 인터페이스 가져오기
2011-06-19 23:09:06

1. PacketDotNet.dll과 SharpPcap.dll 을 참조에 추가 (필수:SharpPcap라이브러리 사용시 공통사항)

2. 네트워크 인터페이스 가져오기

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

namespace sharppcap1

{

class Program

{

static void Main(string[] args)

{

//SharpPcap 버전 표시

string ver = SharpPcap.Version.VersionString;

Console.WriteLine("SharpPcap {0}", ver);

//네트워크 인터페이스장치를 검색

var ifCount = SharpPcap.CaptureDeviceList.Instance;

if (ifCount.Count < 1)

{

Console.WriteLine("no network inferface");

return;

}

//검색된 네트워크 인터페이스들을 표시

foreach (var dev in ifCount)

{

Console.WriteLine("{0}", dev);

}

}

}

}

[출처] [SharpPcap] 네트워크 인터페이스 가져오기|작성자 네탄

▼ more
work list of this week
2011-06-19 22:58:00

<BiKE>

1. Study hadoop ~ 26th/June => working

2. Install nutch ~ 26th/June => working

3. Find Ontopath source ~ 22nd/June => graduation

4. Make ontopath work correct by building ~ 26th/June => graduation

<SCSSM>

5. Silverlight Youtube Player ~ 26th/June => after graduation

6. Documentation of toolbar ~ 15th/July => after graduation

<Lecture>

7. Study Endocrine ~ 22nd/June => the finale of this semester

▼ more