반응형
반응형

ASP 날짜, 시간 - date(), Now(), time()

 

    now_a = Now()
    now_b = Left(Now(), 10)
    now_c = Mid(Date(),1,4) & Mid(Date(),6,2) & Mid(Date(),9,2) & left(FormatDateTime(Now(), 4),2)

                right(FormatDateTime(Now(), 4),2) & right(FormatDateTime(Now(), 3),2)


    response.write " now_a = "& now_a
    response.write " now_b = "& now_b
    response.write "<br> now_c = "& now_c

 

 

Now() ==> 2009-07-09 오후 4:48:49
Date() ==> 2009-07-09
Time() ==> 오후 4:48:49

FormatDateTime(Now(), 0) ==> 2009-07-09 오후 4:48:49
FormatDateTime(Now(), 1) ==> 2009년 7월 9일 목요일
FormatDateTime(Now(), 2) ==> 2009-07-09
FormatDateTime(Now(), 3) ==> 오후 4:48:49
FormatDateTime(Now(), 4) ==> 16:48

 

* YYYY-MM-DD HH24:MI:SS (오라클 기준)
FormatDateTime(Now(), 2) ==> 2009-07-09
FormatDateTime(Now(), 4) ==> 16:48
Right(Now(), 3) ==> :49
====> 2009-07-09 16:48:49

 

Left(Date(), 4) ==> 2009 (년)
Mid(Date(), 6, 2) ==> 07 (월)
Int(Mid(Date(), 6, 2)) ==> 7 (월)

반응형
반응형

10여 년 전에 방영한 TV사극 '허준'에서
스승 유의태를 가끔 생각한다. 그는 한평생
의술을 폈고 제자 허준에게 죽기 직전 자신의 몸을
실험 수술 대상으로 내주는 장면이 있었다. 그런 유의태의
모습은 비록 픽션이라도 강한 감동을 주었다. 통증으로
고생하는 사람들의 치유를 위해 한평생 의술을 폈고
죽기 직전 제자에게 자신의 몸을 실험해 보도록 한
유의태 선생의 정신을 본받아, 나도 머리끝에서
발끝까지 실험하여 많은 사람을 치유하는
'의태성심'이 되기로 했다.


- 류성심의《고질병, 통쾌한 치유》중에서 -


* 허준은
유의태라는 스승이 있었기 때문에
조선 최고의 명의가 될 수 있었습니다.
유의태는 허준이라는 좋은 제자가 있었기 때문에
온몸을 던져 자신의 의술을 전수할 수 있었습니다.
스승과 제자, 멘토와 멘티, 영혼의 동반자, 소울 메이트,
선물과도 같고 운명과도 같은 이 극적인 만남이
새로운 역사를 만듭니다.

반응형

'생활의 발견 > 아침편지' 카테고리의 다른 글

내 어머니  (0) 2013.09.21
고향을 찾아서  (0) 2013.09.17
멋지게 살기 위해서  (0) 2013.09.14
좋은 부모 되기 정말 어렵다  (0) 2013.09.13
감각을 살려라  (0) 2013.09.12
반응형

이익을 얻으면 그 이익은 누군가의 은혜에 의한 것이니
나 또한 은혜를 베풀어야 한다.
목표를 이룬 사람들은
‘나눠야 더욱 넘치고 행복해진다’고 강조한다.
- 주역

 

존 쿨리지는 ‘뭔가를 받았다고 명예롭게 된 사람은 없다.
명예는 뭔가를 줌으로써 받는 보상이다.’고 말했습니다.
나눔으로써 더욱 커지는 행복의 기적을
체험하는 사람들이 많아지길 기원합니다.

반응형
반응형

Robomongo 0.8.2

Shell-centric cross-platform MongoDB management tool

http://www.robomongo.org/

About

Robomongo — is a shell-centric cross-platform open source MongoDB management tool (i.e. Admin GUI). Robomongo embeds the same JavaScript engine that powers MongoDB's mongo shell. Everything you can write in mongo shell — you can write in Robomongo!

This is an early beta version of Robomongo, that we are publishing in a hope to validate usefulness of application. We really welcome your feedback! Please submit any issues and proposals to GitHub Issues.

Features

Full Power of MongoDB Shell

Robomongo embeds the same JavaScript engine (based on Mozilla SpiderMonkey), that powers MongoDB's mongo shell. It means that you can reuse your existing skills of MongoDB Shell in Robomongo!

Robomongo provides you with syntax highlighting, autocompletion, different view modes (text, tree, custom) and more.

With great power comes great responsibility. Robomongo will not stop you from executing "undesired" code. Be careful, as you do with MongoDB Shell!

Tip! Select any part of code and press Ctrl + Enter. Only selected code will be executed.



Multiple Shells

Open as many shells as you need. Every tab in Robomongo — is a MongoDB shell, fully isolated from each other.

You can have many opened shells for single MongoDB database, or many shells for many different databases.

Tip! Press Ctrl + T to open new shell, based on currenly opened.



Multiple Results

Robomongo executes your code in statement by statement way. That means that you will receive as many result as many statements you have.

This feature can assist you, for instance, when you would like to view and analyse documents side by side.

Tip! Press F10 to toggle results orientation from vertical to horizontal.



Autocompletion

Robomongo provides you with autocompletion for all objects (and thus functions) that are known by JavaScript runtime, including autocompletion for databases, collections and even your document objects.

To assist Robomongo autocompletion — execute your code. This will make your objects available to JavaScript runtime, and autocompletion will work even for your custom functions and documents.

Tip! To see code of any JavaScript function, just type its name and execute (Ctrl + Enter)


Articles

 

반응형
반응형

Perimeter.js: Detect mouse breaches of an invisible perimeter

perimeter.js

 

반응형
반응형

URLcrypt: Securely encode and decode data in URLs

urlcrypt

반응형

+ Recent posts