crunchsms终极破解教程,自己算注册码 十一月 22nd, 2011
首先需要准备的工具:
1、winhex软件【附件有下载 WinHex.rar (1.09 MB, 下载次数: 230) ;另外115网盘下载地址:http://115.com/file/aq6vbmp0#WinHex.zip】
2、crunchsms2.15【一定要用这个版本的,其他版本不行,附件有下载 2.15可截取序列号.rar (335.78 KB, 下载次数: 232) 】
3、黑莓模拟器,无论你的手机机型是什么,均可以用一种模拟器来破解【以下采用8830为例,附上8830模拟器的下载地址http://b.qjwm.com/??0Y4,资源不好,速度很慢;115网盘下载地址:http://115.com/file/cl7jv9on#8830模拟器.rar;附件也有,在最后,由于论坛大小限制,被分成了很多卷,全部下载后放到同一个文件夹内解压第一个即可】。
然后开始破解:
步骤1:打开下载好的8830模拟器文件夹(如果是安装版的,先安装,然后找到安装文件夹),找到批处理文件【8830.bat】。不要双击,选择右键【编辑】,把最后面的pin=0x后面的pin改成你自己的pin【千万注意不要把0x删除了,0x是要保留的】,这里需要注意的是千万不要把自己的pin看错了,尤其数字0不错能看成字母o,字母o不能错看成数字0。然后双击运行。
步骤2:安装crunchsms2.15。具体步骤:解压下载好的crunchsms2.15,点击模拟器的【File】→【load java program】,把解压的crunchsms2.15文件(cod格式)全部选中导入进去。安装成功。
步骤3:找到你安装的crunchsms软件点击进去,然后按【黑莓键】→【activate license】,随便输入6个数字,比如123321,然后放这里什么都不要动了。
步骤4:安装winhex软件,运行(如果下载的是绿色版的,直接双击【WinHex.exe】即可)。找到上方的【工具】→【打开RAM】(快捷键:alt+F9)。找到【Fledge】,双击,找到【整个内存】,双击确定。
步骤5:现在回到步骤3,输过数字之后点0K键,出现注册码非法。然后不要点OK键,一定不要点OK键,快速切换到winhex界面,点击上方的【工具】→【分析文件】(快捷键F2)(可能会提示错误信息,不用管它,点确定即可)。
步骤6:文件分析过后,点击【搜索】→【查找文本】(快捷键:ctrl+F),搜索hk129。
步骤7:搜索hk129之后,按F3继续查找下一个hk129,直到找到下面有一串连续的6个或5个数字字母组合。如果你找到了6位数字字母组合,那么恭喜你,你的注册码找到了;但是如果你找不到6位的,只找到了5位的数字字母组合,那么你可以点中最前面的数字(或字母),然后往后拖,你就会发现其实有6位,只不过一位被挡住了,这时候,5位变6位,你就已经找到了你的
转的,给自己备份用
原帖:http://bbs.maxpda.com/thread-937605-1-1.html
buzzTrendz ... Bringing Twitter and YouTube together! 五月 15th, 2009
buzzTrendz combines the latest tweets with like-subject matter YouTube videos to give you "what's hot now" ... as I'm writing this the most recent trends are Mewcastle, Miss California, Shuttle Atlantis ... wait a few minutes and there will be others ... and don't ignore the "random trends" ... everytime you refresh, a new set of the hottest keywords used on the internet show you both the tweets and the YouTube videos that are making the keyword hot. Oh yeah, go to buzzTrendz.com.
几天没有上网了 五月 15th, 2009
因为长宽的宽带欠费了。交了费后,发现上不了。
因为他们技术员去帮人家开通宽带的时候,把我们家的网线搞掉了。所以就连不起了。
下午才有技术员过来解决。很不错的一个小伙子。
Tattoos ... Unsavory or Main Stream? 五月 11th, 2009
Emerging from their often unsavoury reputation of the recent past, tattoos have gained increasing prominence in the past decade. Life magazine estimated in 1936 that 10 million Americans, or approximately 6% of the population had at least one tattoo. A Harris Poll, done in 2003, nearly triples those numbers and estimates that 16% of Americans now have one or more tattoos. According to a 2006 survey by the Pew Research Center, thirty-six percent of those ages 18 to 25, and 40 percent of those ages 26 to 40, have at least one tattoo.
Linux系统信息查看命令大全 五月 10th, 2009
最近看了一些Linux命令行的文章,在系统信息查看方面学到不少命令。发现这些系统信息查看命令也可以总结出一篇小小的东西来了。
另外这里还有非常多的命令,可以作为参考。
系统
# uname -a # 查看内核/操作系统/CPU信息 # head -n 1 /etc/issue # 查看操作系统版本 # cat /proc/cpuinfo # 查看CPU信息 # hostname # 查看计算机名 # lspci -tv # 列出所有PCI设备 # lsusb -tv # 列出所有USB设备 # lsmod # 列出加载的内核模块 # env # 查看环境变量
资源
# free -m # 查看内存使用量和交换区使用量 # df -h # 查看各分区使用情况 # du -sh <目录名> # 查看指定目录的大小 # grep MemTotal /proc/meminfo # 查看内存总量 # grep MemFree /proc/meminfo # 查看空闲内存量 # uptime # 查看系统运行时间、用户数、负载 # cat /proc/loadavg # 查看系统负载
磁盘和分区
# mount | column -t # 查看挂接的分区状态 # fdisk -l # 查看所有分区 # swapon -s # 查看所有交换分区 # hdparm -i /dev/hda # 查看磁盘参数(仅适用于IDE设备) # dmesg | grep IDE # 查看启动时IDE设备检测状况
网络
# ifconfig # 查看所有网络接口的属性 # iptables -L # 查看防火墙设置 # route -n # 查看路由表 # netstat -lntp # 查看所有监听端口 # netstat -antp # 查看所有已经建立的连接 # netstat -s # 查看网络统计信息
进程
# ps -ef # 查看所有进程 # top # 实时显示进程状态
用户
# w # 查看活动用户 # id <用户名> # 查看指定用户信息 # last # 查看用户登录日志 # cut -d: -f1 /etc/passwd # 查看系统所有用户 # cut -d: -f1 /etc/group # 查看系统所有组 # crontab -l # 查看当前用户的计划任务
服务
# chkconfig --list # 列出所有系统服务 # chkconfig --list | grep on # 列出所有启动的系统服务
程序
(..更多内容)# rpm -qa # 查看所有安装的软件包
Musicovery - 依您的心情來發掘音樂 五月 6th, 2009
Musicovery 是一個線上音樂串流服務,嗯,我知道網路上這類服務已經很多,不過 Musicovery 還是加了點變化,其一是,依您的心情來推薦音樂,其二就是令人驚艷的操作介面。
進入網站後,可以看到如下圖的控制台,音樂類型相當多,以不同顏色區別,可以依個人喜好勾選部份或是全選,然後在上方的象限圖中選取目前的心情想聽的音樂取向,X軸兩端是 Dark 與 Positive,Y軸兩端是 Calm 與 Energic,接著就可以開始享受音樂囉!
(..更多内容)Oprah, Hugh, Twitter and Entainment Stuff! 五月 3rd, 2009
Some celebs are really into tweeting - Oprah appears to be one, but she's very new to it, so let's see how long she remains really active. WhoCelebsTweet.com is following bunches of celebs ... if you'd like some others, just make a suggestion.
whoCelebsTweet.com - Celebrities on Twitter 五月 1st, 2009
Twitter is all the rage these days. WhoCelsbsTweet.com allows you to see what celebs are saying and who they're saying it about.
搞笑的白狮 五月 1st, 2009
SpitzTunes -- Boyle-n' Over! 四月 20th, 2009
Let's suspend all those User Questions about 'what's your favorite genre', 'who's your favorite singer', 'do you like the xyz group' 'can you live without music' ... instead, please get into the conversation, understand it, feel it, think about it, and ask a question that applies to your life, your network. Here are some examples of what I consider a really good User Questions from our most recent SpitzTunes: "Do you think powerful concert mania equates to great singers?" "Do you enjoy outdoor summer concerts or do you find them packed and crazy?" "How much would you pay for a ticket to see Michael Jackson in concert?" "When does mania go over the top?"