Evernote や Simplenote から「メモ」へ。

10数年のクズなメモがあちこち散乱していましたので、

MacOS標準搭載の「メモ」に統一しました。

エクスポート時の異なったファイル形式たちが気になっていましたが。

Evernote の .enex

1. ナビゲーションメニューで「ノートブック」をクリックします。
2. メインパネルでノートブックを右クリックし、「ノートをエクスポート...」を選択します。
3. 必要に応じて、エクスポートファイルの名前を変更します。
4.「保存」をクリックします。

👉 ノートブックをエクスポートする – Evernote ヘルプ&参考情報 

Simplenote の .txt (zip解凍後)

Migrate from SimpleNote
SimpleNote allows you to download your notes in a handy zip file containing text files. Unfortunately, the files do not include tags or other meta information. To download the archive log to https://app.simplenote.com with your account, click on the top left button to show the sidebar and access to the settings. In SimpleNote settings, select Tools and Export notes do download a zip file containing all your notes. Uncompress the zip file and import all the txt files in Bear.

👉 Migrate from SimpleNote | FAQ & Support | Bear App 

上手にインポートできます。

読み込めるテキストファイルの形式

Mac では、各種形式のテキストファイルをメモ App に読み込めます。ファイルを読み込むと、各テキストファイルがそれぞれ新しいメモに変換されます。
メモ App には、以下の形式のファイルを読み込めます。
* .txt
* .rtf
* .rtfd
* .html

Evernote から読み込む

Mac、iPhone、iPad、iPod touch で、Evernote から書き出したファイル (.enex ファイル) を読み込めます。各 .enex ファイルに 1 つまたは複数のノートが入っています。.enex ファイルを読み込むと、Evernote の各ノートがそれぞれメモ App で新しいメモに変換されます。 
ファイルに入っている Evernote ノートで、メモ App が対応していない添付ファイルや機能が使われている場合、それらは読み込みの最中に削除されます。

👉 メモやファイルをメモ App に読み込む - Apple サポート 

今後を見据えて、さらにの引っ越しも考えておきます。

データのエクスポートアプリが存在するようです。

👉 ‎「Exporter」をMac App Storeで 

👉 Appleのメモアプリに保存したメモをMarkdown形式で書き出してくれるユーティリティ「Exporter」が添付された画像の書き出しとMarkdownでのTable/URL表示をサポート。 | AAPL Ch. 
👉 【Mac】「メモ.app」の内容をテキストでエクスポートする無料アプリ「Exporter」 | 酔いどれオヤジのブログwp 

非公式なインド人作の「Exporter」。

しばらくしたら、このアプリなくなったりしませんよね?

👉 Simplenote 
👉 最高のメモアプリ - Evernote で大切なノートを整理 


GitHub から AndroidStudio にプロジェクトインポートする手順

 

GitHubアカウントは使わず、forkとかなし。
facebook-android-sdk のサンプルを稼働させるまで。

facebook_facebook-android-sdk

facebook/facebook-android-sdk

 

手順

1. ソースを取得、展開
2. local.properties の作成
3. settings.gradle の作成
4. build.gradle の作成
5. プロジェクトインポート
6. できあがり

順番にやっていく。

続きを読む >>


Eclipseで作ったプロジェクトをプラグインなしでAndroidStudioにインポートする方法

ネット上にあるサンプルコードとか
Eclipseで作られたものがほとんどです。

で、AndroidStudioで使おうとすると、
Eclipse上でそれ用のプラグインがあります。

これを使ってまずエクスポートします。

Export from Eclipse

1. Update your Eclipse ADT Plugin (you must have version 22.0 or higher).
2. In Eclipse, select File > Export.
3. In the window that appears, open Android and select Generate Gradle build files.
4. Select the project you want to export for Android Studio and click Finish.
5. Your selected project remains in the same location but now contains a build.gradle file and is ready for Android Studio.

で、その後、AndroidStudioを起動して
そのディレクトリに対してインポートします。

Import into Android Studio

1. In Android Studio, close any projects currently open. You should see the Welcome to Android Studio window.
2. Click Import Project.
3. Locate the project you exported from Eclipse, expand it, select the build.gradle file and click OK.
4. In the following dialog, leave Use gradle wrapper selected and click OK. (You do not need to specify the Gradle home.)

Migrating from Eclipse | Android Developers Migrating from Eclipse | Android Developers

これって、いちいちEclipseを起動するのめんどくね?

なので、Eclipseのプロジェクトのディレクトリに対して
「Eclipse起動なし」で
AndroidStudioにインポートしてみます。

続きを読む >>