i9100G 重新分区,扩大系统内存

我曾经不止一次的提到三星的手机设计的是多么的傻逼和蛋疼,并且自从换了苹果之后也基本不怎么使用这个蛋疼的大三星了。但是偶尔想要使用下装个应用的时候就提示存储空间不足,妈蛋,这也太坑底了16g的存储只分给系统2g,请问三星的程序员是脑子有屎么?到网上搜一下,提到这个问题的人数不胜数,并且网上也有很多的教程来说明怎么重新分区,请参考http://forum.xda-developers.com/galaxy-s2/development/mod-pit-files-creating-larger-partition-t2552738  。

这里提供下用到的工具,列表如下:

 驱动器 C 中的卷没有标签。
 卷的序列号是 CA73-C79C

 C:\Users\obaby\Desktop\9100G分区 的目录

2015/05/06  15:44              .
2015/05/06  15:44              ..
2013/03/26  11:30         2,252,888 BOOTLOADER_I9100GZCLSG_973591_REV03_user_low_ship.tar.md5
2015/05/06  15:44                 0 file.txt
2013/03/26  23:09       583,782,476 GT-I9100G_CODE_4.1.2_ZCLSG_xiaodanRip.tar.md5
2013/03/26  16:00        19,589,195 GT-I9100G_CSC_4.1.2_ZCLSG_xiaodanRip.tar.md5
2013/12/04  19:32             2,008 I9100G (16gb Model only!!!!) 1GB.pit
2013/12/02  20:24             2,008 I9100G (16gb Model only!!!!) 3GB.pit
2013/12/03  21:51             2,008 I9100G (16gb Model only!!!!) 4GB.pit
2014/02/25  20:41             2,008 I9100G (16gb Model only!!!!) 6GB.pit
2014/02/25  20:44             2,008 I9100G (16gb Model only!!!!) 8GB.pit
2013/12/03  22:09               144 metalgear XDA thread link.txt
2013/03/26  11:33        12,585,033 MODEM_I9100GZCLSG_REV_00_CL1249517.tar.md5
2015/05/05  15:42              Odin3 v3.06
2013/03/26  11:33             2,264 omap4_all_20120827_CHN_OPEN_emmc.pit
2013/03/26  23:23           137,961 刷机示意图.jpg
2013/03/26  23:31             1,220 刷机说明.txt
              14 个文件    618,361,221 字节
               3 个目录  4,496,023,552 可用字节

Continue Reading

WordPress 4.2.1 gravatar头像无法显示

升级wordpress 之后去按照以前的方法找服务器设置,发现找不到了。蛋疼啊,但是最近又有点忙,所以一直没管它,今天搜索了一下发现新的头像服务器函数已经移动到”\WordPress4.2.1\wp-includes\link-template.php”(3604,29): $url = sprintf( ‘http://%d.gravatar.com/avatar/%s’, $gravatar_server, $email_hash );这里来了,如下:

	if ( $email_hash ) {
		$args['found_avatar'] = true;
		$gravatar_server = hexdec( $email_hash[0] ) % 3;
	} else {
		$gravatar_server = rand( 0, 2 );
	}

	$url_args = array(
		's' => $args['size'],
		'd' => $args['default'],
		'f' => $args['force_default'] ? 'y' : false,
		'r' => $args['rating'],
	);

	$url = sprintf( 'http://%d.gravatar.com/avatar/%s', $gravatar_server, $email_hash );

	$url = add_query_arg(
		rawurlencode_deep( array_filter( $url_args ) ),
		set_url_scheme( $url, $args['scheme'] )
	);

修改也很简单,将上面的3604行修改为:

$url = sprintf( 'http://1.gravatar.com/avatar/%s', $email_hash );

那个服务器编号可以多试几个,测试的时候发现1是没有问题的,如果不能访问可以换2,3,4神马的。

Xcode6.3 archive Crash

今天升级了一下xcode结果在执行archive的时候 竟然崩溃了,刚开始还以为是项目问题,于是进行各种折腾。但是最终还是继续崩溃,当时就震惊了。于是上网搜索了一下发现这个问题是普遍现象,解决方法就是关闭Source control,执行:xcode -> preferences->source control,将前面的勾选去掉。然后就ok了。

QQ20150414-1@2x

 Link:https://stackoverflow.com/questions/29548538/xcode-6-3-crash-while-archiving-a-project/29556100#29556100?newreg=d6f618c4506a48d5945291f77a67c5ba

IDA Patcher 1.2 by Peter Kacherginsky

idapatch

 

IDA Patcher is a plugin for Hex-Ray’s IDA Pro disassembler designed to enhance IDA’s ability to patch binary files and memory. The plugin is useful for tasks related to malware analysis, exploit development as well as bug patching. IDA Patcher blends into the standard IDA user interface through the addition of a subview and several menu items
Simply copy idapatcher.py into IDA’s plugins folder. The plugin will be automatically loaded the next time you start IDA Pro.
The plugin uses pure IDA Python API, so it should be compatible with all versions of IDA on different platforms. However, it was only extensively tested on IDA Pro 6.5 for Windows with x86, x86-64 and ARM binaries.

Link:http://pan.baidu.com/s/1bnpPvGF