The quiter you become,the more you are able to hear!

Author: geneblue

Blog: https://geneblue.github.io/

背景

1996年,德国慕尼黑大学(LMU Ludwig Maximilians University of Munich)的 Martin Ester(助理教授) 和 Hans-Peter Kriegel(教授) 与博士生 Jörg Sander,Xiaowei Xu一起发表了他们在数据挖掘领域的最新研究 DBSCAN(Density-Based Spatial Clustering of Applications with Noise,具有噪声的基于密度的聚类方法) 算法。

Read more »

Author: geneblue

Blog: https://geneblue.github.io/

iforest-00


anomaly detection

我们先看一个问题,上图中你能找出哪些是异常的点?为什么认为这些是异常点呢?你有多少种方法能找出异常点?

Read more »

Author: geneblue

Blog: https://geneblue.github.io/

MachO (Mach Object)文件格式是苹果 OSX 和 iOS 系统使用的可执行,可链接的 ABI(二进制)文件格式。类比 ELF 文件之于 Linux 平台,PE 文件之于 Windows 平台。同样的,MachO 文件是代码与数据的集合,体现了在苹果定义的一套规则下,程序文件是如何构成的,程序的链接,装载是如何发生的。

ABI 文件是操作系统的基石。学习认识一个新的 OS 平台,理解它的 ABI 文件是非常好的切入点,对于 OSX/iOS 系统同样如此。

Read more »

Author: geneblue

Blog: https://geneblue.github.io/

什么是虚拟定位

简而言之,利用软硬件更改手机系统的定位数据,从而让目标 app 获取错误的定位信息

Read more »

Author: geneblue

Blog: https://geneblue.github.io/

介绍

apple 从 iOS7.0 开始增加了 JavaScriptCore 框架。该框架提供了在 Swift,Objective-C 和 C 这些 native code 中执行 javascript 脚本的能力,当然,也支持将 native object 插入到 js 的执行环境中。

Read more »