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
Explore Toolbar 문서화
2011-06-19 22:48:15

1. Toolbar 제작 자체설명

2. Youtube 태그 설명

3. Youtube 동영상 클릭 태그 설명

4. Server와 통신 설명

▼ more