Physical Address

304 North Cardinal St.
Dorchester Center, MA 02124

Category Uncategorized

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.*;…

Zemna File Renamer v1.0 has released!

Zemna File Renamer is a software to change file name using rules easily. You can use one or multiple rules to change file name. At this time, Replace, Sequence, SetName rules are supported. [button link=”https://www.zemna.net/windows-apps/zemna-file-renamer” color=”#AAAAFF” size=”3″ style=”2″ dark=”0″ radius=”auto”…

맥북에 Ubuntu 설치하는 방법

Here is how I got Ubuntu 7.10 installed and working on my parallels virtual machine, as taken from this post VM Memory: 512 HD size 6-10GB 1. Boot the install CD. When the menu screen comes up press F6 for boot…

윈도우 서비스(Windows Service) 프로그램 쉽게 디버깅(Debugging)하기

아마 윈도우 서비스(Windows Service)로 프로그램을 개발하다가 디버깅 하기위해서는 아래와 같이 비주얼 스튜디오에서 지원하는 프로세스 연결 기능을 통해서 디버깅을 해왔을 것이다. 도구 -> 프로세스에 연결 메뉴를 클릭하면 아래와 같은 프로세스 리스트 화면이 나타난다. 여기에서 실행중인 윈도우 서비스 파일을 찾아 하단에 위치한…