○…누구든지 직장을 들어가려면 이력서를 써야 한다. 이력서는 지나온 삶을 간단히 정리한다는 뜻을 지니고 있지만 취업전쟁이 심해지면서 점차 자신의 능력과 미래에 대한 포부까지 담아내는 일종의 사전 시험의 성격을 띠고 있다.이 때문에 이력서 작성요령을 가르쳐주는 신종직업이 나타나고 있는 가운데 급기야 미국 CNN까지 이력서 작성 가이드로 나섰다.

미국 CNN 인터넷판은 최근 ‘이력서에 적어서는 안될 25개 단어들(25 words that hurt your resume)’이라는 제목으로 커리어빌더닷컴 로라 모쉬(Laura Morsch)의 글을 올렸다. 모쉬가 스코트 베넷(Scott Bennett)의 책 ‘이력서의 기본(The Elements of Resume Style)’을 인용해 내린 결론은 간단하다.


화려하지만 애매모호한 미사여구를 쓰는 대신 간단하지만 구체적인 성과를 제시하라는 것이다. 즉,말로 때우지 말고 행동으로 보여야 한다. 쉬운 듯 하지만 막상 써보면 쉽지는 않다. 자신의 능력을 과대 포장하기 보다는 있는 그대로 정확하게 보여줘야 한다는 뜻이다.


예를 들면 '서류작성 커뮤니케이션 실력 우수함(Excellent written communication skills)' 대신 '1만1000명의 사용자를 위해 사투리까지 자유자재로 구사할 수 있음(Wrote jargon-free User Guide for 11,000 users)'으로 적어야 좋다. 모쉬는 끝으로 베넷이 제시한 '이력서에 쓰지 말아야할 멋있지만 모호한 낱말 25개' 를 나열했다.


△적극적인(Aggressive)

△패기있는(Ambitious)

△능력있는(Competent)

△창조적인(Creative)

△꼼꼼한(Detail-oriented)

△단호한(etermined)

△능률적인(Efficient)

△경험 많은(Experienced)

△융통성있는(Flexible)

△목표의식이 강한(Goal-oriented)

△열심히 일하는(Hard-working)

△독립심이 강한(Independent)

△혁신적인(Innovative)

△아는게 많은(Knowledgeable)

△논리적인(Logical)

△자극하는(Motivated)

△신중한(Meticulous)

△막연한 의미의 사람(People,person)

△전문적인(Professional)

△믿을만한(Reliable)

△수완좋은(Resourceful)

△혼자서도 잘하는(Self-motivated)

△성공적인(Successful)

△팀웍이 좋은(Team player)

△계획적인(Well-organized).

Posted by [czar]
,

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" >
<head>
<title>One Hundred Percent Height Divs</title>
<style type="text/css" media="screen">
body {
margin:0;
padding:0;
height:100%; /* this is the key! */
}
#left {
position:absolute;
left:0;
top:0;
padding:0;
width:200px;
height:100%; /* works only if parent container is assigned a height value */
color:#333;
background:#eaeaea;
border:1px solid #333;
}
.content {
margin-left:220px;
margin-right:220px;
margin-bottom:20px;
color:#333;
background:#ffc;
border:1px solid #333;
padding:0 10px;
}
#right {
position:absolute;
right:0;
top:0;
padding:0;
width:200px;
height:100%; /* works only if parent container is assigned a height value */
color:#333;
background:#eaeaea;
border:1px solid #333;
}

#left p {
padding:0 10px;
}
#right p {
padding:0 10px;
}
p.top {
margin-top:20px;
}
</style>
</head>

<body>
<div id="left">
<p class="top">This design uses a defined body height of 100% which allows setting the
contained left and right divs at 100% height.</p>

<p>This design uses a defined body height of 100% which allows setting the contained left and
right divs at 100% height.</p>

<p>This design uses a defined body height of 100% which allows setting the contained left and
right divs at 100% height.</p>
</div>

<div class="content">
<p>This design uses a defined body height which of 100% allows setting the contained left and
right divs at 100% height.</p>
</div>

<div class="content">
<p>This design uses a defined body height which of 100% allows setting the contained left and
right divs at 100% height.</p>
</div>

<div class="content">
<p>This design uses a defined body height which of 100% allows setting the contained left and
right divs at 100% height.</p>
</div>

<div id="right">
<p class="top">To solve an inheritance issue displayed in div #right as rendered in Opera, class p.top
using margin-top:20; is applied to the first paragraph of each outer divs.</p>

<p>This design uses a defined body height which of 100% allows setting the contained left and
right divs at 100% height.</p>

<p>This design uses a defined body height which of 100% allows setting the contained left and
right divs at 100% height.</p>
</div>
</body>
</html>




http://www.webmasterworld.com/forum83/200.htm

Posted by [czar]
,

java 날짜

카테고리 없음 2006. 12. 7. 14:41
java.text.SimpleDateFormat formatter = new java.text.SimpleDateFormat("yyyyMMdd");
String today = formatter.format(new java.util.Date());
Posted by [czar]
,

java 달력

카테고리 없음 2006. 12. 7. 11:37
 public static String getReqParameter(String Req, String ifNulltoReplace) {
if ( Req == null || Req.equals("")) return ifNulltoReplace;
else return Req.trim();
}
public static String getReqParameter(String Req) {
if (Req == null || Req.equals("")) return "";
else               return Req.trim();
}
public static int getIntParameter(String Req, int ifNulltoReplace) {
try {
  if ( Req == null || Req.equals("")) return ifNulltoReplace;
  else               return Integer.parseInt(Req.toString());
}catch(NumberFormatException e){
  return ifNulltoReplace;
}
}
public static int getIntParameter(String Req) {
try {
  if (Req == null || Req.equals("")) return 0;
  else               return Integer.parseInt(Req.toString());
}catch(NumberFormatException e){
  return 0;
}
}







<%@ page language="java" pageEncoding="EUC-KR" %>
<%@ page  import="java.util.*" %>
<%
Calendar today   = Calendar.getInstance();
Calendar firstday  = Calendar.getInstance();
Calendar lastday  = Calendar.getInstance();

int toYear  = getIntParameter(request.getParameter("year"),today.get(Calendar.YEAR));
int toMonth = getIntParameter(request.getParameter("month"),today.get(Calendar.MONTH)+1);


out.println("<center>"+toYear +"/"+ toMonth+"</center><br>");

firstday.set(toYear,toMonth-1,1);
lastday.set(toYear,toMonth,1);
lastday.add(Calendar.DATE,-1); //해당월의 마지막 날짜
%>
<html>
<head>
<title>Calendar</title>
</head>
<body bgcolor="#FFFFFF">

<table border=1 width=90% align=center>
<tr height=30 align=center bgcolor=#929292>
 <td><font color=red><b>일</b></font></td>
 <td>월</td>
 <td>화</td>
 <td>수</td>
 <td>목</td>
 <td>금</td>
 <td><font color=blue><b>토</b></font></td>
</tr>

<%
int jcount   = (int)Math.ceil((double)(lastday.get(Calendar.DATE)-1 + firstday.get(Calendar.DAY_OF_WEEK)) / 7);
int count   = 2; // 첫번째 요일까지 공백 때분에...
int _day   = 0;
String bgcolor  = "";
 
for(int ju=0;ju<jcount;ju++){
 out.println("<tr>");
 
 for(int i=0;i<7;i++){
 
  switch(i){
   case 0  : bgcolor="#FFD7D7";break;
   case 6  : bgcolor="#C1C1FF";break;
   default : bgcolor="#E7E7E7";break;
  }
     
 
  if(firstday.get(Calendar.DAY_OF_WEEK) < count){
   
   _day = count - firstday.get(Calendar.DAY_OF_WEEK);
   
   if( _day > lastday.get(Calendar.DATE)) _day = 0;
  }
 
  count ++;
 
  out.println("<td height=100 valign=top bgcolor='"+bgcolor+"'>"+_day+"</td>");
 }
 
 out.println("</tr>");
}
%>

</body>
</html>

Posted by [czar]
,

id.domain

카테고리 없음 2006. 12. 7. 10:57
<IfModule mod_userdir.c>
   #
   # UserDir 은 시스템에 존재하는 유저이어야 하며 유저들의 홈디렉토리의 퍼미
   # 션에 의존한다. UserDir 의 기본값은 disable 이다.  만약 /~user 의 접근을
   # 막고 싶다면 disable 로 지정을 한다.
   #
   UserDir public_html
</IfModule>

#
# http://domain.com/~id를 <a href="http://id.domain.com" title="http://id.domain.com">http://id.domain.com</a> 으로 전환하는 rule. domain.com
# 을 자신의 domain 으로 수정하면 됨. 단 주의 할것은 계정이 아닌 name based 가
# 상 virtual host가 존재할 경우에는 name based 가상 호스트들의 설정은 이것 보다 상위에 설정이 되어야 함.
#
#<VirtualHost IPaddress>
#    ServerName domain.com
#    ServerAlias *.domain.com
#      # <a href="http://domain.com/~id" title="http://domain.com/~id">http://domain.com/~id</a> -> <a href="http://id.domain.com" title="http://id.domain.com">http://id.domain.com</a> 으로 변환
#      RewriteEngine on
#      RewriteCond  %{HTTP_HOST}            ^[^.]+\.domain\.com$
#      RewriteRule  ^(.+)                   %{HTTP_HOST}$1         [C]
#      RewriteRule  ^([^.]+)\.domain\.com(.*) /home/member/$1/htdocs$2
#</VirtualHost>
Posted by [czar]
,
다중 Row 결과를 단일행으로 컴마로 분리해 출력하는 방법
Posted by [czar]
,
Posted by [czar]
,
어떻게 붙이는게 좋을까.
블로그에서.

200612011 <= 2006년 12월 1일에 쓴 첫번째 글
1 ~ 987 <= 현재 글은 전체 987번째 글

http://www.valken.com/trackback/16

Posted by [czar]
,
http://way.co.kr/~ID 와 같은 사용자 계정의 홈페이지 주소를
서브호스트명을 사용하여 http://ID.way.co.kr 과 같이 사용하고자 한다
Posted by [czar]
,
1. 목표
http://way.co.kr/~ID 와 같은 사용자 계정의 홈페이지 주소를
서브호스트명을 사용하여 http://ID.way.co.kr 과 같이 사용하고자 한다.

2. 네임서버
네임서버의 zone 파일에 와일드카드를 사용하여 기준이될 도메인(way.co.kr)의
모든 서브호스트를 동일한 IP로 묶어준다.

*.way.co.kr. IN A 211.123.100.1
IN MX 10 way.co.kr.

위와 같이 설정할 경우 abc.way.co.kr 또는 xyz.way.co.kr 등 way.co.kr의
모든 서브호스트는 211.123.100.1 이라는 IP로 매핑된다.

-. 참고정보
RFC1034(4.3.3. Wildcards)

3. 웹서버

3.1. 모듈 준비

3.1.1. rpm 패키지
최근에 배포된 아파치 버전은 대부분 아파치 rewrite 모듈이
DSO(Dynamic Shared Object) 형태로 컴파일 되어 있다.
/etc/httpd/conf/httpd.conf 파일을 열어 다음 두줄이 포함되어
있는지 확인해보기 바란다.
두줄이 나란히 위치하지는 않을 것이며, 경우에 따라 AddModule 라인이
존재하지 않을 수도 있다.
만약 주석처리되어 있다면 제거하여 활성화하기 바란다.

LoadModule rewrite_module ......
AddModule mod_rewrite.c

3.1.2. 컴파일
컴파일하여 설치된 경우도 위의 rpm 에서와 마찬가지 방법으로
rewrite 모듈이 컴파일 되어 있는지 확인해보기 바란다.

새로이 컴파일하여 설치하려면 다음과 같은 방법으로한다.
물론 ./configure 옵션중 rewrite 이외의 부분은 원하는대로
지정하기 바란다. 기본설치의 경우 아래 정도면 무방하리라 여겨진다.

# cd apache-1.3.x
# ./configure --prefix=/usr/local/apache
--enable-shared=max
--enable-module=rewrite
--enable-shared=rewrite
# make
# make install

3.2. 가상서버 설정
이제 httpd.conf 파일을 편집한다.
way.co.kr의 서브호스트들을 모두 수용하기 위해 ServerAlias 지시자를
사용해야 하고, ServerAlias 지시자는 VirtualHost 안에서만 사용되므로
Name-basedvirtual host 형태를 취해야 한다.
ServerAlias를 사용할때는 네임서버 설정시와 마찬가지로 와일드 카드를
사용한다.

NameVirtualHost 211.123.100.1

ServerAdmin webmaster@way.co.kr
DocumentRoot /usr/local/apache/htdocs
ServerName way.co.kr
ServerAlias way.co.kr *.way.co.kr
RewriteEngine on
RewriteCond %{HTTP_HOST} ^[^.]+.way.co.kr$
RewriteRule ^(.+) %{HTTP_HOST}$1 [C]
RewriteRule ^([^.]+).way.co.kr(.*) /home/$1/public_html$2

ServerAdmin, DocumentRoot 등의 지시자는 특별히 영향받지 않으므로
원하는대로 지정해도 된다.
Rewrite 부분에는 정규표현식이 주로 사용되며, way.co.kr 등에
사용되는 기호(마침표)는 . 등과 같이 표현해야 한다.

ㄱ. 기본 도메인 : linux.org
ㄴ. 계정 웹문서 경로 구조 : /usr/home/ID/www
ㄷ. IP 주소 : 123.123.123.200

만약 위와 같은 상황이라면 다음과 같이 설정하고 아파치를
재기동하는 것으로서 원하는 결과를 얻을 수 있을 것이다.

NameVirtualHost 123.123.123.200

ServerAdmin webmaster@linux.org
DocumentRoot /usr/local/apache/htdocs
ServerName linux.org
ServerAlias linux.org *.linux.org
RewriteEngine on
RewriteCond %{HTTP_HOST} ^[^.]+.linux.org$
RewriteRule ^(.+) %{HTTP_HOST}$1 [C]
RewriteRule ^([^.]+).linux.org(.*) /usr/home/$1/www$2

-. 참고정보
http://www.apache.org/docs/mod/mod_rewrite.html
http://www.engelschall.com/pw/apache/rewriteguide

출처 : http://www.joylinux.net/
Posted by [czar]
,