Talk to Me in Korean Level 4 快速複習
第一課 -면 Vst + 을수록 愈愈 맛있을수록 잘 팔려요. 愈好吃,賣愈好。 바쁠수록 건강이 중요해요. 愈忙,健康愈重要。 많으면 많을수록 좋아요. 愈多愈好。 갈수록 추워요. 愈來愈冷。 ...
第一課 -면 Vst + 을수록 愈愈 맛있을수록 잘 팔려요. 愈好吃,賣愈好。 바쁠수록 건강이 중요해요. 愈忙,健康愈重要。 많으면 많을수록 좋아요. 愈多愈好。 갈수록 추워요. 愈來愈冷。 ...
가 是用於當下觀察到的狀況,而不是常態性的情況。 는 則是用於表示一般的狀況;或是有要跟別的前後文作比較時才使用。
p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 17.0px ‘Helvetica Neue’} p.p2 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px ‘Helvetica Neue’; min-height: 14.0px} p.p3 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px ‘Helvetica Neue’} p.p4 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px ‘PingFang TC’} TTMIK Level 3 第一課 너무 太多、非常 너무 커요. 太大 너무 어려워요. 太難 ...
最近開始比較認真的學習韓文。想說應該要來把一些資料記錄下來,方便之後複習用。Talk to Me in Korean 是一份很不錯的教材,每篇教學大約都 20 分鐘左右。平常上班通勤時間大約 40 分鐘,所以把 podcast 播放速度設定為 1.2 倍的話,都可以聽個兩課。 ...

I used to using this plugin for creating android library release zip file, and manually upload it to bintray website. blundell/release-android-library Recently, it says it’s no longer being maintained; and another gradle plugin is recommended. novoda/bintray-release Novoda’s bintray-release allows you to upload locally built javadoc/source jars, and library aar files to bintray directly, without manual work. What a relief if it really works. By following the instructions on GitHub, within minutes, the configuration is ready for trial. ...

對一個 Android app 開發者來說,工作中使用時間最長的軟體,我想應該就是 Android Studio 了吧。 工欲善其事,必先利其器。除了要花時間熟悉內建的各項功能外,有些時候,根據自己的開發習慣,會希望它再額外多些功能,讓自己的開發流程更加順手。 ...

In Flutter, it’s easy to load an Image widget. Flutter provides several different ways: You can use ***Image.network(), Image.asset() or Image.memory()***depending on the source you want to load the image. However, Flutter is known to be slow at processing image, including decoding image when the source file is relatively large. View gist The above code snippet is an example of loading an Image from the internet. At line 8: download the data from the internet; ...

Flickr Authentication in Flutter (II) Following the steps described in last article, you can have a working version of Flickr authentication module in Flutter. However, it’s very tedious to remember the pin code, and input it in the dialog in step 2. By reading closely the “Getting a request token” part in Flickr website, you’ll find that, in fact, there’s another way to get the verifier we need without user intervention. A parameter called “oauth_callback” is used to specify a url. If it’s defined in the request; after authorization is complete, Flickr will redirect the user back to your application using the oauth_callback specified with your Request Token. It looks like this: ...

上高地。日本 Clean Architecture: A Craftsman’s Guide to Software Structure and Design, First Edition Part I writing working codes is easy; to write codes that are easy to maintain and extend is really hard. Ch1 What is Design & Architecture In this book, design and architecture means the same thing: it’s simply a continuum of decisions from the highest to the lowest levels. ...

Flickr used to be a cool photo service that gathered many talented photographers. I started uploading all my photos to it since 2005, and now I’ve uploaded more than 160k photos. With so many memories in Flickr, I would like to have an app to randomly show me my own photos in order to refresh good old memories. There are many Flickr API Kits in different programming languages in Flickr official website; however, Dart is not one of them. I either need to implement the API wrapper by referencing its Web API document or find another solution on the internet. ...