tmp
Monday, February 29, 2016
Update eslint 1.10.3 -> 2.2.0
`package.json` ``` "devDependencies": { "babel-eslint": "5.0.0-beta6", "eslint": "1.10.3", "eslint-plugin-react": "3.16.1" } // ↓ "devDependencies": { "babel-eslint": "5.0.0", "eslint": "2.2.0", "eslint-plugin-react": "4.1.0" } ``` `.eslintrc` ``` : "ecmaFeatures": { "modules": true, "jsx": true, "experimentalObjectRestSpread": true }, : "rules": { "key-spacing": [2, {"mode": "minimum"}], "space-after-keywords": 2, "space-before-keywords": 2, "space-return-throw-case": 2, : "react/jsx-uses-react": 1 }, : // ↓ : "parserOptions": { "ecmaFeatures": { "modules": true, "jsx": true, "experimentalObjectRestSpread": true } }, : "rules": { "key-spacing": [2, {"mode": "minimum"}], : "react/jsx-uses-vars": 1, "react/jsx-uses-react": 1 }, : ```
Wednesday, February 24, 2016
PHP BigQuery Samples
PHP の Google API Client を使った BigQuery 操作のサンプルが無かったので作成 (PythonとかJavaしかなかった) Python のサンプルとなるべく同じ動作をするように移植 Source Code * https://github.com/fiahfy/php-bigquery-samples Python BigQuery Samples * https://github.com/GoogleCloudPlatform/python-docs-samples/tree/master/bigquery
Sunday, February 14, 2016
Install New Relic on Docker Host (CentOS7.1)
###Install New Relic Servers ``` $ rpm -Uvh https://yum.newrelic.com/pub/newrelic/el5/x86_64/newrelic-repo-5-3.noarch.rpm $ yum install newrelic-sysmond $ nrsysmond-config --set license_key=YOUR_LICENSE_KEY $ /etc/init.d/newrelic-sysmond start ``` ###Add user ``` $ usermod -a -G docker newrelic ``` ###Restart docker ###Restart newrelic agent
Wednesday, February 10, 2016
React Native starting error
react-native 0.19.0 アプリケーションロード時に以下のようなエラーが出るようになった ``` ReferenceError: Can't find variable: __DEV__ or Uncaught Error: Uncaught TypeError: Cannot set property 'Text' of undefined ``` 以下やったこと ###node_modulesを再インストール ```bash $ rm -rf node_modules $ npm i ``` ###projectが古いかもしれないのでupgrade ```bash $ react-native upgrade ``` ###packagerのcache削除 ```bash $ watchman watch-del-all $ ./node_modules/react-native/packager/packager.sh --reset-cache ``` 以上でも改善されず projectの `.babelrc` を削除し、`index.ios.js` を `
` だけ返すようにすると問題無いことに気づく その時の `.babelrc` ``` { "plugins": ["transform-decorators-legacy"], "presets": ["es2015", "stage-0", "react"] } ``` どれかが原因だと思い1つずつ消していくと `es2015` を消すと問題なくなった ``` { "plugins": ["transform-decorators-legacy"], "presets": ["stage-0", "react"] } ``` 謎すぎて怖い
Friday, February 5, 2016
RCTNetworking.sendRequest() not found
react-native(iOS)で ``` RCTNetworking.sendRequest() not found ``` が発生するようになった場合 * project の clean * Chrome の debugger をすべて閉じる ##参考 * https://github.com/facebook/react-native/issues/5607
Newer Posts
Older Posts
Home
Subscribe to:
Posts (Atom)