2003. 6. 11. 12:54

가계부 쓸것....

이번주부터 돈의 지출 수입등의 관리를 확실히 할것...
2003. 6. 11. 12:53

2003/6/10

오빠 용돈 : 1만원
2003. 6. 11. 12:53

2003/6/11

엄니 : 생활비 및 대출 이자 드릴것 (37만원)

나연언니 : 화장품 (20만원)

오빠 용돈 : 2만원

지연언니 와서 점심 : 14000
2003. 6. 11. 11:13

오뎅국과 황태구이~

어제 저녁 메뉴였슴다

어제 저녁...

울 신랑은 참고루다 오뎅국 무쟈게 조아 합니다요

출장갔다 온다 해서리

맛난 오뎅국(절대 조미료 안넣습니다요)

끓였습니다요...

오뎅국은 국물맛이 죽여야 하는거 아시져?(요건 내 노하우라 안갈챠줌)

암튼 여러가지로 국물내고 고추...이거 꼭 들어가야 개운한 맛이 납니다요...

울 신랑 맛나다고 두그릇 비웠습니다. 오뎅국을

그리고 황태구이 굽긴 구웠는데...요기조기 막 타서리 쩝...그거 긁어내니 얼마 안되었습니다요

암튼 맛나더만요...울신랑 식사시간 30분이 넘더라구여...헤헤

어케 아냐구여? 장군의 아들 끝날때까정 식사했걸랑여

글고 서비스다 라며, 오뎅국 맛나다고, 설걷이 하더만여...

구여운 울 신랑...

자갸~ 싸랑한데이~

작은 행복이 아닌가 싶습니다요...^^

어제 저녁은 행복하였습니다요
2003. 6. 10. 13:35

[캡틴짱] 신혼여행에서 먼일 있었지?

신혼여행가서 먼일들이 있었는지 낱낱이 보고 하심이 어떠실런지여~~

음.. 울 와이프는 신혼여행의 추억을 간직하여야한다며 일기도 썼었는데.. 그런거 있겠쥐???

혹~~ 비디오루 찍었나??? ^^;

암튼 이 게시판을 통해서 함 신혼여행의 재미있었던 일을 써줬으면 하네여~~~~

그럼 기대할께여~~~
2003. 6. 10. 11:07

저희 신혼여행 무사히 잘 갔다왔습니다.

결혼식에 참석해주신 및 축하의 메시지를 보내주신
모든분께 감사 드립니다.

여러분들 덕분에 신혼여행 별 탈 없이 무사히 재미나게 잘 다녀왔습니다.
앞으로 행복하게 열심히 잘 살게염~~

여러분들도 마니마니 행복하세여~~~

2003. 6. 10. 10:02

독.수.공.방.

흑...독수공방...

어제 비뱐이 독수공방했슴다...

근데, 참 이상테요...

혼자 있으면 편하고 좋을줄 알았는데, 새벽 세시가 넘도록 잠이 안오고 뭔가 좀 이상하고...

아마 나 울 오라방한테 중독되었나봐여

결혼전에는 늘 혼자있는 시간을 즐겼었는데, 이상하더만요...

미선...곧 알게 될것이여...

울 신랑 어제 춘천으로 출장갔다가 오늘 아침에서야 도착했다고 전화 왔습니다.

아고 안스러워라...내가 가서 이뻐해줘야 하는뎅...헤헤헤

오늘 저녁에는 맛난 반찬도 해서리 울 신랑 기쁘게 해줘야 겠슴다...

참, 글고 개태아자씨, 내칼럼이 젤루다 인기 있는거 맞지?
2003. 6. 10. 08:26

"Hello World"찍기의 변천....

중고등학생
===================
10 PRINT "HELLO WORLD"
20 END


대학 신입생
=====================
program Hello(input, output)
begin
writeln("Hello World")
end.

대학 2학년
======================
(defun hello
(print
(cons "Hello (list "World))))

신임 교수
================
#include <stdio.h>
void main(void)
{
char *message[] = {"Hello ", "World"};
int i;

for(i = 0; i < 2; ++i)
printf("%s", message[i]);
printf("\\n");
}

계약직 전문가
=====================
#include <iostream.h>
#include <string.h>

class string
{
private:
int size;
char *ptr;

public:
string() : size(0), ptr(new char("\\0")) {}

string(const string &s) : size(s.size)
{
ptr = new char[size + 1];
strcpy(ptr, s.ptr);
}

~string()
{
delete [] ptr;
}

friend ostream &operator <<(ostream &, const string &);
string &operator=(const char *);
};

ostream &operator<<(ostream &stream, const string &s)
{
rettream << s.ptr);
}

string &string::operator=(const char *chrs)
{
if (this != &chrs)
{
delete [] ptr;
size = strlen(chrs);
ptr = new char[size + 1];
strcpy(ptr, chrs);
}
return(*this);
}

int main()
{
string str;

str = "Hello World";
cout << str << endl;
return(0);
}


마스터 프로그래머
=================
[
uuid(2573F8F4-CFEE-101A-9A9F-00AA00342820)
]
library LHello
{
// bring in the master library
importlib("actimp.tlb");
importlib("actexp.tlb");

// bring in my interfaces
#include "pshlo.idl"

[
uuid(2573F8F5-CFEE-101A-9A9F-00AA00342820)
]
cotype THello
{
interface IHello;
interface IPersistFile;
};
};

[
exe,
uuid(2573F890-CFEE-101A-9A9F-00AA00342820)
]
module CHelloLib
{

// some code related header files
importheader();
importheader();
importheader();
importheader("pshlo.h");
importheader("shlo.hxx");
importheader("mycls.hxx");

// needed typelibs
importlibctimp.tlb");
importlib("actexp.tlb");
importlib("thlo.tlb");

[
uuid(2573F891-CFEE-101A-9A9F-00AA00342820),>

#include "ipfix.hxx"

extern HANDLE hEvent;

class CHello : public CHelloBase
{
public:
IPFIX(CLSID_CHello);

CHello(IUnknown *pUnk);
~CHello();

HRESULT __stdcall PrintSz(LPWSTR pwszString);

aggregatable
]

coclass CHello
{
cotype THello;
};
};
private:
static int cObjRef;
};

#include <windows.h>
#include
#include <stdio.h>
#include <stdlib.h>
#include "thlo.h"
#include "pshlo.h"
#include "shlo.hxx"
#include "mycls.hxx"

int CHello::cObjRef = 0;

CHello::CHello(IUnknown *pUnk) : CHelloBase(pUnk)
{
cObjRef++;
return;
}

HRESULT __stdcall CHello::PrintSz(LPWSTR pwszString)
{
printf("%ws\\n", pwszString);
return(ResultFromScode(S_OK));
}

CHello::~CHello(void)
{

// when the object count goes to zero, stop the server
cObjRef--;
if( cObjRef == 0 )
PulseEvent(hEvent);

return;
}

#include <windows.h>
#include > importlib("actexp.tlb");
importlib("thlo.tlb");

[
uuid(2573F891-CFEE-101A-9A9F-00AA00342820),>

#include "ipfix.hxx"

extern HANDLE hEvent;

class CHello : public CHelloBase
{
public:
IPFIX(CLSID_CHello);

CHello(IUnknown *pUnk);
~CHello();

HRESULT __stdcall PrintSz(LPWSTR pwszString);

aggregatable
]
coclass CHello
{
cotype THello;
};
};
private:
static int cObjRef;
};

#include <windows.h>
#include
#include <stdio.h>
#include <stdlib.h>
#include "thlo.h"
#include "pshlo.h"
#include "shlo.hxx"
#include "mycls.hxx"

int CHello::cObjRef = 0;

CHello::CHello(IUnknown *pUnk) : CHelloBase(pUnk)
{
cObjRef++;
return;
}

HRESULT __stdcall CHello::PrintSz(LPWSTR pwszString)
{
printf("%ws\\n", pwszString);
return(ResultFromScode(S_OK));
}

CHello::~CHello(void)
{

// when the object count goes to zero, stop the server
cObjRef--;
if( cObjRef == 0 )
PulseEvent(hEvent);

return;
}

#include <windows.h>
nclude "pshlo.h"
#include "shlo.hxx"
#include "mycls.hxx"
HANDLE hEvent;

int _cdecl main(
int argc,
char * argv[]
) {
ULONG ulRef;
DWORD dwRegistration;
CHelloCF *pCF = new CHelloCF();
hEvent = CreateEvent(NULL, FALSE, FALSE, NULL);

// Initialize the OLE libraries
CoInitializeEx(NULL, COINIT_MULTITHREADED);
CoRegisterClassObject(CLSID_CHello, pCF, CLSCTX_LOCAL_SERVER,
REGCLS_MULTIPLEUSE, &dwRegistration);

// wait on an event to stop
WaitForSingleObject(hEvent, INFINITE);

// revoke and release the class object
CoRevokeClassObject(dwRegistration);
ulRef = pCF->Release();

// Tell OLE we are going away.
CoUninitialize();

return(0); }

extern CLSID CLSID_CHello;
extern UUID LIBID_CHelloLib;

CLSID CLSID_CHello = { /* 2573F891-CFEE-101A-9A9F-00AA00342820 */
0x2573F891,
0xCFEE,
0x101A,
{ 0x9A, 0x9F, 0x00, 0xAA, 0x00, 0x34, 0x28, 0x20 }
};

UUID LIBID_CHelloLib = { /* 2573F890-CFEE-101A-9A9F-00AA00342820 */
0x2573F890,
0xCFEE,
0x101A,
nclude
#include
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "pshlo.h"
#include "shlo.hxx"
#include "clsid.h"

int _cdecl main(
int argc,
char * argv[]
) {
HRESULT hRslt;
IHello *pHello;
ULONG ulCnt;
IMoniker * pmk;
WCHAR wcsT[_MAX_PATH];
WCHAR wcsPath[2 * _MAX_PATH];

// get object path
wcsPath[0] = "\\0";
wcsT[0] = "\\0";
if( argc > 1) {
mbstowcs(wcsPath, argv[1], strlen(argv[1]) + 1);
wcsupr(wcsPath);
}
else {
fprintf(stderr, "Object path must be specified\\n");
return(1);
}

// get print string
if(argc > 2)
mbstowcs(wcsT, argv[2], strlen(argv[2]) + 1);
else
wcscpy(wcsT, L"Hello World");

printf("Linking to object %ws\\n", wcsPath);
printf("Text String %ws\\n", wcsT);

// Initialize the OLE libraries

hRslt = CoInitializeEx(NULL, COINIT_MULTITHREADED);

if(SUCCEEDED(hRslt)) {

hRslt = CreateFileMoniker(wcsPath, &pmk);
if(SUCCEEDED(hRslt))
hRslt = BindMoniker(pmk, 0, IID_IHello, (void

CEEDED(hRslt)) {

// print a string out
pHello->PrintSz(wcsT);
Sleep(2000);
ulCnt = pHello->Release();
}
else
printf("Failure to connect, status: %lx", hRslt);

// Tell OLE we are going away.
CoUninitialize();
}
return(0);
}


초보 해커
===================
#!/usr/local/bin/perl
$msg="Hello, world.\\n";
if ($#ARGV >= 0) {
while(defined($arg=shift(@ARGV))) {
$outfilename = $arg;
open(FILE, ">" . $outfilename) || die "Can"t write $arg: $!\\n";
print (FILE $msg);
close(FILE) || die "Can"t close $arg: $!\\n";
}
} else {
print ($msg);
}
1;

숙련된 해커
===================
#include <stdio.h>
#define S "Hello, World\\n"
main(){exit(printf(S) == strlen(S) ? 0 : 1);}

철새 해커
===================
% cc -o a.out ~/src/misc/hw/hw.c

구루(지존) 해커
===================
% cat
Hello, world.
^D

신입관리자
===================
10 PRINT "HELLO WORLD"
20 END


중견 관리자
===================
mail -s "Hello, world." bob@b12
Bob, could you please write me a programt prints "Hello,
world."?
I need it by tomorrow.
^D

고위 관리자
===================
% zmail jim
I need a "Hello, world." program by this afternoon.

최고 경영자
===================
% letter
letter: Command not found.
% mail
To: ^X ^F ^C
% help mail
help: Command not found.
% damn!
!: Event unrecognized
% logout

2003. 6. 10. 07:46

만화보기 복구

신혼여행동안 회사 리누기 서버 날라감

만화보기 복구 시킴..ㅋㅋ
2003. 6. 9. 10:46

멍멍탕의 위력~

혐오하시는 분들도 있겠지만은,

울 신랑은 멍멍탕 먹은 날은 밤에 이불도 안 덥구 잡니다. 땀 삐질 거림서리...

몸에 넘 잘받는 것이라 생각됩니다요...

워낙 좋아하기도 하고, 울 아버지도 좋아하시고, 그거 못먹었음 울집에 장가 못왔을 겁니다...

날도 더운데들...그거 먹으면, 얼굴도 뽀얀것이 얼굴에 기름도 질~흐르고...

더위에 좀더 강해 지나 봅니다.

울 신랑 어제 배꼽이 튀어나오도록 먹은거 같슴다...헤헤

그리고, 아짐까지 죽~비됴틀어놓구 잤슴다...쿠울~~~~~~~~~

그럼서리 집이 왜이러케 더워~함서리, 난 춥더만...쩝...

이불도 안덥구 맨바닥에...잡니다.

미티미티 암튼 그 위력은 밤새 땀 삐질~ 방구 뿡뿡~ 대단대단...

그런데, 다른분들도 그러신가?