
用 Flutter + Google Sheets 建立單字本 App
Flutter 整合 Google Sheets 建立單字本 App Seoul. Korea 用 Flutter 開發 App 很快速,但遇到需要有後台的應用時,一般的考量都會是採用 Firebase。Firebase 的整合不會太困難,但是前置作業有點多,對於一個只是需要從雲端某處讀取資料,而又希望這份資料可以很方便地透過網路來編輯的話,Flutter + Google Sheets 是個不錯的方案。 ...

Flutter 整合 Google Sheets 建立單字本 App Seoul. Korea 用 Flutter 開發 App 很快速,但遇到需要有後台的應用時,一般的考量都會是採用 Firebase。Firebase 的整合不會太困難,但是前置作業有點多,對於一個只是需要從雲端某處讀取資料,而又希望這份資料可以很方便地透過網路來編輯的話,Flutter + Google Sheets 是個不錯的方案。 ...

한강 最近開始比較認真的學習韓文。想說應該要來把一些資料記錄下來,方便之後複習用。Talk to Me in Korean 是一份很不錯的教材,每篇教學大約都 20 分鐘左右。平常上班通勤時間大約 40 分鐘,所以把 podcast 播放速度設定為 1.2 倍的話,都可以聽個兩課。 12 月就這麼把 Level 2 給聽了一遍。為了避免 1 月時就全忘光,在這兒把每課的教學重點和例句記錄下來。 ...
第一課 -(으)ㄹ 뻔했다, 할 뻔했다 幾乎做了~ 살 뻔했어요. 我差點就買了。 믿을 뻔했어요. 我差點就相信了。 울 뻔했어요. 差點就哭了。 돈을 잃을 뻔했어요. 差點掉了我的錢。 ...
第一課 -면 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; ...