PHP 扩展篇 _ 持续更新】的更多相关文章

记住这个网站:http://pecl.php.net/ PHP-Redis扩展更新时间:2019/05/06 PHP安装Redis 1:下载目前最新版的redis插件 wget http://pecl.php.net/get/redis-4.3.0.tgz 2:解压安装 .tgz cd redis- /usr/local/php/bin/phpize ./configure --with-php-config=/usr/local/php/bin/php-config make && ma…
imu标定 工具包:imu_utils,   imu_tk,   kalibr 用kalibr做标定,相机和imu的采样频率要求:相机20,imu100.kalibr也可以做鱼眼相机+imu的联合标定. 用imu_utils做标定,launch文件中的参数max_time_min指的是rosbag的时间,必须大于等于这个时间. imu_utils源码及使用说明: https://github.com/gaowenliang/imu_utils imu_tk源码及使用说明: https://bit…
1. Guava Google的基于java1.6的类库集合的扩展项目 包括collections, caching, primitives support, concurrency libraries, common annotations, string processing, I/O等等. 这些高质量的API可以使你的JAVa代码更加优雅,更加简洁 项目地址:https://code.google.com/p/guava-libraries/ 文档介绍:https://code.googl…
orm的db工具类,简化建表.查询.更新.插入.事务.索引的操作 1. greenDAO Android Sqlite orm的db工具类 项目地址:https://github.com/greenrobot/greenDAO 文档介绍:http://greendao-orm.com/documentation/ 官方网站:http://greendao-orm.com/ 特点:(1)性能佳 (2) 简单易用的API (3) 内存小好小 (4) 库大小小 2. ActiveAndroid And…
1. Crouton 丰富样式的Toast 允许alert.comfirm.info样式及点击消失样式,允许设置Toast显示时间,允许自定义View. 项目地址:https://github.com/keyboardsurfer/Crouton Demo地址:http://play.google.com/store/apps/details?id=de.keyboardsurfer.app.demo.crouton 2. supertooltips 带动画效果的Tips显示 项目地址:http…
SQLCipher Sqlite加密工具 项目地址:https://github.com/sqlcipher/sqlcipher 帮助文档:http://sqlcipher.net/sqlcipher-for-android/ Conceal 快速高效的进行文件加密解密 项目地址:https://github.com/facebook/conceal 文档介绍:https://github.com/facebook/conceal#usage Android-PasscodeLock 应用锁,每…
Great Android Sensing Toolkit Android感应器工具包,包含示例及使用过程中可能需要的算法 项目地址:https://github.com/gast-lib/gast-lib Demo地址:https://play.google.com/store/apps/details?id=root.gast.playground 文档介绍:https://github.com/gast-lib/gast-lib#documentation SensorManager An…
1.sessionStorage .localStorage 和 cookie 之间的区别 (一)共同点:都是保存在浏览器端,且同源的. (二)区别:cookie数据始终在同源的http请求中携带(即使不需要),即cookie在浏览器和服务器间来回传递:cookie数据还有路径(path)的概念,可以限制cookie只属于某个路径下.存储大小限制也不同,cookie数据不能超过4k,同时因为每次http请求都会携带cookie,所以cookie只适合保存很小的数据,如会话标识. (三)而sess…
关键字.标识符.宏.预定义.预处理.编译.替换.预处理指令. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 标识符: 标识符(identifier)是指用来标识某个实体的一个符号,在不同的应用环境下有不同的含义.在计算机编程语言中,标识符是用户编程时使用的名字,用于给变量.常量.函数.语句块等命名,以建立起名称与使用之间的关系.标识符通常由字母和数字以及其它字符构成. 标识符就是程序员自己规定的具有特定含义的词,…
前言: 本篇介绍 ES6 对字符串的改造和增强.一.字符的 Unicode 表示法 字符的 Unicode 码点必须在\u0000~\uFFFF之间,\uxxxx形式表示一个字符,其中xxxx表示字符的 Unicode 码点. const {log} = console;log('\u0061'); //a xxxx超出这个范围的字符,只要将码点放入{}内,就能正确解读该字符. const {log} = console;log('\u{20BB6}'); // 二.字符串的遍历器接口 字符串添…
博主推荐一:WP8.1最经典培训教程 博主点评:经典Windows Phone8.1 Runtime API培训最经典教程,此教程由传智播客蒋坤老师录制的一整套WP8.1入门级视频教程,讲授内容非常广.深入而且非常适合入门学习.在英文资料都非常匮乏的今天,有这样的视频教程简直就是神一般的存在. 拒绝低调,国内首家推出微软WP8.1移动开发课程 课程介绍地址:http://bbs.itcast.cn/thread-31190-1-1.html 视频和资料下载地址:http://pan.baidu.…
1. achartengine 强大的图标绘制工具 支持折线图.面积图.散点图.时间图.柱状图.条图.饼图.气泡图.圆环图.范围(高至低)条形图.拨号图/表.立方线图及各种图的结合 项目地址:https://code.google.com/p/achartengine/ 官方网站:http://www.achartengine.org/ 效果图:http://www.achartengine.org/dimages/average_temperature.png http://www.achar…
1. SmoothProgressBar 水平进度条 项目地址:https://github.com/castorflex/SmoothProgressBar Demo地址:https://play.google.com/store/apps/details?id=fr.castorflex.android.smoothprogressbar.sample 2. ProgressWheel 支持进度显示的圆形ProgressBar 项目地址:https://github.com/Todd-Dav…
1. PhotoView 支持双击或双指缩放的ImageView 在ViewPager等Scrolling view中正常使用,相比上面的AndroidTouchGallery,不仅支持ViewPager,同时支持单个ImageView 项目地址:https://github.com/chrisbanes/PhotoView Demo地址:https://play.google.com/store/apps/details?id=uk.co.senab.photoview.sample 2. a…
1. StaggeredGridView 允许非对齐行的GridView 类似Pinterest的瀑布流,并且跟ListView一样自带View缓存,继承自ViewGroup 项目地址:https://github.com/maurycyw/StaggeredGridView Demo地址:https://github.com/Trinea/TrineaDownload/blob/master/staggered-gridview-demo.apk?raw=true 2. AndroidStag…
1. Android-ViewPagerIndicator  鼎鼎大名,配合ViewPager使用的Indicator,支持各种位置和样式 项目地址:https://github.com/JakeWharton/Android-ViewPagerIndicator Demo地址:https://play.google.com/store/apps/details?id=com.viewpagerindicator.sample 2. JazzyViewPager 支持Fragment切换动画的V…
1. MenuDrawer 滑出式菜单,通过拖动屏幕边缘滑出菜单,支持屏幕上下左右划出,支持当前View处于上下层,支持Windows边缘.ListView边缘.ViewPager变化划出菜单等. 项目地址:https://github.com/SimonVT/android-menudrawer Demo地址:http://simonvt.github.io/android-menudrawer/ 2. SlidingMenu 滑出式菜单,通过拖动屏幕边缘滑出菜单,支持屏幕左右划出,支持菜单z…
1. ActionBarSherlock 鼎鼎大名, 为Android所有版本提供统一的ActionBar,解决4.0以下ActionBar的适配问题 项目地址:https://github.com/JakeWharton/ActionBarSherlock Demo地址:https://play.google.com/store/apps/details?id=com.actionbarsherlock.sample.demos 2. ActionBar-PullToRefresh 下拉刷新,…
资料转载地址:https://github.com/Trinea/android-open-project 1. android-pulltorefresh 一个强大的拉动刷新开源项目,支持各种控件下拉刷新 ListView.ViewPager.WevView.ExpandableListView.GridView.(Horizontal)ScrollView.Fragment上下左右拉动刷新. 项目地址:https://github.com/chrisbanes/Android-PullToR…
android-flowtextview 文字自动环绕其他View的Layout 项目地址:https://code.google.com/p/android-flowtextview/ 效果图:http://i949.photobucket.com/albums/ad332/vostroman1500/1.png Android Form EditText 验证输入合法性的编辑框,支持输入.英文.ip.url等多种正则验证 项目地址:https://github.com/vekexasia/a…
1.Json2Java 根据JSon数据自动生成对应的Java实体类,还支持Parcel.Gson Annotations对应代码自动生成.期待后续的提取父类以及多url构建整个工程的功能 项目地址:https://github.com/jonfhancock/JsonToJava 在线演示:http://jsontojava.appspot.com/ 2.Android Drawable Factory 用于生成各个分辨率的图片 项目地址:https://github.com/tizionar…
1.Catlog 手机端log查看工具,支持不同颜色显示.关键字过滤.级别过滤.进程id过滤.录制功能等 项目地址:https://github.com/nolanlawson/Catlog 在线演示:https://play.google.com/store/apps/details?id=com.nolanlawson.logcat 2.PID Cat 根据package查看logcat日志 项目地址:https://github.com/JakeWharton/pidcat 3.Hugo…
1.ZIP java压缩和解压库 项目地址:https://github.com/zeroturnaround/zt-zip 文档介绍:https://github.com/zeroturnaround/zt-zip#examples 作用:(1) 解压和压缩,并支持文件夹内递归操作 (2) 支持包含和排除某些元素 (3) 支持重命名元素 (4) 支持遍历zip包内容 (5) 比较两个zip包等功能 2. aFileChooser 文件选择器,可内嵌到程序中,而无需使用系统或三方文件选择器. 项…
1. ActionBarSherlock 为Android所有版本提供统一的ActionBar,解决4.0以下ActionBar的适配问题 项目地址:https://github.com/JakeWharton/ActionBarSherlock Demo地址:https://play.google.com/store/apps/details?id=com.actionbarsherlock.sample.demos 2. Nine Old Androids 将Android 3.0(Hone…
1. Asynchronous Http Client for Android Android异步Http请求 项目地址:https://github.com/loopj/android-async-http 文档介绍:http://loopj.com/android-async-http/ 特点:(1) 在匿名回调中处理请求结果 (2) 在UI线程外进行http请求 (3) 文件断点上传 (4) 智能重试 (5) 默认gzip压缩 (6) 支持解析成Json格式 (7) 可将Cookies持久…
1. Android-Universal-Image-Loader 图片缓存 目前使用最广泛的图片缓存,支持主流图片缓存的绝大多数特性. 项目地址:https://github.com/nostra13/Android-Universal-Image-Loader Demo地址:https://github.com/Trinea/TrineaDownload/blob/master/universal-imageloader-demo.apk?raw=true 文档介绍:http://www.i…
通过依赖注入减少View.服务.资源简化初始化,事件绑定等重复繁琐工作 1. AndroidAnnotations(Code Diet) android快速开发框架 项目地址:https://github.com/excilys/androidannotations 文档介绍:https://github.com/excilys/androidannotations/wiki 官方网站:http://androidannotations.org/ 特点:(1)依赖注入:包括view,extras…
1. android-times-square Android日历部件 支持选取单个日期,多个日期,及日期区间段和对话框形式显示 项目地址:https://github.com/square/android-times-square Demo地址:https://github.com/Trinea/TrineaDownload/blob/master/times-square-demo.apk?raw=true 2. android-calendar-card 日历 项目地址:https://g…
原文网址:http://blog.csdn.net/krislight/article/details/20211045 资料转载地址:https://github.com/Trinea/android-open-project 1. android-pulltorefresh 一个强大的拉动刷新开源项目,支持各种控件下拉刷新 ListView.ViewPager.WevView.ExpandableListView.GridView.(Horizontal)ScrollView.Fragmen…
一. 左值和右值 L-value中的L指的是Location,表示可寻址.Avalue (computer science)that has an address. R-value中的R指的是Read,表示可读.in computer science, a value that does not have an address in a computer language. 左值和右值是相对于赋值表达式而言的.左值是能出现在赋值表达式左边的表达式.左值表达式可以分为可读写的左值和只读左值.右值是…