テキストエディタ nvALT【Mac】

こんな記事を見ました。

nvALT syncs with Simplenote. This is handy because nvALT is macOS only. So you can use the Simplenote iOS app to keep your extra brain nearby on the go.

Simplenote also has a macOS app. You may think: Why not use the Simplenote desktop application? Because — it’s not quite as fast. We’re talking milliseconds, but it’s enough that you feel the difference. It’s the difference between the $1000 Japanese garden shears and the $150 garden shears. They both cut just fine, but if you work in the garden all day, you will (probably?) feel the difference.

nvALT は Simplenote と同期できます。nvALT は mac だけのアプリなのでこれは便利です。よって、外出時に、Simplenote の iOS アプリを利用することができます。

Simplenote には mac OS アプリもあります。どうして、Simplenote のデスクトップアプリを使わないのか、とあなたは思うかもしれません。速さが違います。ミリ秒レベルの話ですが違いを認識するには十分な速さです。

👉 Fast Software, the Best Software — by Craig Mod 

テキストエディタ以外のアプリについても言及していますが、述べられてることは共感できることが多いです。

nvALT*
Simplenote
Ulysses
Sublime Text

Lightroom
Photoshop
Affinity Photo*

Sketch*
Figma*
Illustlator

Apple Maps*
Google Map

Keynote

「nvALT」使ってみましょう。

使ってみる

文章サイズのテキスト。

私は、編集するのに Simplenote の Mac用デスクトップクライアントを使っていました。

インストールしてみます。

👉 nvALT - BrettTerpstra.com 

サクサクに動きます。

しかも、Simplenote とクラウド連携できる。

Simplenote ユーザでない人は、Dropbox で連携も可能な様子。

良い、これ。

当分使ってみることにします。


スマホリングの剥がし方

力ずくではカバーが外れてしまいます。

下敷きのような硬い薄い何かを差し込むと簡単に剥がれます。


KYOKA スマホ リング ホールドリング 薄型 スタンド機能 落下防止 車載ホルダー 360回転 iPhone/Android各種他対応 (ブラック)


Homefunny 解体ツール8セット 携帯電話の修復ツール FOR iPhone 画面 修理 工具 開腹・分解・修復用専門ツール


Cannot inline bytecode built with JVM target 1.8 into bytecode that is being built with JVM target 1.6. Please specify proper '-jvm-target' option

なんすかね、まったく。

Cannot inline bytecode built with JVM target 1.8 into bytecode that is being built with JVM target 1.6. Please specify proper '-jvm-target' option

[Preferences]-[Kotlin Compiler] から、[Target JVM version] を 「1.8」に。

ところが、同じエラーが出たまま。

対処法

以下を、build.gradle に。


android {
  kotlinOptions {
    jvmTarget = '1.8'
  }
}

Android Studio の便利そうに見える設定機能ってほとんどがあやしくね?

👉 intellij idea - Why kotlin gradle plugin cannot build with 1.8 target? - Stack Overflow