기본 콘텐츠로 건너뛰기

3월, 2016의 게시물 표시

외화 송금 기사 스크랩

1992.03.02 스위프트 망 개통  http://news.naver.com/main/read.nhn?mode=LSD&mid=sec&sid1=101&oid=001&aid=0003645400 웨스턴유니온 전신회사. 2000.05.30 한빛은행 ,  머니그램  http://news.naver.com/main/read.nhn?mode=LSD&mid=sec&sid1=101&oid=009&aid=0000115469 머니그램사는 영국계 금융기관인 토마스 쿡과 미국계 금융회사인 머니그램 페이먼트 시스템사가 공동출자해 만든 회사로 전세계 130여개국에 3만여개 영업소를 통해 송금서비스를 하고 있다. 2001.05.08 국민은행  특별외화송금서비스 ,   http://news.naver.com/main/read.nhn?mode=LSD&mid=sec&sid1=101&oid=009&aid=0000115469 현지 은행에 계좌가 없어도 송금한 금액을 찾을 수 있는 특급 해외송금서비스를 시작한다. 부산은행 2004.12.02  http://news.naver.com/main/read.nhn?mode=LSD&mid=sec&sid1=102&oid=082&aid=0000025483 농협은행 2007.11월14일 이번에 웨스턴유니온과 새로 계약을 체결한 두 에이전트는 다이렉트에이전트5( Direct   Agent  5,  Inc , 이하  DA -5)와  JPT  센트럴 코퍼릿 홀딩&매니지먼트사( JPT   Central   Corporate   Holding  &  Management   Corporation , 이하 JPT )이며, 이들 기업의 참여로 필리핀 지역 에이전트 수는 총 6개가 되었고 지점 수는 총 6000개를 넘어섰다.  이번 신규 계약 체결은, 전국 어디서나 신속하고 편리하며 믿을 수 있는 송금서비스를 제공하려는

cordova ios webview bounce disable

config.xml 은 추가 해 봐야 소용 없음 AppDelegate.m 의 - (BOOL)application:(UIApplication*)application didFinishLaunchingWithOptions:(NSDictionary*)launchOptions 에 아래 코드 추가 self.viewController.webView.scrollView.bounces = NO; AppDelegate.m /** * This is main kick off after the app inits, the views and Settings are setup here. (preferred - iOS4 and up) */ - (BOOL)application:(UIApplication*)application didFinishLaunchingWithOptions:(NSDictionary*)launchOptions { CGRect screenBounds = [[UIScreen mainScreen] bounds]; #if __has_feature(objc_arc) self.window = [[UIWindow alloc] initWithFrame:screenBounds]; #else self.window = [[[UIWindow alloc] initWithFrame:screenBounds] autorelease]; #endif self.window.autoresizesSubviews = YES; #if __has_feature(objc_arc) self.viewController = [[MainViewController alloc] init]; #else self.viewController = [[[MainViewController alloc] init] autorelease]; #endif // Set your app's start page by setting the

cordova webview posturl

cordova webview posturl import android.webkit.WebView; import org.apache.cordova.*; import org.apache.http.util.EncodingUtils; public class MainActivity extends CordovaActivity { private static Dialog loginDialog; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); String TRAGET_URL = "http://example.com/login/login_verify"; String POST_DATA = "login_id=test&login_pass=1111"; postUrl(TRAGET_URL,POST_DATA); } /** * Load the url into the webview. */ public void postUrl(String url,String data) { if (appView == null) { init(); } // If keepRunning this.keepRunning = preferences.getBoolean("KeepRunning", true); //appView.lo WebView mWebView = (WebView) appView.getView(); // WebView mWebView = (WebView) findViewById(R.id.mWebView); // WHERE R.id.mWebView is o

htmltojsx all files in directory

publishing html file to jsx is hard working. webversion  https://facebook.github.io/react/html-jsx.html 1. install glob and htmltojsx #npm install htmltojsx -g #npm install glob 2. convert.js var glob = require("glob") var sys = require('sys') var exec = require('child_process').exec; function puts(error, stdout, stderr) { sys.puts(stdout) } // options is optional glob("html/pub/pages/*.html", {}, function (er, files) { // files is an array of filenames. // If the `nonull` option is set, and nothing // was found, then files is ["**/*.js"] // er is an error object or null. //console.log(files); var src = '/Users/hongsangbeom/Documents/moneytag/html/pub/pages'; var dst = '/Users/hongsangbeom/Documents/moneytag/html/dev/tmp'; for(var index in files){ var fnameArr = files[index].split('/'); var fileName = fnameArr[fnameArr.length-1]; var nArr = fileName.split('.'); var