기본 콘텐츠로 건너뛰기

외화 송금 기사 스크랩

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 )이며, 이들 기업의 참여로 필리핀 지역 에이전...

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...

android remote debugging public ip

myPC  --|1|-- ssh-server --|2|-- android Phone 1. ssh-server    enable remote ssh tunnel    linux Ubuntu 14.01 LTS 64bit    i used virtualbox vmware. 3. android Phone    ssh-client connect to ssh-server and remote forwarding.    3g or wifi all ok. Setting. 1. Android Phone - wifi debugging enable special port    connect usb to Mypc.    open cmd    goto android sdk tool directory (ex: cd android\sdk\platform-tools )    Enable special Port : adb tcpip 6555    Restore usb debugging mode : adb      

책 소개 - javascript good parts

Douglas Crockford 가 쓴 책이다.  초급을 위한 책이 아닌 , ajax 나 web programing 이 아닌 , reference 북이 아닌  lanuage 자체에 대한 책이다.  to be a good javascript programmer , apply good parts and avoid bad parts. and he says "sometimes language designers make mistakes". The very good ideas include functions, loose typing, dynamic objects, and an expressive object literal notation. The bad ideas include a programming model based on global variables. If you attempt to apply classical design patterns directly to JavaScript, you will be frustrated. But if you learn to work with JavaScript’s prototypal nature, your efforts will be rewarded. 

Android Macro Howto

Goal 1.read screen 2.send event 3.read/memory 2.1) Using of internal API. But i cant find API in sources witch i can use. […] 2.2) linux level send event  http://www.kernel.org/doc/Documentation/input/multi-touch-protocol.txt  /dev/input/event2 * reference http://www.pocketmagic.net/2012/04/injecting-events-programatically-on-android/#.VKEcAsAi9A http://hellonewworld.tistory.com/183 http://blog.softteco.com/2011/03/android-low-level-shell-click-on-screen.html http://blog.softteco.com/2011/03/android-writing-events-low-level-touch.html