반응형
반응형
visual studio code - 설치하기

https://code.visualstudio.com/

 

 

Getting Started

Visual Studio Code is a lightweight but powerful source code editor which runs on your desktop and is available for Windows, Mac and Linux. It comes with built-in support for JavaScript, TypeScript and Node.js and has a rich ecosystem of extensions for other languages (such as C++, C#, Python, PHP, Go) and runtimes. Begin your journey with VS Code with these introductory videos.

 

 

 

Quick Tour of VS Code using JavaScript

 

 

 

 

 

 

.

반응형
반응형

 

TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

 

https://github.com/Microsoft/TypeScript

 

 

 

 

Open Source

TypeScript is being developed on GitHub. The TypeScript compiler is implemented in TypeScript and can be used in any JavaScript host.

Documentation

 

 

 

 

 

반응형
반응형
[Atom] Atom 에디터에서 asp, vbscript 사용하기

 

.

 

 

반응형
반응형

[Mobile] 안드로이드 모바일웹에서 구글 마켓앱 호출하기


<!-- *참고 : http://stackoverflow.com/questions/3239478/how-to-link-to-android-market-app -->





<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script type="text/javascript">
jQuery(function() {
  updateAndroidMarketLinks();
  // some more core here ...

  function updateAndroidMarketLinks()
  {
    var ua = navigator.userAgent.toLowerCase();
    if (0 <= ua.indexOf("android")) {
      // we have android
      $("a[href^='http://market.android.com/']").each(function() {
        this.href = this.href.replace(/^http:\/\/market\.android\.com\//,
          "market://");
      });
    }
  }
});
</script>

         <br><br><br>
<a href="http://market.android.com/details?id=com.google.earth" target="_blank">com.google.earth</a>
 
         <br><br><br>



반응형
반응형

mssql 에서 타임스템프 추출하기


mssql timestamp




 -- TIMESTAMP 설정( 세계표준시보다 +9시간 빠른 한국시간 )
 select  '현재시간' = DATEADD(SECOND, 1468186808, '19700101 09:00:00')

        , DATEDIFF(second, '19700101 09:00:00', getdate())

        ,  DATEDIFF(second, '19700101 09:00:00', getdate()) - (9*60*60)



.

반응형
반응형

Rikulo UI: Create cross-platform web and native mobile applications

Rikulo UI is a Dart framework for creating cross-platform web and native mobile applications with HTML5. It uses a structured UI model and offers a responsive UX across desktop & touch devices.

rikulo

Rikulo UI is a cross-platform framework for creating amazing Web and mobile applications in Dart and HTML 5. 

 

EXAMPLE : http://rikulo.org/resource/js/examples/index-angryhead.html

 

 

 

 

반응형

+ Recent posts