作者归档:ldsea

pod2g的Why jailbreak(为什么越狱)的全文

 

 Why jailbreak ?

 
There are multiple reasons to jailbreak, including :

  • changing the iOS experience with powerful tweaks that can't ever exist on the AppStore : SBSettings, WinterBoard, IntelliScreenX, LockInfo, and lot of others…
  • playing retro games on console and arcade emulators.
  • having access to a unix shell in you pocket, and all the open source software that can run on a unix OS.
The jailbreak is not meant for (and we are totally against it) :
  • pirating AppStore applications
Also please don't pirate Cydia tweaks, there are people working hard on these, and the price is usually low. There's no reason to do that.
 
pod2g强调了越狱是坚决反对使用盗版AppStore程序和盗版Cydia插件的。这点很赞。
 
另外pod2g强调的是免费越狱,应该再这几天会放出IOS5.1 IOS5.1.1的完美越狱工具了,是支持绝大部分IOS设备的。设备列表如下:
 
Here is the list of devices that are known to work for sure :(确定可完美越狱)

  • iPhone 3Gs
  • iPhone 4
  • iPhone 4 CDMA
  • iPhone 4S
  • iPad 1
  • iPad 2 Wifi
  • iPad 2 GSM
  • iPad 2 CDMA
  • iPad 3 Wifi
  • iPad 3 CDMA
  • iPod 3G
  • iPod 4G
Here is the list of devices that won't be supported :(不支持完美越狱的)
  • AppleTV 3
Remains to test (but that should work) :(未测试的,但是应该会支持)

  • iPad 2 Wifi, R2
  • iPad 3 Global
  • AppleTV 2

 

 

PS:最近pod2g和i0n1c两位大神吵架很热闹啊,哈哈。

pod2g还转推了一条微博,如下:

Would YOU buy a jailbreak from this guy??

 

估计上面这位老兄就是准备发布收费版越狱工具的i0n1c ?

C语言版“最炫民族风”

转载自:http://blog.renren.com/share/278396965/13080008716?from=0101010202&ref=hotnewsfeed&sfet=102&fin=2&ff_id=278396965

昨天看到有人用MATLAB合成出了《最炫民族风》,马上想到跟风,看能不能再恶搞一把,来个其他版本的。自然想到大一的时候用Turbo C编的一个播放器(其实是山寨飞哥在Turbo Pascal下的作品)。用的是超级老古董Turbo C 2.0,1988年的产品了,比我还老。不过之所以选古董是有原因的,里面有一个dos.h头文件,可以调用电脑主板上的蜂鸣器发声(台式机的“哔”声就是这个发出来的,现在的笔记本电脑就直接用音响发了),于是乎就用这东西拿下神曲了。程序和乐曲是分开的,乐曲以文件的形式读入,很要命地把《最炫民族风》全曲都输了进去。至于调号和变调我就懒得管了,统统C大调。效果放在最后面,大家听的时候注意保护耳朵。

 

 

 

继续阅读

各种倒计时JQUERY的解决DEMO,增正计时

[code lang=”js”]<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>倒计时</title>
<script type="text/javascript" src="http://auto.sina.com.cn/683/2009/0901/jquery.js"></script>
</head>
<body>
<div class="daty"></div>
<div class="watch"></div>
<div class="djs"></div>
<script>
$(function(){
var timedate= new Date("2011/2/2");
var now = new Date();
var dates = timedate.getTime()-now.getTime();
var times =Math.abs(Math.floor(dates/(1000*60*60*24)));
jQuery(".daty").text("距离XX开幕还有"+times+"天");
})
$(function(){
function _fresh(){
var d2 = new Date();
d2.setHours(18,0,0,0)
var d0 = new Date();
var ts = (d2-d0)
__h=parseInt((ts/3600000)%24);
__m=parseInt((ts/60000)%60);
__s=parseInt((ts/1000)%60);
$(".watch").html("距离下班时间还有"+__h+"小时"+__m+"分"+__s+"秒")
var endtime=new Date("2012/01/19,12:20:12");
var xztime = new Date();
var ctime = parseInt((endtime.getTime()-xztime.getTime())/1000);
__d=parseInt(ctime/3600/24);
__h=parseInt((ctime/3600)%24);
__m=parseInt((ctime/60)%60);
__s=parseInt(ctime%60);
$(".djs").html("距离2012/2/2中午12:20:12还有"+__d+"天"+__h+"小时"+__m+"分"+__s+"秒")
}
_fresh()
var sh;
sh=setInterval(_fresh,1000);
})
</script>
</body>
</html>
[/code]

ldsea

2012年5月12日

等额本金还款法和等额本息还款法:
等额本金法就是借款人每月以相等的金额偿还本金,贷款利息逐月递减
等额本息法就是借款人每月以相等的金额偿还贷款本息
这两种方法的区别:
等额本金还款法在整个还款期内每期还款额中的本金都相同,偿还的利息逐月减少;本息合计逐月递减。这种还款方式前期还款压力较大,适合收入较高或想提前还款人群。

等额本息还款法每期还款额中的本金都不相同,前期还款金额较少,本息合计每月相等。这种还款方式由于本金归还速度相对较慢,占用资金时间较长,还款总利息较相同期限的等额本金还款法高。