반응형
반응형

'장고(Django)'로 쉽고 빠른 웹 개발 - http://biohackers.net/wiki/RapidWebDevelopmentByDjango

 

Install : https://docs.djangoproject.com/en/1.4/intro/install/

 

장고(Django) 설치 및 이클립스(eclipse) 세팅 : http://ash84.tistory.com/767

 

Pydev에서 django 셋팅하기 : http://pydev.org/manual_adv_django.html

 

Django 를 위한 IDE 설정(이클립스) : http://seapy.com/157

 

 

반응형
반응형

정보통신기술

위키백과, 우리 모두의 백과사전.
(정보 통신 기술에서 넘어옴)
이동: 둘러보기, 찾기

 

 http://ko.wikipedia.org/wiki/%EC%A0%95%EB%B3%B4_%ED%86%B5%EC%8B%A0_%EA%B8%B0%EC%88%A0
ICT는 컴퓨터 네트워크와 필연적으로 관련되어 있다.

정보통신기술(情報通信技術, ICT, Information and communication technology)은 정보기술(IT)의 확장형 동의어로 자주 사용되지만, 통합 커뮤니케이션의 역할과[1] 원거리 통신(전화선 및 무선 신호), 컴퓨터, 더 나아가 정보를 접근하고 저장하고 전송하고 조작할 수 있게하는 필수적인 전사적 소프트웨어, 미들웨어, 스토리지, 오디오 비주얼 시스템을 강조하는 용어이다.[2]

ICT라는 문구는 1980년대 이후로 학술 연구가들이 사용해오고 있으나[3] 1997년 데니스 스티븐슨이 영국 정부의 보고서[4] , 2000년에는 잉글랜드, 웨일스, 북아일랜드의 개정된 내셔널 커리큘럼에 이 용어를 사용하면서 유명해졌다.

또, ICT라는 용어는 하나의 케이블 연결이나 링크 시스템을 통하여 오디오 수준과 전화망컴퓨터 네트워크와 결합하는 의미로 가리키기도 한다. 오디오 비주얼과 더불어 케이블과 신호 분배 및 관리의 단일 통합 시스템을 이용한 컴퓨터 네트워크 시스템과의 건물 관리 및 전화망을 병합하는 커다란 경제적 인센티브가 있다.

[편집] 같이 보기

 

반응형
반응형

Technical Reference – Intel® HTML5 App Porter Tool - BETA


Introduction

The Intel® HTML5 App Porter Tool - BETA is an application that helps mobile application developers to port native iOS* code into HTML5, by automatically translating portions of the original code into HTML5. This tool is not a complete solution to automatically port 100% of iOS* applications, but instead it speeds up the porting process by translating as much code and artifacts as possible.

It helps in the translation of the following artifacts:

  • Objective-C* (and a subset of C) source code into JavaScript
  • iOS* API types and calls into JavaScript/HTML5 objects and calls
  • Layouts of views inside Xcode* Interface Builder (XIB) files into HTML + CSS files
  • Xcode* project files into Microsoft* Visual Studio* 2012 projects

This document provides a high-level explanation about how the tool works and some details about supported features. This overview will help you determine how to process the different parts of your project and take the best advantage from the current capabilities.

How does it work?

The Intel® HTML5 App Porter Tool - BETA is essentially a source-to-source translator that can handle a number of conversions from Objective-C* into JavaScript/HTML5 including the translation of APIs calls. A number of open source projects are used as foundation for the conversion including a modified version of Clang front-end, LayerD framework and jQuery Mobile* for widgets rendering in the translated source code.

Translation of Objective-C* into JavaScript

At a high level, the transformation pipeline looks like this:

This pipeline follows the following stages:

  • Parsing of Objective-C* files into an intermediate AST (Abstract Syntax Tree).
  • Mapping of supported iOS* API calls into equivalent JavaScript calls.
  • Generation of placeholder definitions for unsupported API calls.
  • Final generation of JavaScript and HTML5 files.

About coverage of API mappings

Mapping APIs from iOS* SDK into JavaScript is a task that involves a good deal of effort. The iOS* APIs have thousands of methods and hundreds of types. Fortunately, a rather small amount of those APIs are in fact heavily used by most applications. The graph below conceptually shows how many APIs need to be mapped in order to have certain level of translation for API calls .

Currently, the Intel® HTML5 App Porter Tool - BETA supports the most used types and methods from:

  • UIKit framework
  • Foundation framework

Additionally, it supports a few classes of other frameworks such as CoreGraphics. For further information on supported APIs refer to the list of supported APIs.

반응형
반응형

Backgrid.js – A set of core Backbone UI elements

http://codevisually.com/backgrid-js/


Dated Added → Feb 16, 2013Categories → Framework

Backgrid.js is a set of components for building semantic and easily stylable data grid widgets. It offers a simple, intuitive programming interface that makes easy things easy, but hard things possible when dealing with tabular data.
The goal of Backgrid.js is to produce a set of core Backbone UI elements that offer you all the basic displaying, sorting and editing functionalities you'd expect, and to create an elegant API that makes extending Backgrid.js with extra functionalities easy.
Backgrid.js - A set of core Backbone UI elements


반응형
반응형

파이썬 3의 특징

  1. 모든 문자열은 유니코드로 처리한다.
  2. 변수명에 한글을 사용할 수도 있다.
  3. print문은 없어지고 함수 print()만 사용할 수 있다.
  4. raw_input()은 없어지고 input()을 사용한다.

 

 

 

반응형
반응형
python으로 android phone에 웹서버 만들기

 

Tutorial : http://code.google.com/p/android-scripting/wiki/Tutorials

 

 

httpd.py

import SimpleHTTPServer
from os import chdir

 

chdir('/sdcard/')

 

SimpleHTTPServer.test()

 

실행하면 아래처럼 로그가 올라온다.

그럼, 폰의 웹브라우저로 접속하면 아래와 같다.

 

 무선 AP에 접속 중이면 같은 망에 있는 다른 디바이스에서도 접근이 가능하도록 고유 IP를 찾아서 보자.

shell로 접속해서 netcfg를 실행하면  "eth0"가 실행중인 것이 지금 실행중인 Lan정보이다.

그 IP를 사용하면 된다.

 

 

 

반응형

+ Recent posts