码迷,mamicode.com
首页 >  
搜索关键字:surface book    ( 5453个结果
ansible 一些简单的使用
[root@ha~]#lsanaconda-ks.cfgansiblehar1.shhar.shinstall.loginstall.log.syslogpurge_relay_logs.shshell[root@ha~]#cdansible/[root@haansible]#lsbookhost[root@haansible]#pwd/root/ansible[root@haansible]#lsbookhost[root@haansible]#我的host主机和play-book是在单独..
分类:其他好文   时间:2015-01-04 19:43:47    阅读次数:238
CentOS之Phabricator的安装配置必须成功版!
https://secure.phabricator.com/book/phabricator/article/installation_guide/#installation-requirement以上是官方文档把centos版的phabricator安装脚本下载到opt目录并安装#cd/opt#wgethttp://www.phabricator.com/rsrc/install/install_rhel-derivs.sh#chmod777install_rh..
分类:其他好文   时间:2015-01-04 19:41:50    阅读次数:180
matplotlib 画图 三维图
#绘制三维图 import numpy as np import mpl_toolkits.mplot3d import matplotlib.pyplot as plt x,y=np.mgrid[-2:2:20j,-2:2:20j] z=x*np.exp(-x**2-y**2) ax=plt.subplot(111,projection='3d') ax.plot_surface(x,y,z,r...
分类:其他好文   时间:2015-01-04 17:10:27    阅读次数:258
[Android]浮层视频效果,在另外一个Window使用SurfaceView无法正常显示的问题排查与解决
视频浮层下使用SurfaceView遇到的问题和解决方案...
分类:移动开发   时间:2015-01-04 13:36:55    阅读次数:274
nginx相关参考博客
http://tengine.taobao.org/book/http://blog.sina.com.cn/s/articlelist_1929617884_0_1.htmlhttp://blog.csdn.net/Marcky/
分类:其他好文   时间:2015-01-03 23:39:41    阅读次数:165
android开机动画启动流程
从android的Surface Flinger服务启动分析知道,开机动画是在SurfaceFlinger实例通过调用startBootAnim()启动的。 下面我们就一起学习BootAnim是如何启动和结束的,我精读代码前都喜欢先描出框架图,以此图为基础再去研读会达到事半功倍的效果。好吧,直接上图。 内核起来后会启动第一个进程,即init进程。 init进程...
分类:移动开发   时间:2014-12-31 18:34:49    阅读次数:12916
Mysql 修改列,增加列,删除列常用指令
ALTER TABLE:添加,修改,删除表的列,约束等表的定义。 查看列:desc 表名; 修改表名:alter table t_book rename to bbb; 添加列:alter table 表名 add column 列名 varchar(30); 删除列:alter table 表名 drop column 列名; 修改列名MySQL: alter table bbb ch...
分类:数据库   时间:2014-12-31 16:22:40    阅读次数:200
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!