自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

_______攻城无数_____、、、、、、

~~~~~~~Less is More ______Make it Work, Keep it Simple~~~~~~~~~~~

  • 博客(15)
  • 资源 (45)
  • 收藏
  • 关注

原创 【BUG】"main" prio=5 tid=1 RUNNABLE

加载超大效果图导致内存不足(GC/ANR)浅谈ANR如何分析解决ANR

2014-06-30 14:02:16 9080 4

原创 【BUG】[ - ddms] Can't bind to local 8700 for debugger

[2014-06-26 15:50:56 - ddms] Can't bind to local 8700 for debugger一、BUG环境:macbookpro+eclipse+adt+adbWireless(MBP共享网络给Android手机)二、影响:在下图中LogCat和Console标签页之间来回跳转,无法安逸查看LOG数据。三、解决:

2014-06-26 16:11:44 34766 3

原创 【BUG】android.content.res.Resources$NotFoundException: File res/drawable-xxhdpi/toolbar_line.png from

SafeGod在coolpad(4.0)上运行,登陆进去的设备列表界面遇到的问题,三星和索尼没有这个问题。06-24 15:23:06.897: E/AndroidRuntime(12655): FATAL EXCEPTION: main06-24 15:23:06.897: E/AndroidRuntime(12655): java.lang.RuntimeException:

2014-06-24 17:58:58 7474 3

原创 【APP UI 设计模式】(一)APP UI 设计原则和流程

一、基本原则 1、用户体验原则UCD,以用户为中心去设计 2、设计模式是可重用的设计规范实现 3、反模式是糟糕设计的典型,极力避免使用 4、试验模式——超越既有理念和移动现状的设计,有望成为下一个主流UI设计模式。二、主要内容

2014-06-23 21:48:04 1829 3

原创 【《Objective-C基础教程 》笔记】(八)OC的基本事实和OC杂七杂八的疑问

1、成员变量、实例变量、局部变量的区别和联系,在访问、继承上如何表现。2、属性@property 和 {变量列表} 是否相同,有什么不同。

2014-06-22 22:46:53 1388

原创 【《Objective-C基础教程 》笔记】(七)OC的关键字用意小结

1.  #import    #import     #import "" 首先在当前目录中查找,如果未找到,则在Xcode设置的预处理程序搜索路径中查找文件。    #import 指令可以防止头文件被重复包含  2. typedef    用于给一个类型定义新名称 或 简化较为复杂的类型声明。  3. #define    用于宏定义预处

2014-06-22 22:24:24 1301

原创 mac eclipse svn subeclipse: Failed to load JavaHL Library.

Failed to load JavaHL Library.These are the errors that were encountered:no libsvnjavahl-1 in java.library.pathno svnjavahl-1 in java.library.pathno svnjavahl in java.library.pathjava.libr

2014-06-18 13:27:28 10975 1

原创 【《Objective-C基础教程 》笔记ch05】(六)OC中的复合机制Composition

1、复合通过包含作为实例变量的的对象指针实现的。       @interface Unicycle : NSObject       {          Pedal*pedal;          Tire*tire;        }//Pedal和tire通过复合的方式组成了Unicycle2、存取方法——用来读取或者改变某个对象属性的方法。

2014-06-17 17:04:12 2601

原创 【《Objective-C基础教程 》笔记ch04】(五)OC中的继承inheritance机制

一、为什么需要继承                         使用继承一方面继承了父类的特性,另一方便解决了重复代码维护问题。二、继承之语法         1、 @interface 子类名:父类名         2、 OC只支持单继承,不支持继承多个父类。         3、 重构——移植和优

2014-06-12 14:44:37 1801

原创 【《Objective-C基础教程 》笔记ch03】(四)OC中的OOP

一、声明类接口步骤:1、声明一个类接口,使用@interface关键字加上类名称。2、用  { 实例变量 }  来定义各种数据成员。3、方法声明,采用中缀符语法声明一个c函数,用到了冒号 : 。二、声明类接口实例://声明圆形circle类接口@interface Circle : NSObject{ ShapeColor fillColor;//每次创建新

2014-06-10 19:43:18 1811

原创 Must explicitly describe intended ownership of an object array parameter

Must explicitly describe intended ownership of an object array parameter”,等异常信息,原来是使用了ARC的缘故,由于不懂ARC是什么,导致检查了几遍代码还是编译器报错,后来查了很久发现是上面所述的原因,处理办法就是将设置项目 Automatic Reference Counting 变为No,

2014-06-10 19:12:45 3149 1

原创 【《Objective-C基础教程 》笔记ch03】(三)间接indirection与OOP

一、什么是间接        1、在dai'ma

2014-06-10 14:18:41 1342

原创 【《Objective-C基础教程 》笔记ch02】(二)Boolean类型及实例

一、布尔类型

2014-06-10 13:10:43 1158

原创 【《Objective-C基础教程 》笔记ch02】(一)Hello Object-C 项目

一、项目实现步骤。

2014-06-10 01:09:49 1589

原创 Swift初体验之HelloWord+苹果Swift编程语言入门教程【中文版】

AppDelegate.swift ://// AppDelegate.swift// SwiftHelloWord//// Created by jason on 14-6-5.// Copyright (c) 2014年 JasonApp. All rights reserved.//import UIKit@UIApplicationMainclass Ap

2014-06-05 10:19:32 3446

Axure_Pro 网络产品原型设计工具

Axure_Pro 网络产品原型设计工具

2012-05-31

张孝祥正在整理Java就业面试题大全.doc

张孝祥正在整理Java就业面试题大全.doc

2012-05-26

取色工具 android ui color

小编已经介绍过很多屏幕取色软件了,今天将要介绍的Pixie真的是太简洁了,只有8KB的大小,启动Pixie,在屏幕中间会出现Pixie小巧的界面,上面已经写好了你鼠标所在位置的相关色彩状况,移动鼠标数据相应变化,当然Pixie也是能结合热键对色值进行复制等操作.

2012-05-11

张孝祥-java讲义

《Java就业培训教程》_张孝祥.ppt Java就业培训教程.pdf JavaEnhance.ppt

2012-04-17

开启eclipse代码提示功能

适用版本 Eclipse IDE for Java Developers Version: Indigo Service Release 1 Build id: 20110916-0149

2012-04-13

dom4j-1.6.1.ja

dom for java on android dev

2012-04-06

导航犬源代码.zip

导航犬源代码.zip

2012-04-06

北大计算机系JAVA培训讲义.rar

北大计算机系JAVA培训讲义.rar

2012-04-05

MLDN-JAVA讲义.rar

MLDN-JAVA讲义.rar

2012-04-05

Java 语言程序设计(一)串讲(华夏大地收费讲义

Java 语言程序设计(一)串讲(华夏大地收费讲义

2012-04-05

easyexplore

easyexplore 用于eclipse

2012-04-05

ksoap2-android-assembly-2.5.4-jar-with-dependencies

ksoap2-android-assembly-2.5.4-jar-with-dependencies android 访问web service 所需的工具包

2012-03-29

parse xml string from url to POJO

android 转换服务端xml资源到本地类 eclipse工程文件,可直接导入运行

2012-03-28

Eclipse+EclipseME+WTK搭建J2ME开发环境

Eclipse3.6.2+EclipseME1.7.9+WTK2.5.2 搭建J2ME开发环境

2012-02-17

android api 源码

The JAR file D:/..../android.jar has no source attachment

2012-02-06

android自动化测试资料

3.Create_Android_Sample_App 4.Test_Android_Sample_App Android手机测试方法交流 Android自动测试之monkeyrunner工具 Android自动测试之Monkey工具 Android自动化测试初探 Android自动化测试可行性途径分析 Android自动化测试之道 GSM手机自动化测试解决方案 手机自动化测试系统设计浅析 在Android_Robotium自动化测试中导出Test_result

2012-01-11

android GPS 实验数据收集软件代码+相关文档

android GPS应用 实验数据收集程序

2011-12-28

android感应器开发之加速度、方向传感器

博客附码:http://blog.csdn.net/gogler/article/details/7032009 用于收集android感应器数据的程序,附带一个比较完整的文件操作类。

2011-12-19

用service播放音乐

http://blog.csdn.net/gogler/article/details/6913084 用service播放音乐

2011-10-28

Use ContentProvider Get Contacts

Use ContentProvider Get Contacts http://blog.csdn.net/gogler/article/details/6910903

2011-10-27

android intent 代码

android intent 代码 用intent实现在两个activities之间跳转 http://blog.csdn.net/gogler/article/details/6907283

2011-10-27

新浪微博android开发包

微博Android平台SDK -微博Android平台SDK文档 -微博Android平台SDK代码

2011-10-24

Google on the Go Using an Android-Powered Mobile Phone.chm

Google on the Go Using an Android-Powered Mobile Phone.chm

2011-10-17

Deep Learning Networks for Stock Market Analysis and Prediction

Deep Learning Networks for Stock Market Analysis and Prediction: Methodology, Data Representations, and Case Studies

2017-11-10

Dynamic Routing Between Capsules

Capsule 是一组神经元,其活动向量(activity vector)表示特定实体类型的实例化参数,如对象或对象部分。我们使用活动向量的长度表征实体存在的概率,向量方向表示实例化参数。同一水平的活跃 capsule 通过变换矩阵对更高级别的 capsule 的实例化参数进行预测。当多个预测一致时,更高级别的 capsule 变得活跃。我们展示了判别式训练的多层 capsule 系统在 MNIST 数据集上达到了顶尖的性能,比识别高度重叠数字的卷积网络的性能优越很多。为了达到这些结果,我们使用迭代的路由协议机制(routing-by-agreement mechanism):较低级别的 capsule 偏向于将输出发送至高级别的 capsule,有了来自低级别 capsule 的预测,高级别 capsule 的活动向量具备较大的标量积

2017-11-07

appdemo.gif

ppdemo.gif

2014-07-21

Android应用UI设计模式

Android应用UI设计模式 Android Design Patterns.pdf

2014-06-23

苹果Swift编程语言入门教程【中文版】.pdf

苹果Swift编程语言入门教程【中文版】.pdf

2014-06-04

ios 7 xcode 5 objective-c

Beginning_iOS_7_Development_Exploring_the_iOS_SDK.pdf Beginning_iOS_7_Source_Code.zip iOS.in.Practice.Nov.2012 iOS 6实践指南.pdf Learn.Objective-C.on.the.Mac.2nd.Edition ProgrammingWithObjectiveC The+Objective-C+2.0+Programming+Language

2014-05-22

Cocoa.Programming.for.Mac.OS.X.4th.Edition.pdf+源代码.zip

Cocoa.Programming.for.Mac.OS.X.4th.Edition.pdf+源代码.zip 包括书籍 和 书中代码

2014-05-15

[Programming.iOS.7(4th,2013.12)].Matt.Neuburg.文字版.pdf

This book, now in its fourth edition, has grown in size to encompass the growth in its subject, until it can grow no more. The previous editions — Programming iOS 4 (May 2011), Programming iOS 5 (March 2012), and Programming iOS 6 (March 2013) — were approximately 800 pp., 950 pp., and 1150 pp. in length, respectively, not because I had more to say each time, but because Apple, as it added features to iOS 4 to make iOS 5, and to iOS 5 to make iOS 6, had given me more to describe. Now iOS 7 has come along with even more new features, and drastic action was needed. Accordingly, the book has been ripped violently but neatly in two — neatly, because there was already a perfectly natural place to do the ripping, namely right after the end of what used to be Part III (Chapter 13). There are now two books: • A new book, iOS 7 Programming Fundamentals, comprising chapters 1–13 of the earlier books. • This book, Programming iOS 7, comprising chapters 14–40 of the earlier books.

2014-02-10

db4o-8.0-java

Content This distribution contains documentation, binaries and sources for the open source object database db4o. For more information about the content of a specific folder see the readme.html file in the respective folder. /doc documentation /lib binaries /ome Object Manager Enterprise - database browser plugin for your IDE /src sources

2012-05-31

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除