自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

PacMan的专栏

Play Hard

  • 博客(1)
  • 资源 (23)
  • 收藏
  • 关注

原创 SurfaceView监听不到MotionEvent.ACTION_MOVE和MotionEvent.ACTION_UP事件的解决办法

如果onTouchEvent方法只能收到MotionEvent.ACTION_DOWN事件而无法收到MotionEvent.ACTION_MOVE事件和MotionEvent.ACTION_UP事件,则说明SurfaceView的属性可能设置的不对。在属性中添加android:clickable="true"可以解决此问题。

2016-12-04 19:35:10 3749 1

High Performance MySQL, 3rd Edition

High Performance MySQL teaches you advanced techniques in depth so you can bring out MySQL's full power. Learn how to design schemas, indexes, queries, ...

2017-11-07

Progit英文版第二版

这本书的作者是github的员工。书写得非常棒,对分支等的讲解使用了很多配图,简单明了,把原理讲得非常易懂。 这书还有一个非常棒的部分就是针对不同的使用场景,设计了几个合适的版本管理策略,比如私有小项目该用什么方式控制,公共项目该用什么方式控制等,这个非常实用。 了解Git的使用,这一本书基本就够了,入门+进阶~

2016-10-30

On Writing Well 2006 (30th Anniversary Edition)

"On Writing Well" has been praised for its sound advice, its clarity and the warmth of its style. It is a book for everybody who wants to learn how to write or who needs to do some writing to get through the day, as almost everybody does in the age of e-mail and the Internet. Whether you want to write about people or places, science and technology, business, sports, the arts or about yourself in the increasingly popular memoir genre, "On Writing Well" offers you fundamental priciples as well as the insights of a distinguished writer and teacher. With more than a million copies sold, this volume has stood the test of time and remains a valuable resource for writers and would-be writers.

2016-10-29

On Writing Well

"On Writing Well" has been praised for its sound advice, its clarity and the warmth of its style. It is a book for everybody who wants to learn how to write or who needs to do some writing to get through the day, as almost everybody does in the age of e-mail and the Internet. Whether you want to write about people or places, science and technology, business, sports, the arts or about yourself in the increasingly popular memoir genre, "On Writing Well" offers you fundamental priciples as well as the insights of a distinguished writer and teacher. With more than a million copies sold, this volume has stood the test of time and remains a valuable resource for writers and would-be writers.

2016-10-29

Harley Hahn's Guide to Unix and Linux(Unix & Linux大学教程)

本书作者HarleyHahn从20世纪80年代开始,亲身体验了几平整个UDIX以及Linux操作系统的发展历史。他所著的Unix和Linux教程,秉承了他的一贯风格,幽默风趣而又知识渊博。在本书中,不仅可以全面学习到Unix和Linux操作系统的工作原理和主要命令,还可以知晓Unix和Linux发展史上的许多奇闻趣事。 另外,本书还解释了622个Unix专业术语,许多术语都给出了其历史来源;书中的示例涵盖了Linux、FreeBSD和Solaris等不同类型的操作系统;全书详细阐述了各种shell的异同并用示例加以说明。

2016-09-22

The Linux Programming Interface: A Linux and UNIX System Programming Handbook

《linux/unix系统编程手册(上、下册)》是介绍linux与unix编程接口的权威著作。linux编程资深专家michael kerrisk在书中详细描述了linux/unix系统编程所涉及的系统调用和库函数,并辅之以全面而清晰的代码示例。《linux/unix系统编程手册(上、下册)》涵盖了逾500个系统调用及库函数,并给出逾200个程序示例,另含88张表格和115幅示意图。 《linux/unix系统编程手册(上、下册)》总共分为64章,主要讲解了高效读写文件,对信号、时钟和定时器的运用,创建进程、执行程序,编写安全的应用程序,运用posix线程技术编写多线程程序,创建和使用共享库,运用管道、消息队列、共享内存和信号量技术来进行进程间通信,以及运用套接字api编写网络应用等内容。 《linux/unix系统编程手册(上、下册)》在汇聚大批 linux专有特性(epoll、inotify、/proc)的同时,还特意强化了对unix标准(posix、sus)的论述,彻底达到了“鱼与熊掌,二者得兼”的效果,这也堪称本书的最大亮点。 《linux/unix系统编程手册(上、下册)》布局合理,论述清晰,说理透彻,尤其是作者对示例代码的构思巧妙,独具匠心,仔细研读定会受益良多。本书适合从事linux/unix系统开发、运维工作的技术人员阅读,同时也可作为高校计算机专业学生的参考研习资料。

2016-09-22

计算机程序的构造和解释-英文官方版pdf

《计算机程序的构造和解释》(Structure and Interpretation of Computer Programs, SICP)是一本关于计算机程序设计的总体性观念的基础教科书,由 MIT press 与 McGraw-Hill 共同出版营销。作者是麻省理工学院的教授 Harold Abelson 、杰拉德·杰伊·萨斯曼,此外 杰拉德·杰伊·萨斯曼 的妻子 Julie Sussman 也有参与本书的制作。封底的作者图像是由其实验室的同僚 Nick Papadakis 后制的合成照。 书中使用程序设计语言 Lisp 的方言 Scheme 来解释计算机科学的核心概念,包括抽象(abstraction),递归(recursion),解释器(interpreters),以及元语言抽象(metalinguistic abstraction)。具体而微地由宏观到微观给出清楚地轮廓与脉络。

2016-04-13

android-ndk-profiler-prebuilt-3.3

android ndk代码性能分析利器,可以查看每个函数的cpu占用率,函数调用次数等信息

2014-11-28

费马大定理―一个困惑了世间智者 358 年的谜

中文名: 费马大定理:一个困惑了世间智者358年的迷 作者: (英)西蒙·辛格 译者: 薛密 罗辑思维推荐书目

2014-08-17

ARM Compiler toolchain Using the Assembler

ARM Compiler toolchain Using the Assembler

2014-08-05

ARM Compiler toolchain Assembler Reference

ARM Compiler toolchain Assembler Reference

2014-08-05

neon programmers guide

arm neon官方文档

2014-07-30

ARM System Developer's Guide

ARM System Developer's Guide,经典教材,ARM开发者必备。

2014-07-30

ARM官方文档(ARM Cortex - A Series)

ARM官方文档,ARM开发必备

2014-07-30

离散数学及其应用 (原书第7版)

《离散数学及其应用(英文版)(第7版)》高清pdf版 计算机专业必备

2014-04-07

Machine Learning in Action

机器学习经典教材,python实现,英文原版,清晰

2014-01-14

Functional.Analysis

经典教材,英文原版,清晰版。

2013-12-22

linux network

本文介绍了linux内核网络的基础实现,对内核有兴趣的朋友可以研究一下

2013-05-21

MATLAB神经网络仿真与应用

MATLAB神经网络仿真与应用,张德丰版

2012-06-02

RFC3984中文版

H.264视频的RTP荷载格式 Status of This Memo This document specifies an Internet standards track protocol for the Internet community, and requests discussion and suggestions for improvements. Please refer to the current edition of the "Internet Official Protocol Standards" (STD 1) for the standardization state and status of this protocol. Distribution of this memo is unlimited

2012-05-18

H264 RTP 发送和接收

H264 RTP 发送和接收,比较详细地介绍了用rtp协议发送h264码流的方法

2012-05-18

ffmpeg vs工程

ffmpeg vs2008工程,包括动态链接库

2011-10-08

Image Processing Fundamentals(图像处理基础)

一本关于图像处理的英文书,比较基础,有兴趣的朋友可以看看。

2009-09-13

空空如也

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

TA关注的人

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