Node 默认为我们安装了某个版本的 npm。然而 npm 的更新频率比 Node 要高一些。所以请尽量使用最新版本的 npm。
sudo npm install npm -g
sudo npm install npm -g
升级 node.js 的方法
首先安装 n 模块:
sudo npm install -g n
第二步:
升级node.js到最新稳定版
sudo n stable
sudo n stable
Node.js 安裝與版本切換教學 (for MAC)
http://icarus4.logdown.com/posts/175092-nodejs-installation-guide
利用webpack+babel建立簡單的ES6(ES2015)+React開發環境
http://rj-memo.blogspot.tw/2016/09/webpackbabeles6es2015react.html
webpack.config.js => 在這個情況中出現了
Getting error: configuration.resolve.extensions[0] should not be empty
錯誤,原來是 extensions: ['', '.js', '.json']
現在必須移除掉空的字串改成 extensions: ['.js', '.json']
了,但這寫法前幾個月前還很正常啊⋯⋯reactjs安装笔记
http://blog.breedcode.org/2016/04/13/reactjsan-zhuang-bi-ji/
React 技术栈系列教程
http://www.ruanyifeng.com/blog/2016/09/react-technology-stack.html
從零開始學 ReactJS
https://github.com/kdchang/reactjs101
FastestTube
https://kwizzu.com/
react-native-guide
https://github.com/reactnativecn/react-native-guide
React Native 蛮荒开发生存指南
https://segmentfault.com/a/1190000004910600?hmsr=toutiao.io&utm_medium=toutiao.io&utm_source=toutiao.io
React中文社区
http://reactnative.cn/docs/next/getting-started.html
React中文社区
http://react-china.org/ React Native开发教程中文社区 http://www.rnblog.cn/portal.php React-Native学习指南 |
React Native 學習參考範例分享
http://trunk-studio.com/blog/react-native-resource/
React Native 不要重造輪子,如何使用人家寫好的 Component
http://trunk-studio.com/blog/react-native-how-to-use-component/
一個完整的 React Native App 範例( 支援 iOS/Android )
React Native開發iOS 原生APP
http://www.syscom.com.tw/ePaper_New_Content.aspx?id=505&EPID=220&TableName=sgEPArticle
React Native + Firebase Email SignUp
http://aj-frame.blogspot.tw/2016/11/react-native-firebase-email-sign.html
React Native + Firebae Email SignIn
http://aj-frame.blogspot.tw/2016/11/react-native-firebae-email-signin.html
React Native + Firebase Email SignUp
http://aj-frame.blogspot.tw/2016/11/react-native-firebase-email-sign.html
React Native + Firebae Email SignIn
http://aj-frame.blogspot.tw/2016/11/react-native-firebae-email-signin.html
Genymotion 讓你在Mac上模擬Android 附加Play Store安裝教學
http://threeclab.thisistap.com/genymotion#.WB9EihJ95Sp
在ubuntu上安装kvm加速Android Emulator
https://sites.google.com/a/chromium.org/chromedriver/downloads
mac下怎么搭建selenium python环境?
https://www.zhihu.com/question/30496889
sudo pip install -U selenium
关于Python报错:SyntaxError: Non-ASCII character '\xe5' in file的解决方法
Linux配置Selenium+Chrome+Python实现自动化测试
http://zhaoyabei.github.io/2016/08/29/Linux%E9%85%8D%E7%BD%AESelenium+Chrome+Python%E5%AE%9E%E7%8E%B0%E8%87%AA%E5%8A%A8%E5%8C%96%E6%B5%8B%E8%AF%95/
https://www.zhihu.com/question/30496889
sudo pip install -U selenium
关于Python报错:SyntaxError: Non-ASCII character '\xe5' in file的解决方法
解决方法:在源码的第一行添加以下语句:
# -*- coding: UTF-8 -*-
http://docs.seleniumhq.org/docs/03_webdriver.jsp#introducing-the-selenium-webdriver-api-by-example
網路爬蟲
http://www.largitdata.com/course_list/1
python用requests+tor搭建轮换ip爬虫
http://ningning.today/2016/03/07/python/python-requests-tor-crawler/
Windows XP 的
python selenium chrome notepad++ 搭建自动化测试平台
http://www.programgo.com/article/23152653008/
windows XP 適用的版本---ChromeDriver 2.20
https://chromedriver.storage.googleapis.com/index.html?path=2.20/
from urllib.request import urlopen
from urllib2 import urlopen
BeautifulSoup(html.read())
BeautifulSoup(html.read(), "html.parser")
Mac OS X 下 Python 2.7 & 3.5 共存
因学习需要,我需要安裝 Python 3.5,但主要使用 Mac OS 10.10 的 Python 2.7,怎么样让 Python 3.5 & Python 2.7 並存在 OS 內,相互不影响呢?
我使用 “pyenv” 來控管!
我使用 “pyenv” 來控管!
官方的权威介绍和指导,请移步:https://github.com/yyuu/pyenv
1、安装OS X的套件管理器,网址如下:
如果不想打开网址的话,请打开终端,粘贴如下命令并执行:
Shell代码
ruby -e "$(curl - fsSL https://raw.githubusercontent.com/Homebrew/install /master/install)"
2、安装pyenv,命令如下:
brew update
brew install pyenv
然后在 .bash_profile 文件中添加
eval “$(pyenv init -)”
如果没有.bash_profile的文件。就自己在目录下创建一个
vi .bash_profile
eval "$(pyenv init -)"
:wq
3.使用 pyenv 安装 python 的其他版本
- 查看能安裝的版本 $ pyenv install --list
- 使用 pyenv 安装 python 3 $ pyenv install 3.5.0 -v
- 安装完成后,更新数据库 $ pyenv rehash
查看目前系统已安装的 Python 版本
$pyenv versions
* system (set by /Users/chloechen/.pyenv/version)
3.5.0
* 表示系统当前正在使用的版本
切换 Python 版本
切换 Python 版本
$ pyenv global 3.5.0
查看目前系统 Python 版本
$ pyenv versions
system
\* 3.5.0 (set by /Users/chloechen/.pyenv/version)
运行 Python,确认 Python 版本
$ python
Python 3.5.0 (default, Apr 30 2016, 18:42:13)
[GCC 4.2.1 Compatible Apple LLVM 6.1.0 (clang- 602.0.49)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
将 Python 切换回 2.7
$ pyenv global 2.7.9
UBUNTU 14.04 下 Python 2.7 & 3.5 共存
1.INSTALL PYENV DEPENDENCIES
sudo apt-get install -y make build-essential libssl-dev zlib1g-dev libbz2-dev libreadline-dev libsqlite3-dev wget curl llvm git
2.
自動化的切換軟體pyenv。
$ curl https://raw.github.com/yyuu/pyenv-installer/master/bin/pyenv-installer | bash
3.檔名: .profile
# Python environment switch
export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init -)"
$ source ~/.profile
4. 確認安裝版本。
$ pyenv --version
5. 列出 Python 版本。
$ pyenv install –l
6. 安裝新的 python 版本。
$ pyenv install 3.5.0 -v
7. 列出 python 版本。
$ pyenv versions
8. 切換另一個 python 版本。
$ export PYENV_VERSION=3.5.0
8. 切換 系統 default python 版本。
$ export PYENV_VERSION=system
React 入门实例教程
http://www.ruanyifeng.com/blog/2015/03/react.html
快快樂樂學 React 系列
http://sweeteason.pixnet.net/blog/post/42799208-react-%E5%88%9D%E5%AD%B8%E8%80%85%E7%AD%86%E8%A8%98%E8%88%87%E6%95%99%E5%AD%B8-%28%E4%B8%80%29---%E6%96%B0%E6%89%8B%E6%9D%91%E6%90%9E%E5%AE%9A%E9%96%8B%E7%99%BC
快快樂樂學 React 系列
http://sweeteason.pixnet.net/blog/post/42799208-react-%E5%88%9D%E5%AD%B8%E8%80%85%E7%AD%86%E8%A8%98%E8%88%87%E6%95%99%E5%AD%B8-%28%E4%B8%80%29---%E6%96%B0%E6%89%8B%E6%9D%91%E6%90%9E%E5%AE%9A%E9%96%8B%E7%99%BC
Vim 於 Linux、Mac、Putty 貼上時 自動切換成 Paste 模式
https://blog.longwin.com.tw/2014/12/vim-linux-mac-putty-paste-mode-change-2014/
沒有留言:
張貼留言