Submitted by gouki on 2009, October 22, 7:25 AM
这是cnbeta今天上午7点多的消息。标题就很雷人:“偷”了好几个通宵 熬夜“偷菜”晕倒在上班路上。这年头,牛人越来越多。越来越感觉不出有经济危机,大家都很轻松啊。
来源:http://www.cnbeta.com/articles/96058.htm
浙江在线10月22日讯在网络上虚拟种菜种瓜,一天不“偷菜”就憋得慌,后来发展成一项每日必须完成的任务。晚 上调好闹钟,彻夜通宵上网去“偷菜”,最后,身体吃不消,上班路上居然昏倒了。昨天,记者从奉化市公安局岳林派出所获悉,网络“偷菜”爱好者孙先生在早上 上班途中晕倒,被巡逻民警发现,送到了医院。
“我一早起来就发现自己种的菜都被偷光了”,“谁家的菜已经成熟了,赶紧去偷”…
前段时间,家住奉化岳林街道,从事媒体工作的孙先生,在公司里经常听到同事间这样的谈话。他们所说的偷并不是谁家光顾了小偷,而是谈论一种在开心网上虚拟的“偷菜”游戏。
在同事的推荐下,孙先生在开心网上注册了账号。添加了买房子组件,拥有了自己的虚拟花园。接着,孙先生在商店里买各种植物种子,播种灌溉后就等待收获。
孙先生向记者介绍说,自己平时的工作还是挺忙的,整天跑来跑去,一开始经验不足加上时间掌握不好,家里的菜总是被别人偷走。后来随着经验增加,一旦丰收在即,一场保卫战就开始了,而自己的任务不光是守住自家的菜,还要去盗取他人的作物。
偷朋友家的果实然后卖出赚钱。这样一个“偷”与“被偷”的小游戏让他整天忙得不亦乐乎。据孙先生自己介绍,从一开始不会,到小打小闹,最后甚至到了一天不“偷菜”就憋得慌,已经形成“偷菜强迫症”了。
“每天都要上很多次这个网,记好自己收获的时间,按时收获果实,同时,也时不时上网去朋友家偷。”孙先生说,他在网上通过“种菜”和“偷菜”早已“发家致富”已成为“千万富翁”了。半年的时间不到,自己的财富已经不下“千万”了。
谈到“偷菜”,孙先生显得非常开心,“一天不偷还真不习惯,憋得慌呢”。孙先生说,在晕倒前的几天,除了上班,几乎整天守在电脑前,为了打胜自己的保卫战,废寝忘食,还特地买了闹铃来提醒,已经熬了好几个通宵了。
而昨天早上出门,孙先生早饭没吃,一夜几乎没睡,就匆匆去上班了。于是在路上,一阵晕厥就倒了下去。
Tags: 偷菜, 农场, 牛人
Misc | 评论:1
| 阅读:16667
Submitted by gouki on 2009, October 21, 5:17 PM
纯COPY,没仔细看。。。。【先申明,我COPY对这段代码,主要是看他reflectionClass的应用,并非关注插件的应用。。。】
有爱好的人,可以学习一下。。
http://www.e897.com/Article/wlbc/php/200908/5377.html
-
-
-
-
- interface Iplugin{
- public static function getName();
- }
- function findPlugins(){
- $plugins = array();
- foreach (get_declared_classes() as $class){
- $reflectionClass = new ReflectionClass($class);
- if ($reflectionClass->implementsInterface('Iplugin')) {
- $plugins[] = $reflectionClass;
- }
- }
- return $plugins;
- }
- function computeMenu(){
- $menu = array();
- foreach (findPlugins() as $plugin){
- if ($plugin->hasMethod('getMenuItems')) {
- $reflectionMethod = $plugin->getMethod('getMenuItems');
- if ($reflectionMethod->isStatic()) {
- $items = $reflectionMethod->invoke(null);
- } else {
- $pluginInstance = $plugin->newInstance();
- $items = $reflectionMethod->invoke($pluginInstance);
- }
- $menu = array_merge($menu,$items);
- }
- }
- return $menu;
- }
- function computeArticles(){
- $articles = array();
- foreach (findPlugins() as $plugin){
- if ($plugin->hasMethod('getArticles')) {
- $reflectionMethod = $plugin->getMethod('getArticles');
- if ($reflectionMethod->isStatic()) {
- $items = $reflectionMethod->invoke(null);
- } else {
- $pluginInstance = $plugin->newInstance();
- $items = $reflectionMethod->invoke($pluginInstance);
- }
- $articles = array_merge($articles,$items);
- }
- }
- return $articles;
- }
- require_once('plugin.php');
- $menu = computeMenu();
- $articles = computeArticles();
- print_r($menu);
- print_r($articles);
-
-
-
- <?php
- class MycoolPugin implements Iplugin {
- public static function getName(){
- return 'MycoolPlugin';
- }
- public static function getMenuItems(){
- return array(array('description'=>'MycoolPlugin','link'=>'/MyCoolPlugin'));
- }
- public static function getArticles(){
- return array(array('path'=>'/MycoolPlugin','title'=>'This is a really cool article','text'=>xxxxxxxxx));
- }
- }
Tags: 反射, 插件
PHP | 评论:5
| 阅读:28143
Submitted by gouki on 2009, October 21, 9:44 AM
今天是服务器上线来首次重启。
将近10分钟的时候让我等的心焦啊。。。以为Reboot失败了。。吓死我了
首页增加了“工作机会”的链接,是我从51job上订阅回来的。稍作整理,每天更新。
由于代码写的仓促,只作了简单的显示。准备做点页面弄的漂亮一点点,呵呵。。。
Tags: 服务器, 就业
Misc | 评论:0
| 阅读:16153
Submitted by gouki on 2009, October 20, 5:18 PM
来自cnbeta。。。就是丑了点。。
硬件设计公司Spring Design今天宣布了业界首款Andriod操作系统电子书阅读器Alex,除操作系统外,该阅读器还采用了6寸电子纸显示屏和3.5寸彩色触摸屏双屏设计.
据介绍,Alex阅读器具备完整的浏览器功能,3.5寸触摸屏专门为了便于用户浏览而设计.该阅读器还配备了耳机、立体扬声器,支持3G/EVDO/CDMA /GSM网络,提供SD卡插槽.
Spring Design还打算允许开发人员和代理商对阅读器中的多媒体内容进行修改,这为代理商提供了不小的诱惑,但也需要一定的成本.
Spring Design表示他们正与对此感兴趣的合作伙伴进行商谈,该阅读器将在年底上市.

Tags: 阅读器
Misc | 评论:0
| 阅读:15147
Submitted by gouki on 2009, October 19, 12:23 PM
作为收藏进行保留。以防哪天机器被我刷坏。。。
作者是lancexux,来自于安卓网,网址为http://www.hiapk.com
本贴地址为:http://www.hiapk.com/bbs/thread-18793-1-1.html
金卡也称加密卡
是htc在wm系统的做法延续到GPHONE系统上
金卡作用可以理解为就是修复机器系统
例如你机器在刷机的时候刷死了
只要能进三色屏。Gphone 系列是按返回键+开机
能进入这界面
你这个机器就有的救
可以用加密卡刷回改机器的销售地点的原版系统
你的机器就能救活了!
这样你就不用去换字库ic了
以下制作金卡方法转载自“HTC版G2 Magic柬埔寨(KHM)完美SPL 1.33.0010 S=ON制作GoldCard刷ROM成功~详细教程!”
我简单根据我的经验翻译下,和作者写的有些不同,但这个更好理解!
1. Download QMAT http://revskills.de/pages/download.html
从网站上下载Download
2. Format your memory card to fat32. Please keep in mind some card does not work.
在读卡器中格式化你的卡,一定要FAT32格式,可能有些卡不可以
然后把卡放入你的手机,要重启下手机,这样才能正常使用这张卡
3. Search in your android market for ‘Terminal Emulator’
因为没有market,所以要另外下载安装一个Terminal Emulator(超级终端),安装网上有超级终端的apk,本贴6楼有下载
4. type ‘ cat /sys/class/mmc_host/mmc1/mmc1:*/cid ‘ without the quote sign.
在超级终端中输入cat /sys/class/mmc_host/mmc1/mmc1:*/cid,然后按虚拟键盘的回车,如果不行,按下G2中间的小圆点
5. Note that code down on a notepad or something. Make sure everything is noted correctly.
记下超级终端里你输入刚才的命令后出现的一窜编码,一定要正确
6) Go to QMAT site http://revskills.de/pages/download.html, download QMAT
从网站下载QMAT,刚才不是下过了吗?怎么还要下,老外的思路。。。。
7) Extract the file, double click on qmat.exe
解压缩文件,然后双击qmat.exe
8 ) Click on Cyptoanalysis Tools > Crypto Toolbox
找到qmat菜单栏中的Cyptoanalysis Tools,然后点里面的Crypto Toolbox
9) Look way below, there is a text box (beside “Reverse String” button. Key in the cid number you’ve got earlier
Click on the “Reverse String” button, the result is reversed…
Example: 532600bd227d9c0347329407514d5402
把你刚才记下来的那串编码(如532600bd227d9c0347329407514d5402)输入"Reverse String” 按钮左边的文本框,然后按下"Reverse String”,得到反编译后的一窜CID编码,如02544d5107943247039c7d22bd002653
10) Copy the reversed cid
同样的把这串CID编码记下来
11) Go to QMAT again http://revskills.de/pages/goldcard.html to generate your goldcard (this is free for G1 phone, Thanks to Viper!)
去到这个网站,这个网站用来创建一个gold card镜像文件
12) Enter your email. For the CID, enter the reversed cid you’ve got earlier. However you need to replace the first 2 characters to 00.
Example: From “532600bd227d9c0347329407514d5402” to “002600bd227d9c0347329407514d5402”
输入你的email地址,然后输入你刚才反编译后的CID编码(前两位必须改为00),比如“02544d5107943247039c7d22bd002653”改为“00544d5107943247039c7d22bd002653”
(我做的时候貌似忘记忘记改前两位了,但还是成功了,做出来的金卡还是能用的)
13) click Continue and you will receive the goldcard.img via your email.
点击Continue,然后去你的邮箱收邮件
14) Go to your email, download the goldcard.img and save it to a directory first.
把邮件附件中的goldcard.img保存下来
15) Now, download HxD Hex Editor for this site
http://download.cnet.com/HxD-Hex-Editor/3000-2352_4-10891068.html?tag=mncol
去网站下载HxD Editor
补充一点,因为要开始修改你的SD卡了,所以要把卡再次放进读卡器里面
16) Install and launch HxD Hex Editor program
安装和运行HxD Editor
17) Go to Extra tab > Open Disk. Under Physical disk, select Removable Disk (Must be your SD card), uncheck “Open as Readonly), click OK.
点Extra tab菜单,点Open Disk,在Physical disk底下,选择Removable Disk,确定这个必须是你的SD card,不要勾选Open as Readonly,点OK
18) Go to Extra again, Open Disk Image, open up goldcard.img which you’ve saved to a directory earlier.
Now, you should have two tabs, one is your removable disk, the other is goldcard.img. Press OK when prompted for “Sector Size” 512 (Hard disks/Floppy disks), click OK.
再次点Extra tab菜单,点Open Disk Image,选择你刚才从邮件中保存下来的goldcard.img,点OK,“Sector Size” 512 (Hard disks/Floppy disks),点OK
19) Click on goldcard.img tab. Go to Edit tab > Select All, edit tab again > copy.
点 goldcard.img tab,然后在Edit菜单中点select all,然后再在Edit菜单中点copy
20) Click on the “removable disk” tab. Select offset 00000000 till offset 00000170, click on Edit tab and then Paste Write.
点 removable disk tab 选择 00000000 到 00000170的部分,点Edit菜单点 Paste Write
21) Click on File > Save. You may exit this program
点File菜单,点Save,点OK后退出
Now, do a test to see if your SD card is “compatible”
现在点击读卡器里的卡试试,如果这张SD卡还能正常用,说明成功了,如果提示要格式化,就是失败了。(我用的是2年多前多普达S1刚上市时候买的1GB的Sandisk的TF卡)
注意:制作金卡的内存卡最好不要大过1g否则无法制作成功
Tags: 金卡, hiapk, 安卓网
Misc | 评论:2
| 阅读:21755