Development
Kotlin: HTTP GET/POST sample code
March 23, 2018 AndroidDevelopmentKotlin
Unfortunate, Coroutines are still experimental on the Kotlin 1.2. This code is a simple HTTP GET/POST with JSON by using the AsyncTask. Hope this will help you.
Laravel 5.6.7: Sequel Pro + Vagrant setup upon the Macbook
March 4, 2018 DevelopmentPHP
After create and migrate database by “php artisan migrate”, sometimes wants to manipulate database directly, especially in debug. Sequel Pro is one of the best MySQL tools for Mac. Here is a setup memo.
Laravel 5.6.7: npm install failed
March 3, 2018 DevelopmentPHP
When I setting up Laravel 5.6.7 on PHP 7.1.15 encountered error while the npm install. I think this is not laravel problem. But If this hasn’t soleved, can’t development vue.js. So, I will share a hint.
Eclipse: Can’t Zoom In (Cmd +) in Japanese Keyboard, MacBook
March 2, 2018 Development
“Zoom out” assigned to “Cmd -” and “Zoom in” assigned to “Cmd +” key. But “Zoom in” doesn’t work in Japanese keyboard.
Android ListView: Searching/Filtering by SearchView
February 5, 2018 AndroidDevelopment
Original ListView has a functionality to filtering by text keyword. But it’s not able to search up all keyword. It only search the top of the text. This is a simple solution to search all up.
Android: Couldn’t create directory on external storage.
November 17, 2017 AndroidDevelopment
Now I’m developing an Android program that download MP3 file and store it on the external storage. Download is fine. But I had stuck at creating a directory on the external storage. 😅
How to check see if iPod audio file is DRM or not downloaded?
November 16, 2017 DevelopmentiOSSwift
MPMediaItem is a collection of properties that represents a single item contained in the media library. It contains property to see if audio file of the iPod is DRM or downloaded.
SKView. Falling snow overlaying existing view. Swift 4.
October 23, 2017 DevelopmentiOSSwift
To add falling snow 🌨 effect on your existing view. Need to pass the events in to underlying view.
Xcode 9 – Source Control Navigator issue
October 19, 2017 AppleDevelopmentiOSXcode
Source Control Navigator can be show one project usually. But sometimes show multiple project on Source Code Navigator. Why?☹️
MP3 Recording with lame and AVAudioEngine, Swift 4
October 13, 2017 DevelopmentiOSPrototypingSwift
MP3 file format is popular but iOS can’t support for recording with MP3 file format. Here is a sample code using the lame which can convert pcm to mp3.