반응형
반응형

https://itunes.apple.com/us/app/call-of-duty-strike-team/id655619282?mt=8

 

 

 

 

 

 

 

Description

*** NOTE: NOT compatible with iPhone 4, iPod Touch 4th Generation, iPhone 3GS***

***For the optimal experience we recommend rebooting your device before you play this app for the first time***

Call of Duty®: Strike Team delivers an all-new, first-person and third-person Call of Duty® experience built from the ground up for mobile and tablet devices. Fully customize your squad’s loadouts and abilities before leading them into combat in diverse gameplay environments. Call of Duty®: Strike Team features the revolutionary ability to dynamically switch from run-and-gun first-person view to reconnaissance and coordinated squad attacks in third-person view.

The year is 2020. Tensions run high amongst the world’s superpowers. In a surprise attack, the U.S. finds themselves in a war with an unknown enemy. Your mission is to lead a Joint Special Operations Team in a global effort to hunt down those responsible.

Play your way. Switch between first-person and third-person action at almost any time. Strategically customize the members of your squad with weapons, perks or body armor.
CAMPAIGN MODE: Experience an immersive single-player campaign full of epic, cinematic moments in diverse locations around the world.
SURVIVAL MODE: Put your skills to the test as you fight off waves of increasingly difficult enemies. Compete against family, friends and the Call of Duty®: Strike Team community for leaderboard domination.

© 2013 Activision Publishing, Inc. ACTIVISION and CALL OF DUTY are trademarks of Activision Publishing, Inc. All other trademarks and trade names are the properties of their respective owners. By downloading, installing or using this App, you agree to Activision's privacy policy, as may be updated by Activision from time to time. Please visit http://www.activision.com/privacy/en/privacy.html to view Activision's privacy policy.

*** NOTE: Call of Duty®: Strike Team is ONLY compatible with and optimized for iPhone 4S, iPhone 5, iPad mini, iPad 2, iPad (3rd generation), iPad (4th generation), and iPod touch (5th generation). Requires iOS 6.0 or later.***

For more information, visit:

http://www.callofduty.com/striketeam
Follow us on Facebook: www.facebook.com/callofduty
Follow us on Twitter: @CallofDuty

 

 

반응형
반응형

Fiddler: A cross-platform web debugging proxy

 

반응형
반응형

David: Keep track of your Node dependecies

David helps keep your Nodejs project dependencies up to date. https://david-dm.org

david

Homepage: https://david-dm.org/
GitHub: https://github.com/alanshaw/david-www

 

Nodejs based web service that tells you when your project npm dependencies are out of date.

To use David, your project must include a package.json file in the root of your repository.

Currently David works with package.json files found in public github repositories only. 

반응형
반응형

PHPMD: Find issues in your PHP code

phpmd

 

반응형
반응형

SPA, Javascript MVC Framework

 

SPA : Single Page Application. 단일 웹페이지 내에서 오든 이벤트가 이루어진다.

웹페이지간 전환이 없어서 네트워크 트래픽도 줄이고, 동작이 빠르며, 사용에 끊어짐이 없다.

 

모바일 플랫폼에서 주로 사용되고 있는 것이 SPA이다.

센차터치도 그러하고, 제이쿼리 모바일도 그렇다.

하지만 하나의 웹페이지에 자바스크립트가 많이 들어가다보니 소스가 꼬이는 문제가 발생한다.

그래서, 자바스크립트로 구성하는 MVC(Model-View-Controller)가 나오게 된다.

 

이름만 많이 들어본 Backbone.js, Angular.js, KnockOut.js, javascriptMVC등이 있다.

 

고르기가 고민된다면 http://todomvc.com/ 을 참고하시오.

 

 

JavaScript Apps

  • * R = App also demonstrates routing
  • * Maroon = App requires further work to be spec-compliant

Compile To JavaScript


MVC Extension Frameworks


Module Loaders


Real-time


Compare these to a non-framework implementation

반응형
반응형

ASP 인코딩


* 페이지 속성을 정의


 <%@ codepage="65001" language="VBSCRIPT" %>

 

 0 - ANSI(default)
 949 - 한국어(EUC-KR)
 65001 - 유니코드(UTF-8)
 65535 - 유니코드(UTF-16)

 

* 메타태그 설정

    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" >

 

* 현재 세션사용자의 동적 텍스트 인코딩 코드 설정

 

    Session.CodePage = 65001
    Session.CodePage = 949

 

* ASP의 response.charset을 이용해서 문자코드 세트명 지정

 

    Response.Charset = "EUC=KR"

 

 

* UTF-8 인데 계속 한글이 깨지면 아래와 같이 다 적용해보자.

 

<%@Language="VBScript" CODEPAGE="65001" %>
<%
    Session.CodePage = 65001

    Response.CharSet = "UTF-8"
   

 

 

<%@  codepage="949" language="VBScript" %><% 
'session.codepage = 65001  ' codepage="949" language 
Session.CodePage = 949 
'Response.expires=-1 
Response.ContentType = "application/json" 
Response.Charset = "euc-kr" 
'Response.Charset = "utf-8" 

 

 

 

* utf-8로 만들기 : 페이지 최상단에 입력

<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<%
Response.AddHeader "Cache-Control", "no-cache"
Response.AddHeader "Expires", "0"
Response.AddHeader "Pragma", "no-cache"
Response.ContentType = "text/html; charset=utf-8"
%

 

 

 

 

 

반응형

+ Recent posts