トラブルシューティング
楽天モバイルのSIMカード入れてAPN Settingで"rakuten.jp"入れた iPadで「インターネット共有」が出ない iPadで出てこない https://support.apple.com/guide/ipad/ipadb2c87b68/ipados SIMカード入れて再起動しても出ない・・。 英語版は「Personal Hotspot…
起動時のCommand+Rを押した時 Sierraになるし、ずっと「復旧サーバーに接続できませんでした」エラー こんな記事がある Macで「復旧サーバーに接続できませんでした」エラーの解決法 Macで「復旧サーバーに接続できませんでした」エラーの解決法 https://jp.…
https://techblog.glpgs.com/entry/2023/03/01/165521 UITableViewDiffableDataSource を使ってるときは、 それぞれのA,BのジェネリクスでHashableを実装しておかないといけないようだ。 UITableViewDiffableDataSource<A, B> 以下のエラー Terminating app due to</a,>…
このエラーがうざい やり方あった https://www.reddit.com/r/godot/comments/16d15in/error_when_trying_to_export_project_on_android/ Enable this setting: Project >> Project Settings... >> General >> Rendering >> Textures >> VRAM Compression >> …
npm installすると以下のエラー npm ERR! code ECONNREFUSED npm ERR! syscall connect npm ERR! errno ECONNREFUSED npm ERR! FetchError: request to http://registry.npmjs.org/@storybook%2faddon-actions failed, reason: connect ECONNREFUSED 2606:47…
Unityのプロジェクトを久々に更新してみたら ```` Requested value 'X86' was not found. の赤いエラーが発生し続ける。 [https://github.com/googlesamples/unity-jar-resolver/issues/230:title] ここをみて、 こいつをDLし、 [https://github.com/googles…
Installing the package | Package Manager UI website /Users/shinriyo/tiny/Library/PackageCache/com.unity.tiny@0.13.4-preview/Runtime/InternalBridge/GUIUtilityBridge.cs(8,45): error CS1644: Feature `expression bodied members' cannot be used …
flutter run -vでエラー #0 throwToolExit (package:flutter_tools/src/base/common.dart:26:3) #1 RunCommand.validateCommand (package:flutter_tools/src/commands/run.dart:249:7) <asynchronous suspension> flutter clean flutter update-packages これまずやる flutter packages</asynchronous>…
Androidのリリースビルドしようと、 flutter build apk するときに Running "flutter packages get" in cafemaster... The current Dart SDK version is 2.1.0-dev.9.4.flutter-f9ebf21297. Because shared_preferences 0.3.3 requires SDK version >=1.8.0 …
Unable to resolve module `./../../react-transform-hmr/lib/index.js` がシミュレータのエラーで出る。 https://stackoverflow.com/questions/52659866/unable-to-resolve-module-react-transform-hmr-lib-index-js 僕は"react": "^16.5.2"``0.57なので関…
error: bundling failed: Error: Plugin/Preset files are not allowed to export objects, only functions. In /Users/shinriyo/development/react_apps/kazoemon/node_modules/babel-preset-react-native-stage-0/index.js at createDescriptor (/Users/sh…
こっちはFacebook公式ReactNativeのIssue https://github.com/facebook/react-native/issues/14590 しかし、 import PropTypes from 'prop-types'; worked for me !! Thanks ってあるけど僕はもうやってる・・。 と思ったが、発生している箇所は、 node_modu…
React native google admob error? - Stack Overflow https://github.com/sbugert/react-native-admob/issues/230 react-native linkをする?
ブラウザのconsoleには以下のエラー。 Uncaught (in promise) Error: PERMISSION_DENIED: Permission denied javascript - Firebase Permission Denied - Stack Overflow ログイン - Google アカウント とあるが、 Permission denied in Firebase Realtime D…
FIREBASE FATAL ERROR: Can't determine Firebase Database URL. Be sure to include databaseURL option when calling firebase.initializeApp(). これはおそらく、 firebase.initializeApp( { apiKey: process.env.APIKEY, authDomain: process.env.AUTHDO…
「出品が許可されていません。出品権限を有効にして、商品の登録や出品情報の更新を再開してください。」 のエラー 良い合わせた 回答 shinriyo ご担当者様 Amazonテクニカルサポートよりご連絡いたします。 また、このたびはAmazon.co.jpのご利用において、…
<textarea>をつかうと index.js:2177 Warning: Use the `defaultValue` or `value` props instead of setting children on <textarea>. のエラーがでた。 HTML自体の<textarea>の書き方がinputと違い、タグの中身にかくのが統一性がなくて気に入らないなと思ってた。 </textarea>…
nimxを試そうと、 GitHub - yglukhov/nimx: GUI library nimble install nimxして、 READMEにある通りmain.nimを作って、 import nimx.window import nimx.text_field proc startApp() = # First create a window. Window is the root of view hierarchy. va…
neo4j startで起動してhttp://localhost:7474にアクセスすると、 デフォルトは ID: neo4j PASS: neo4j 以下のエラー。 ServiceUnavailable: WebSocket connection failure. Due to security constraints in your web browser, the reason for the failure is…
簡単に書くためdivを例に。 これは余裕で書ける。 render() { return ( <div /> ); } しかし、以下のように2つ書いたら当然のように怒られる。 render() { return ( <div /> <div /> ); } [tslint] unused expression, expected an assignment or function call (no-unused-expre</div></div></div>…
Ionicでiosのためのビルドした。 ionic cordova build ios をしてみるとエラーになった。 xcode-select: error: tool 'xcodebuild' requires Xcode, but active developer directory '/Library/Developer/CommandLineTools' is a command line tools instanc…
ChromeにResourcesがなくてlocalStorage確認できない。 ここにある!
YentenをMacでマイナーをビルドする。 | なんでも秘密研究所 この手順真似してやった。 ネタでしかない仮想通貨「円天(Yenten)」をマイニングして暖を取る話 | Tokoro's Tech-Note このエラー。 ./configure --with-curl configure: error: cannot find inst…
React.js で map() を使ってみる - Qiita const numbers = [1, 2, 3, 4, 5]; const listItems = numbers.map((number) => <li>{number}</li> ); これreturnで{listItems}すると、 If you meant to render a collection of children, use an array instead. Array使え…
ゲーム開発の民主化のゲームエンジンUnityにて No Drag&Drop has been setup. Please UnityEditor.DockArea:OnGUI() のエラー。 これが出るとInspectorでドラッグ・アンド・ドロップできない。 Unity再起動しても駄目。Macの再起動で直るかもしれないけどめ…
Kotlin ktorのWebでうまく日本語が出ない・・。 call.respondText("へろわ", ContentType.Text.Html)のように書いてだめだったのでこうしたのに。 import org.jetbrains.ktor.netty.* import org.jetbrains.ktor.routing.* import org.jetbrains.ktor.applic…
GoogleMapのAPIを使おうと developers.google.com ここに行って設定したのにも関わらず、、、 ClientParametersRequest failed, 7 attempts remaining (0 vs 11). Error のエラーがXcodeで出てくる。 ここ見た。 http://stackoverflow.com/questions/3205434…
XamlFilePathAttribute' does not exist in the namespace のエラーが出た。 https://forums.xamarin.com/discussion/86352/i-keep-getting-xamlfilepathattribute-class-not-found-error-when-modifying-xaml-files を見る。 Cleanをする、その後でbinとobj…
/Users/shinriyo/.rbenv/versions/2.4.1/lib/ruby/2.4.0/rubygems/core_ext/kernel_require.rb:55:in `require': cannot load such file -- tk (LoadError) from /Users/shinriyo/.rbenv/versions/2.4.1/lib/ruby/2.4.0/rubygems/core_ext/kernel_require.rb…
<W> fish: An error occurred while redirecting file '/Users/shinriyo/.rbenv/version' open: No such file or directory rbenv global 2.4.1 のコマンド。 それで消えた。</w>