v5tech
v5tech
搜索页面 ``` html 西安交通大学网络公开课-搜索 .backToTop { display: none; width: 18px; line-height: 1.2; padding: 5px 0; background-color: #000; color: #fff; font-size: 12px; text-align: center; position: fixed; _position: absolute; right: 10px; bottom:...
http://tech.uc.cn/?p=2387 ### 上传solr配置文件到zookeeper ``` bash java -classpath D:\SolrCloud\tomcat1\webapps\solr\WEB-INF\lib\* org.apache.solr.cloud.ZkCLI -cmd upconfig -zkhost 127.0.0.1:2181,127.0.0.1:2182,127.0.0.1:2183 -confdir D:\SolrCloud\solr1\collection1\conf -confname myconf ``` ### 创建collections 其名为mycollection 含2个分片每个分片2个副本 http://127.0.0.1:8080/solr/admin/collections?action=CREATE&name=mycollection&numShards=2&replicationFactor=2 ### 创建collections 其名为singlecollection 含1个分片4个副本 http://127.0.0.1:8080/solr/admin/collections?action=CREATE&name=singlecollection&numShards=1&replicationFactor=4 ### 删除collection1...
[Intermediate iOS Programming with Swift 笔记](http://chengway.in/post/ji-zhu/intermediate-ios-programming-with-swift)
# elasticsearch rest api 快速上手 > 注:本文档中除无特别说明,请求方式均为`GET`。所有的请求均在`Sense`中测试通过 遵循的格式为 ``` curl -X :/// ``` ### 集群健康查看 - http://127.0.0.1:9200/_cat/health?v ``` epoch timestamp cluster status node.total node.data shards pri relo init unassign pending_tasks...
- 45 Useful JavaScript Tips, Tricks and Best Practices http://modernweb.com/2013/12/23/45-useful-javascript-tips-tricks-and-best-practices/ - What are the most interesting HTML/JS/DOM/CSS hacks that most web developers don't know about? http://www.quora.com/What-are-the-most-interesting-HTML-JS-DOM-CSS-hacks-that-most-web-developers-dont-know-about - 10 Small Things...
在windows平台下直接使用`pip install pycurl`会报错,可以去http://www.lfd.uci.edu/~gohlke/pythonlibs/ 下载pycurl的whl包然后再使用`pip`命令安装 https://pip.pypa.io/en/latest/user_guide.html#installing-from-wheels ``` bash pip install pycurl‑7.19.5.1‑cp27‑none‑win_amd64.whl ``` http://www.lfd.uci.edu/~gohlke/pythonlibs/ python 类库二进制安装包
``` bash sudo killall -9 com.apple.CoreSimulator.CoreSimulatorService && rm -rf ~/Library/Developer/CoreSimulator/Devices ```
[http://blog.yorkgu.me/2015/05/12/how-to-make-dmg-files-in-mac-osx/](http://blog.yorkgu.me/2015/05/12/how-to-make-dmg-files-in-mac-osx/)
http://facebook.github.io/react-native/ https://css-tricks.com/snippets/css/a-guide-to-flexbox/ https://rnplay.org/ http://react.parts/native-ios http://www.raywenderlich.com/99473/introducing-react-native-building-apps-javascript https://egghead.io/lessons/react-react-native-up-and-running http://herman.asia/building-a-flashcard-app-with-react-native http://www.reactnative.com/tag/tutorial/ http://www.ruanyifeng.com/blog/2015/03/react.html http://www.appcoda.com/react-native-introduction/
http://note.rpsh.net/posts/2015/04/21/mac-osx-ffmpeg-mp4-gif-convert 在 Mac OSX 上使用 Homebrew 安装 ffmpeg: ``` bash brew install ffmpeg brew install ffmpeg --with-fdk-aac --with-ffplay --with-freetype --with-libass --with-libquvi --with-libvorbis --with-libvpx --with-opus --with-x265 brew update && brew upgrade...