2018年06月07日
$ git clone -b llvm-4.0 https://github.com/obfuscator-llvm/obfuscator.git$ mkdir build$ cd buildcmake -DCMAKE_BUILD_TYPE=Release -DLLVM_INCLUDE_TESTS=OFF ../obfuscator/
2018年06月05日
interface Array<T> { x: number; y: number; sqrlen(): number; len(): number; normalize(): number[]; scale(s: number): number[]; add(b: number[]): number[]
2018年05月30日
计算机编程之直行,射线与线段相交理论在二维空间中,两条直线(射线与线段是一种特例)有如下几种关系:a) 相交(有且只有一个交点)b) 平行(无交点)c) 重叠假想在直线L1上有一个运动的点 M; 那么M的方程使用参数可以表示为M=A+(B-A)t, 其中t 为参
2018年05月23日
使用dump抓包简单又方便.主要是以下几步骤:1.绑定UUIDrvictl -s UUID (iPhone设备的UUID)RVI虚拟接口的命令规则可为rvi0,rvi1,。。。,创建后可以使用以下命令查看是否创建成功 ifconfig rvi02.开始抓包并写入文件(文件放在桌面上)tcpdump -i rvi0 -p -vv -s 0 -w ~/Desktop/2014log.pcap3.抓包完成就停止抓包ctrl +&n
2018年05月18日
let oMatrix = this.ballMesh.modelMatrix; let matrix = new egret3d.Matrix4_4(); matrix.identity(); matrix.appendRotation(vangle * 60, axis); oMatrix.multiply(matrix); this.ballMesh.orientation.fromMatrix(oMatrix);
2018年05月07日
Unexpected crash! Please log a bug with the commandline you specified.
/opt/local/lib/node_modules/dts-gen-v2/bin/lib/run.js:130
throw e;
2018年04月14日
从图形来说射线和圆相交, origin是射线起点, dir是射线的方向向量。p0,p1是两个交点,center为圆心,半径为R,d为圆心到射线的距离。我们先以2D切面图来说明,当射线和圆相交的时候,可以看到,球心 center 到射线 ray 的距离 d <= R,这个即为相交的条件。那么射线与球相切就转化为了球心到射线的距离d的判断。先求出d:设圆心在射线上的投影为c',则 origin,center, c' 形成了一个直角三角形。获得射线起点到圆心的向量 Vo
2018年02月06日
#!/bin/bash# Grabs the expired certificate hashesexpired=$(security find-identity | grep EXPIRED | awk '{print $2}')# Check for certsif [ -z "
2018年02月02日
sips -g all 源文件路径有文件满足下面的条件 pixelWidth: 1024 pixelHeight: 1024 typeIdentifier: public.png format: png formatOptions: default dpiWidth: 72.000 dpiHeight: 72.000 samplesPer
2018年01月26日
在Objective-C中,我们经常使用预处理指令来帮助我们根据不同的平台执行不同的代码,以让我们的代码支持不同的平台,如:12345#if TARGET_OS_IPHONE #define MAS_VIEW UIView #elif TARGET_OS_MA