public static String convertDateToString(Date date) {
if(date == null) return null;
SimpleDateFormat formatter = new SimpleDateFormat("yyyy년 M월 d일, h시 m분 s초");
return formatter.format(date);
}
public static String convertDateToYear(Date date) {
if(date == null) return null;
SimpleDateFormat formatter = new SimpleDateFormat("yyyy");
return formatter.format(date);
}
public static String convertDateToMonth(Date date) {
if(date == null) return null;
SimpleDateFormat formatter = new SimpleDateFormat("MM");
return formatter.format(date);
}
public static String convertDateToDay(Date date) {
if(date == null) return null;
SimpleDateFormat formatter = new SimpleDateFormat("dd");
return formatter.format(date);
}
2011년 6월 30일 목요일
2011년 5월 16일 월요일
[CSS] min-width / min-height / max-width / max-height
나에겐 최선의 방법
.minw1000{min-width :1000px; width :expression(this.clientWidth < 1000 ? "1000px" : (this.style.width.trim() == "auto" ? "auto" : this.style.width ));}
.minh1000{min-height:1000px; height:expression(this.clientHeight < 1000 ? "1000px" : (this.style.height.trim() == "auto" ? "auto" : this.style.height));}
.maxw1000{max-width: 1000px; width:expression(this.clientWidth > 1000 ? "1000px" : (this.style.width.trim() == "auto" ? "auto" : this.style.width));}
.maxh1000{max-height: 1000px; height:expression(this.clientHeight > 1000 ? "1000px" : (this.style.height.trim() == "auto" ? "auto" : this.style.height));}
2011년 5월 1일 일요일
정권
김대중정권 욕하던 사람들
노무현정권 욕하던 사람들
이명박정권 욕하는 사람들
이사람들이 다른사람들일까?
공통점이 있는데 그건 인터넷 시대의 대한민국 지도자들이라는거다.
좁쌀만한 꼬뚜리도 잡아내는 인스턴트식 비난
하지만 이건 거스를수 없는 흐름
새로운 사회구조가 나오던지
아니면 이대로 서서히 무질서 속으로 빠져 역사속으로 사라지던지
인터넷 시대를 열어준 정권과 그후 극과 극의 정권을 경험하고 있는중이니
다음 정권은 어떠할지 참으로 굼금하다.
피드 구독하기:
글 (Atom)