Physical Address

304 North Cardinal St.
Dorchester Center, MA 02124

Category Uncategorized

Handler를 이용한 무한 루프 만들기

안드로이드 프로그래밍 공부중에 나중에 참고 할 만한 내용을 정리하는 중이다. 이번에는 Handler 클래스를 사용하여 무한 루프를 만드는 방법이다. Handler 클래스의 sendEmptyMessage() , sendEmptyMessageDelayed() 메서드를 이용해서 만들수 있다. [code lang=”java”] public class HandlerTest extends Activity { public void onCreate(Bundle savedInstanceState) {…

Overloading Methods in WCF

Yesterday, I attended a local MSDN event in the Birmingham area.  It covered the .NET 2.0 System.Net namespace, an introduction to WCF, and a look at Atlas.  During the course of the WCF overview, someone asked the presenter whether it…

Remove the icon of a WPF window

WPF does not provide any function to remove the icon of a window. But we can use Win32 API to remove the icon. WPF Tutorial site provide IconHelper class to remove icon of a window. You can find the source…

Some Tips when using Entrust in Laravel

I got the problem when using bican/roles Role module in my Laravel project. There is an error when I check permission. So I decided to move zizaco/entrust and tested all features working normal. How to install Entrust Install use composer…

TinyUrlFactory

클래스 명 TinyUrlFactory 설명 인터넷 접근주소를 tinyurl.com 사이트를 이용하여 축약한 링크를 반환하는 클래스 제공 함수 String CreateShortUrl(String original); original 주소를 tinyurl 주소로 축약하여 반환한다. [code language=”java”] package net.zemna.android.appadviser; import java.io.*; import java.net.*; import org.apache.http.*; import org.apache.http.client.*; import org.apache.http.client.methods.*; import org.apache.http.impl.client.*;…