Install Windows Insider Preview on parallels Mac (Japanese)

Insider Preview版のWindows10をParallels (AMD64)にインストールし、Windows11にアップデートしてしばらく使っていたが、“このWindowsビルドは期限が切れています"とメッセージが表示されるので、Insider Preview版のWindows11をインストールする。 Windows環境はVBA等、日本語環境のユーザーのための開発に使っているので、Windowsは日本語で使用している(Windowsを日本語化したので、この投稿も日本語で書く) 参考: 期限切れの Insider Preview ビルドからの更新 やったこと Install Insider Preview Build 1. バックアップ VMを止めてMacのTime Machineでバックアップ Insider Previewを再インストールすると、クリーンインストールされるので注意 2. 開発用 Windows Insiderプレビュービルド(Arm64)の取得 上のガイドにある、Windowsの設定 > アップデート 等々からはプレビュービルドが見つからなかったため、こちらから取得する。 Microsoft| Windows Insider Preview Downloads 以下を選択(Confirm)し、Download Widows 11 Client Arm64 Insider Preview(Dev Channel) - Build 25227 English (Englishしか選べない) Windows11_InsiderPreview_Client_ARM64_en-us_25227.VHDXがダウンロードされる 3. プレビュービルドのインストール Windowsからプレビュービルドを実行し、インストールする。 ガイドにある「保持する項目」らしいものは出てこない。 4. Windows Insider Programの登録 Insiderプログラムのアップデートを受け取るように設定変更。 Windows Update > Windows Insider Program 「診断とフィードバック」をONにしないとアップデートを受け取れない Other setup for daily use 日本語化 Keyboard setting for Japanese システムロケールの変更: 時刻と言語 > 管理用の言語設定 > システムロケールの変更 > 日本語(日本) を選択 ロケールを日本語にしないとVBAの中の日本語文字が文字化けする 開発関連 Office applications(from Office 365 subscription) Windows Terminal 管理者権限で実行して、以下を実行して、PowerShellでスクリプトを動かせるようにする

Why the dataframes cannot be merged?

1. Assign the same data type for the merge keys Given two pandas.DataFrames: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 # a_df # amount # CODE # 20262 3.0 # 20270 1.0 # 20280 4.0 # 20281 1.0 # 20299 5.0 # b_df # CODE limit # 0 20299 4 # 1 20262 5 # 2 20270 6 # 3 20280 4 # 4 20281 3 # 5 30001 3 When I try to do outer join with pandas.

Introduction of Redux

Create template project Pre-requisite Install node.js Install VSCode see Introduction of Typescript Add chrome extension - Redux devtools Install template 1 npx create-react-app . --template redux Then you can start template project by: 1 npm start Reference redux.js.org

Introduction of Typescript

For building some simple frontend apps with React, typescript worth understanding especially for its type strictness and inference. Below code is just a memo for my private reference. Create template project Pre-requisite Install node.js Install VSCode Add extensions for VSCode ES7 React/Redux/GraphQL/R (Compliment function for react) Prettier (Code formatter) Configure prettier VSCode > settings > (type “save”) > check “editor: format on save” Install template 1 npx create-react-app .

dplyr introduction

This article is record note for Hands-on dplyr tutorial. I updated source code provided as a lecture materials of Gatech MGT6203 based on youtube instruction Hands-on dplyr tutorial for faster data manipulation in R Packages preparation 1 2 3 4 5 6 7 8 9 10 11 suppressMessages(library(dplyr)) if (!require(hflights)) install.packages("hflights") suppressMessages(library(hflights)) # explore data data(hflights) head(hflights) #tbl_df for pretty printing flights <- tbl_df(hflights) filter verb filter rows by value

Change Google colaboratory default language as R

Note Without doing below, you may see a GUI menu on Colab; Runtime > Change runtime type, then change the type of runtime into R. I’m not sure what enables this settings because some notebooks seem not have options for changing the type of runtime. If you do not see the options, below procedure would be an alternative. Option1. Create notebook with R language from URL endpoint Below link enables blank noteboook with default kernel language R.