반응형
반응형

오라클 달력 만들기

 

-- 달력 만들기

/*  -- ORACLE

    SELECT 일,월,화,수,목,금,토
      FROM (  SELECT TRUNC  (dt + LEVEL - 1, 'd' ) w
                   , TO_CHAR(dt + LEVEL - 1, 'd' ) d
                   , TO_CHAR(dt + LEVEL - 1, 'dd') dd
                FROM (SELECT TO_DATE('201402','yyyymm') DT FROM DUAL)
             CONNECT BY LEVEL <= LAST_DAY(dt) - dt + 1
           )
     PIVOT (MIN(DD) FOR d IN ( 1 일, 2 월, 3 화, 4 수, 5 목, 6 금, 7 토))
     ORDER BY w
*/

반응형
반응형

jquery mobile 1.4 + Z framework

 

간단한 모바일 뉴스 수집 서비스 :  http://tcbs17.cafe24.com/tc/circulus/index.html

 

참고 : http://j.mp/1i2Dgai 

반응형
반응형

Garlic.js: Persistent local form data

There’s little more frustrating for your users than accidentally closing a browser tab mid-way through filling out a form, losing whatever they’ve input so far. Garlic.jsprevents this, by storing form data locally until the form is submitted, regardless of whether the browser is closed.

garlic

 

반응형
반응형

Fluidity: Making HTML 100% responsive

Fluidity is a tiny bit of CSS (107 bytes total) that fixes the part of HTML that isn’t completely responsive. It makes changes to the way images, tables, iframes, preformatted text, and canvas elements, so that they’re completely responsive.

fluidity

 

반응형
반응형

Mithril: A JavaScript application framework

Mithril is a framework for building awesome JavaScript applications. It’s only 3kb gzipped, has no dependencies, has a small API, is easy to learn, and has safe-by-default templates.

mithril


Mithril  - http://lhorie.github.io/mithril/

A Javascript Framework for Building Brilliant Applications

See the website for documentation

 

 

반응형
반응형

Molecule: An HTML5 game framework

Molecule is an HTML5 game framework that’s lightweight, easy to use, and cross-platform compatible. It has no external dependencies and even includes its own basic but powerful physics engine.

molecule

 


Molecule - HTML5 Game Framework

This is the official repository for the Molecule HTML5 Game Framework. All documentation, features and examples can be seen on the official website: http://www.moleculejs.net

 

 

 

 

반응형

+ Recent posts