XiaoKL

上一页 1 2 3 4 5 6 7 8 9 ··· 12 下一页

2015年4月27日

iOS.Location-Based Service

摘要: 基于位置区域的服务1. 背景Ref[1]在iOS设备锁屏的状态下,App的icon会出现在屏幕的左下角。iOS 8 Feature: Location-based Lockscreen App Shortcuts Appearing on iPhonehttp://www.igeeksblog.co... 阅读全文

posted @ 2015-04-27 22:59 XiaoKL 阅读(458) 评论(0) 推荐(0) 编辑

iOS.FBTweak

摘要: FBTweak的源码分析1. FBTweak提供了以下功能A): 可以动态的修改某个变量的值,这些变量的类型包括: ...B): 可以以plist的形式将Tweak以key-value的形式进行导出2. FBTweak中的类2.1 FBTweak 类类FBTweak:代表唯一的命名的tweak(tw... 阅读全文

posted @ 2015-04-27 16:30 XiaoKL 阅读(672) 评论(0) 推荐(0) 编辑

2015年4月23日

Python.tornado.2.tornado.options

摘要: 记录Tornado-4.0.2源码的阅读,学习,分析options.py1. imports 部分1.1 __future__1 from __future__ import absolute_import, division, print_function, with_statementfutur... 阅读全文

posted @ 2015-04-23 16:18 XiaoKL 阅读(538) 评论(0) 推荐(0) 编辑

XiaoKL学Python(D)argparse

摘要: argparse module 该文以Python 2为基础。 1. argparse简介 argparse 使得编写用户友好的命令行接口更简单。 argparse 知道如何解析sys.argv。 argparse 模块自动生成 “帮助” 信息和 “使用” 信息。 当用户使用了错误的命令行参数,ar 阅读全文

posted @ 2015-04-23 11:12 XiaoKL 阅读(292) 评论(0) 推荐(0) 编辑

XiaoKL学Python(E)Generator Expressions

摘要: 在 阅读 https://github.com/vitonzhang/objc_dep 中的 objc_dep.py 时遇到: 在Ref[1] PEP中,这种语法称为 Generator Expressions。 例如: 等价于: Reference 1. PEP 289 - Generator E 阅读全文

posted @ 2015-04-23 11:10 XiaoKL 阅读(224) 评论(0) 推荐(0) 编辑

2015年4月22日

XiaoKL学Python(C)__future__

摘要: __future__ in Python 1. from __future__ import xxxx 这是为了在低版本的python中使用可能在某个高版本python中成为语言标准的特性,从而 在将代码由低版本迁移到高版本的过程中,减少需要做的工作。 这种语句被称为 future_statemen 阅读全文

posted @ 2015-04-22 01:07 XiaoKL 阅读(419) 评论(0) 推荐(0) 编辑

2015年4月10日

iOS.Thread.OSAtomic

摘要: 1. 原子操作 (Atomic Operations) 编写多线程代码最重要的一点是:对共享数据的访问要加锁。 Shared data is any data which more than one thread can access. 原子操作(Atomic Operations)满足只有一个线程 阅读全文

posted @ 2015-04-10 22:29 XiaoKL 阅读(968) 评论(0) 推荐(0) 编辑

2015年3月25日

Android.PackageManager

摘要: 1. Apk的安装和更新过程是怎样的呢?Ref[1]2. 在安装.apk程序包时, .so是如何选择并安装的?这里的选择是指,是如何根据CPU_ABI和CPU_ABI2的值来选择合适的.so的。Ref [2]最近遇到ZTE V975这款机型,它的CPU_ABI和CPU_ABI2值如下:CPU_ABI... 阅读全文

posted @ 2015-03-25 22:51 XiaoKL 阅读(457) 评论(0) 推荐(0) 编辑

2015年3月12日

Java.Annotations

摘要: Annotation 0. Annotation Tricks http://developer.android.com/reference/java/lang/annotation/Annotation.html 0.1 Annotation 接口 "Defines the interface i 阅读全文

posted @ 2015-03-12 12:05 XiaoKL 阅读(777) 评论(0) 推荐(1) 编辑

2015年3月11日

Tools.Eclipse.HowToImportAnAndroidLibraryProjectIntoWorkspace

摘要: 1. File->New->Other Picture-12. Select "Android Project from Existing Code", and click "Next" button.3. click "Browse..." to select the root direct... 阅读全文

posted @ 2015-03-11 00:08 XiaoKL 阅读(163) 评论(0) 推荐(0) 编辑

2015年3月4日

Android.Tools.Eclipse hangs at the Android SDK Content Loader

摘要: Eclipse hangs at the Android SDK Content Loaderhttp://stackoverflow.com/questions/13489141/eclipse-hangs-at-the-android-sdk-content-loader 阅读全文

posted @ 2015-03-04 16:47 XiaoKL 阅读(117) 评论(0) 推荐(0) 编辑

2015年2月26日

Python.list

摘要: 1.Fastest way to check if a value exist in a listhttp://stackoverflow.com/questions/7571635/fastest-way-to-check-if-a-value-exist-in-a-list7 in aTrue:... 阅读全文

posted @ 2015-02-26 20:52 XiaoKL 阅读(181) 评论(0) 推荐(0) 编辑

2015年1月29日

Python.URLs

摘要: 1.The Future of Asynchronous IO in Pythonhttps://medium.com/@paulcolomiets/the-future-of-asynchronous-io-in-python-ce200536d8472.Python's Hardest Prob... 阅读全文

posted @ 2015-01-29 12:13 XiaoKL 阅读(150) 评论(0) 推荐(0) 编辑

2015年1月13日

iOS.XcodeUsage

摘要: 1. Customizing Xcode File Templates http://blog.highorderbit.com/2009/03/15/customizing-xcode-cocoa-touch-file-templates/ 2. 关于Xcode中工程设置的说明,点击右键,可以看到 阅读全文

posted @ 2015-01-13 23:23 XiaoKL 阅读(224) 评论(0) 推荐(0) 编辑

2015年1月5日

JavaScript.how-to-debug-javascript

摘要: How to debug JavaScript code1. 写一个HTML文件。例如: 1 2 3 Web Page Design 4 5 6 8 9 10 11 2. 然后在该html文件的目录下写test.js文件3. 在Chrome中,视图->开发者->开发者工具4. 通过 文件... 阅读全文

posted @ 2015-01-05 23:44 XiaoKL 阅读(256) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 9 ··· 12 下一页

导航