Autowire 0.1自动破解无线密码(for linux)

2009年3月23日 作者: jean 58 条评论 »

1、除特别说明外,本博客内容皆为原创,可以自由转载传播,但请署名及注明出处,不尊重别人劳动成果的不欢迎;

2、本博客内容遵守“署名-非商业性使用-禁止演绎 2.5 中国大陆”协议;

题外话
起初这个程序是为了方便自己,可以不用每次都敲一大堆命令,功能相对也比较单一。
后来在论坛里看到很多不懂linux的朋友在破解时候遇到了很多难题,于是把当初的脚本完善了一下希望可以帮助更多的人,当然如果因为破解进而学习linux是好的……

工具用起来十分简单,需要手动输入的信息如下
网卡名
破解时候的频段
破解网络的数量

在CentOS 5.2与Bt4下测试通过,Thinkpad t61 , 网卡4965ag。

点我地址

MD5:9ee7df2d3d7f9ef6f8d40979c857104d  autowire.exe

#使用了win的方式命名了这个可执行文件,这纯粹是我比较恶俗。请在*inux下chmod后执行……

Firefox does not save tabs on close on Mac OSX

2010年7月31日 作者: jean 没有评论 »

今天发现FF在MAC OSX上运行不正常,症状是无法保存我打开的标签页了,搜索一番,发现了外国友人的解决办法.

My girlfriend recently got herself a shiny new MacBook Pro, and installed Firefox, as that’s her browser of preference. She kept having a problem that her tabs would not be saved when she closed Firefox, and asked me to look into it.

All the settings under Preferences were OK, so the problem was not with the settings. Likewise, the relevant settings under about:config were set correctly. We tried deleting prefs.js, but that didn’t help either.

Then, as a last-ditch attempt, I tried closing Firefox using the option on the menu bar. I then got the beloved question “Do you want Firefox to save your tabs”. I clicked yes, then restarted Firefox. All the tabs were reloaded. I then used the red X in the upper right-hand corner, the opened Firefox, and the tabs were not reloaded.

I registered the bug with Mozilla (bug #544880), and it seems like this is not so much a bug, as the way Firefox is handled in Mac OS X; when you use the red “x”-button, it does not shut down Firefox, but rather closes the window in question.

Linux文化衫上线了,哈哈,一起来推广Linux吧!

2010年7月28日 作者: jean 没有评论 »

你是一位Linux爱好者么?这个夏天让我们一起推广Linux吧!
这是掌柜第一次做衣服,满怀着激动和欣喜,虽然印出后我个人感觉这个胶印的品质不是一流的,和品牌的胶印确实有一定的差距,若近距离仔细观察胸前的字母略显单薄。但本次在成本上是一点都不少,或许是因为印量太少吧。
我本人已经穿了这件衣服超过48小时,在穿着体验上还是可以的。在此期间已经发了几件衣服给几位在国内TOP10互联网公司的朋友,或许过几天你就能在你们的公司看到了哦:)

淘宝三钻店铺,购买地址:http://item.taobao.com/item.htm?id=6833415318

» 阅读更多: Linux文化衫上线了,哈哈,一起来推广Linux吧!

开发VPN管理平台,VPN客户系统及整套VPN解决方案

2010年7月16日 作者: jean 没有评论 »

具体价格与技术细节与站长联系

在dreamhost购买的账户被封,官方的处理办法令人费解

2010年7月15日 作者: jean 5 条评论 »

早起接到邮件说违反他们的TOS和涉嫌欺诈,于是发邮件询问具体情况。

官方回复如下
Hello,

We do not go into details regarding how our fraud system works (doing so

would only help people avoid triggering it).

I’m sorry but you will need to take your hosting elsewhere.

对此我没法接受,于是发邮件质疑

» 阅读更多: 在dreamhost购买的账户被封,官方的处理办法令人费解

在CodeIgniter如何把控制器的数组传给视图?

2010年7月14日 作者: jean 没有评论 »

我有一个遍历数据库返回的需求,代码如下

//此处获取的值是一个数组
$this->load->database();
$query = $this->db->query("select ID,title from jscodebox where author='jean'");
if ($query->num_rows>0){
$data['filelist'] = $query;
}
$this->load->view('box',$data);
 
//现在我把这个数组在视图里显示。这里需要注意的是在CodeIgniter中遍历数据库的动作
<ul id="mycodelist" style="list-style-type:none;">
<?php foreach($filelist->result() as $item):?>
<li><?php echo $item->title;?></li>
<?php endforeach;?>
</ul>

 Load time improved by PHP Speedy