ocs 지금 보시는 문서 주소 : http://bit.ly/1OTJqvr (대소문자 주의!) 설치 가이드 문서 : http://bit.ly/1hVeMF3 또는 http://www.slideshare.net/arload/android-studio-genymotion 설치하는 동안.. 모바일&백엔드 트랜드 - http://bit.ly/1QVbcXG 프로그램 전체 소스 : https://github.com/NextGroup/AndroidBasic 1강 ~ 6강 강의 자료 : 1강 Widget : http://bit.ly/1RhwZNn 복잡한 레이아웃 만들기 - http://bit.ly/1LGNKK1 2강 안드로이드 메세지 : http://bit.ly/1Cmf0if
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** memoHandler.js **/ | |
| var mongodb = require('mongodb'); | |
| var server = new mongodb.Server('localhost', 27017, {}); | |
| var db = new mongodb.Db('mydatabase', server, {w: 1}); | |
| var querystring = require('querystring'); | |
| var url = require('url'); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** memoHandler.js **/ | |
| var mongodb = require('mongodb'); | |
| var server = new mongodb.Server('localhost', 27017, {}); | |
| var db = new mongodb.Db('mydatabase', server, {w: 1}); | |
| var querystring = require('querystring'); | |
| var url = require('url'); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var http = require('http'), | |
| util = require('util'), | |
| path = require('path'), | |
| url = require('url'), | |
| fs = require('fs'), | |
| mime = require('mime'), | |
| querystring = require('querystring'), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** memoHandler.js **/ | |
| var mongodb = require('mongodb'); | |
| var server = new mongodb.Server('localhost', 27017, {}); | |
| var db = new mongodb.Db('mydatabase', server, {w: 1}); | |
| var querystring = require('querystring'); | |
| var url = require('url'); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Download the following ZIPs: | |
| ARM Translation Installer v1.1 (http://www.mirrorcreator.com/files/0ZIO8PME/Genymotion-ARM-Translation_v1.1.zip_links) | |
| Download the correct GApps for your Android version: | |
| Google Apps for Android 5.0 (https://www.androidfilehost.com/?fid=95784891001614559 - gapps-lp-20141109-signed.zip) | |
| Google Apps for Android 4.4.4 (https://www.androidfilehost.com/?fid=23501681358544845 - gapps-kk-20140606-signed.zip) | |
| Google Apps for Android 4.3 (https://www.androidfilehost.com/?fid=23060877490000124 - gapps-jb-20130813-signed.zip) | |
| Google Apps for Android 4.2 (https://www.androidfilehost.com/?fid=23060877490000128 - gapps-jb-20130812-signed.zip) | |
| Google Apps for Android 4.1 (https://www.androidfilehost.com/?fid=22979706399755082 - gapps-jb-20121011-signed.zip) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import io.appium.java_client.android.AndroidDriver; | |
| import java.io.File; | |
| import java.net.MalformedURLException; | |
| import java.net.URL; | |
| import org.openqa.selenium.By; | |
| import org.openqa.selenium.remote.DesiredCapabilities; | |
| import org.openqa.selenium.support.ui.ExpectedConditions; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var express = require('express'), | |
| mysql = require('mysql'), | |
| formidable = require('formidable'), | |
| fs = require('fs'); | |
| var app = express(); | |
| var connection = mysql.createConnection({ | |
| host: 'localhost', | |
| query: { | |
| pool: true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var express = require('express'), | |
| mysql = require('mysql'), | |
| formidable = require('formidable'), | |
| fs = require('fs'); | |
| var app = express(); | |
| var connection = mysql.createConnection({ | |
| host: 'localhost', | |
| query: { | |
| pool: true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE TABLE IF NOT EXISTS `next_android_nextagram` ( | |
| `ArticleNumber` int(10) unsigned NOT NULL auto_increment COMMENT '글번호', | |
| `Title` mediumtext collate utf8_unicode_ci NOT NULL COMMENT '제목', | |
| `Writer` mediumtext collate utf8_unicode_ci NOT NULL COMMENT '글쓴이', | |
| `Id` varchar(50) collate utf8_unicode_ci NOT NULL COMMENT '아이디', | |
| `Content` varchar(1000) collate utf8_unicode_ci NOT NULL COMMENT '본문', | |
| `WriteDate` varchar(50) collate utf8_unicode_ci NOT NULL COMMENT '글쓴시각', | |
| `ImgName` varchar(100) collate utf8_unicode_ci NOT NULL COMMENT '이미지경로', | |
| UNIQUE KEY `ArticleNumber` (`ArticleNumber`) | |
| ) ; |
OlderNewer