powershell error : & : AuthorizationManager check failed

2025年12月31日

ps1 ファイルが他所からダウンロードされたものであれば、ブロックされている可能性があるので、プロパティでアンブロックする

[Firebase functions] Upgrading from 1st Gen to 2nd Gen is not yet supported.

2025年12月28日

https://stackoverflow.com/questions/76829663/error-when-deploying-2nd-gen-firebase-cloud-function

アップグレードはできないので、一度削除してから再作成する

Windows 10 CHM Help Files showing up blank.

2025年6月7日
https://community.spiceworks.com/t/solved-windows-10-chm-help-files-showing-up-blank/556912

Android Studio – BuildConfig could not resolve

2025年5月26日

https://stackoverflow.com/questions/76215947/buildconfig-could-not-resolve-after-upgrading-android-studio-to-flamingo-2022/76451943

Add follwoing setting into app/build.gradle

android {
  buildFeatures {
    buildConfig true
  }
}

 

 

Namespace not specified. Specify a namespace in the module’s build file: …/app/build.gradle

2025年4月15日

remove package attribute form <manifest> in AndroidManifest.xml

add ‘namespace’ in ‘android’ in app/build.gradle

android {

namespace "com.xxx.yyy.zzzzzz"

}

UserWarning: FigureCanvasAgg is non-interactive, and thus cannot be shownplt.show()

2025年4月13日

https://discourse.matplotlib.org/t/figurecanvasagg-interactivity-problem/24042

https://stackoverflow.com/questions/77507580/userwarning-figurecanvasagg-is-non-interactive-and-thus-cannot-be-shown-plt-sh

Solved by installing PyQt6

pip install PyQt6

git error: RPC failed; curl 56 GnuTLS recv error (-9): Error decoding the received TLS packet.

2025年3月13日

https://stackoverflow.com/questions/38378914/how-to-fix-git-error-rpc-failed-curl-56-gnutls

git config --global http.postBuffer 1048576000
git config --global https.postBuffer 1048576000

https://github.com/orgs/community/discussions/134430

ReactNative Error: Can’t create handler inside thread Thread[create_react_context,5,main] that has not called Looper.prepare()

2025年3月12日
java.lang.RuntimeException: Can't create handler inside thread Thread[create_react_context,5,main] that has not called Looper.prepare()
Need to pass 'Looper.getMainLooper()' to constructor of Handler

pip error: This environment is externally managed

2025年3月9日

https://stackoverflow.com/questions/75608323/how-do-i-solve-error-externally-managed-environment-every-time-i-use-pip-3

python3 -m pip config set global.break-system-packages true

error C1090: PDB API call failed, error code ‘3’

2025年3月6日

project properties: C++ > Output files: Program Database Filename
Set empty this field, then rebuild