golang Go goroutine and channel go routine Go routine is golang lightweight parallel process function. Run function asynchronously. Example ... 2019.09.29 golang
golang Go struct + method Go struct can add method in Go struct is not class. But it becomes like class. Go struct can add method This is... 2019.09.29 golang
golang Go struct Go struct Go does not have class, struct plays similar role as class in other languages Go struct definition t... 2019.09.29 golang
golang Go Server Response json encoding/json This package support byte(string) <-> struct conversion. Next example shows how to create applic... 2019.09.24 golang
golang Go Simple Server net/http Support Http Server Simple Example package main import ( "fmt" "net/http" ) func request1(w http.... 2019.09.24 golang
golang Go String Json Goal Convert string -> json (go struct, data) Convert json -> string encoding/json To handle json and... 2019.09.23 golang
Android Android Drawer – Android X Drawer Drawer is menu UI which is very common in Mobile App There is a hamburger button to open menu. ... 2019.09.19 Android
iOS WKWebView Navigation WKNavigationDelegate WKNavigationDelegate provides lifecycle hacks for WKWebView. We can interrupt navigation pro... 2019.09.01 iOS
iOS WKWebView Cookie manipulation WKWebView Cookie Under iOS 11, it's difficult to manage cookies in WKWebView. WKWebView does not allow to handle ... 2019.09.01 iOS
iOS WKWebView Get Started WKWebView vs UIWebView I am a SDK developer. And our SDK uses hybrid style (Native + Web) UIWebView is useful bec... 2019.09.01 iOS