big bug ban

兴趣 创新 践行

装了个小插件,可以用手机管理WordPress了

 

WordPress Mobile Edition

先装了..貌似有问题.

WordPress Mobile pack

不错..可以接受..


本来还想自己做一个的..

算了..就用这个了!


关键字:

Written by princehaku

七月 17th, 2010 at 12:23 下午

90 views

Posted in things goes by

Tagged with ,

without comments

badapple-js版

 

首先..感谢熊猫同学..

其实之前看到过一个牛人做的..

然后熊猫同学给了我个更多人做的..

自己也做一个…

把badapple弄导出成png..



考虑到js效率不高..

所以都压缩成了32*24的大小..

然后写个java读取像素点..

把得到的黑色就是1 其他为0..存储成序列

顺便把js的标记写了…

得到的文本文件里面就像这样的


然后写个js…搞定…

java的代码在这里..

html的代码在这里..

演示在这里..

改了!!!!!!

效率很高..建议用chrome!!! ..完美20fps…


关键字:

Written by princehaku

七月 11th, 2010 at 12:31 下午

141 views

Posted in other,webbuild

Tagged with ,

with 2 comments

现阶段qq开发包汇总

 

LumaQQ.NET 基于 LumaQQ的.NET开源QQ开发包
Terminal QQ 牛人小虾的作品
OpenQ 基于 Gaim 的 QQ 插件,也被称为 Gaim QQ

好像就只有这么几个…

哎..可怜的tx..可怜的soff..猛击..

我的qqmsger要不要开源呢?..哎..纠结啊..


关键字:

Written by princehaku

七月 10th, 2010 at 10:41 下午

70 views

Posted in think in IT

Tagged with

without comments

jquery制作导航条

 

http://lab.3haku.net/code/js/navbar/

以前也做过这个..不过如果鼠标乱动就会出错..

新的jq1.4加了队列机制可以解决这个问题..

核心代码如下..

/隐藏二级菜单
$(".subnav").hide();
var mouseoutnum=[];
var mouseovernum=[];
	$("#nav .mainnav").each(function(index){
 
		$(this).hover(function(fn){
						clearTimeout(mouseoutnum[index]);
						//设定延时..关闭
						var _self = this;
						mouseovernum[index] = setTimeout(function() {
						jQuery(_self).find(".subnav").slideDown(200);
				}, 300);
 
			},function(fn){
						clearTimeout(mouseovernum[index]);
						//设定延时..关闭
						var _self = this;
						mouseoutnum[index] = setTimeout(function() {
						jQuery(_self).find(".subnav").hide();
				}, 300);
			});
		});

这个是从某大牛那里看到的解决方式-加入延时处理..

这也是种方式..

看效果之前请先把红色方块的挪开…


关键字:

Written by princehaku

七月 8th, 2010 at 12:57 下午

104 views

Posted in webbuild

Tagged with ,

without comments

第一份工作.

 

昨天去见了boss
映象挺好的..

说了很多..确实很有道理..
客户至上..

不像平时做些小东西..做不来扔了就可以了..

然后问了下我常用的东西和我平常的事情
我感觉公司还不错..有的东西不知道..没用过,,

大家在一起做东西挺安逸得,,,

时间有点紧..没一一认识那里工作的人…
明天就去啦~..把大家都认熟!!!

ps:电梯太恐怖了…

另外附个昨晚弄的..因为昨天面试的时候遇到了..

jquery做的导航条


关键字:

Written by princehaku

七月 8th, 2010 at 12:51 下午

58 views

Posted in things goes by

Tagged with

without comments

假期计划..

 

1.尽量找工作..

2.看java..

3.科技立项..

4.QQmsger..

5.phptager..

…要学的还很多哎…

啊….


关键字:

Written by princehaku

七月 7th, 2010 at 2:31 上午

69 views

Posted in things goes by

without comments

重新回来了

 

在本博客挂掉很久后…

我决定重新转移回来自己的阵地…

系统还是用的WordPress..

等有空了再自己写..

百度的文章会慢慢迁移过来..

然后还有新做的东西也发布在这里啦~.


关键字:

Written by princehaku

七月 4th, 2010 at 5:18 下午

108 views

Posted in things goes by

with 4 comments

jquery实现的图片切换效果

 

发一个以前做的东西..或与大家用得上.

示例地址

代码如下

01 <script language="javascript">
02 $("#test").animate({left:"900px"},1).animate({left:"1px"},500)
03 var on=0;
04 $(document).ready(
06                 function(){$("#main").mouseenter(function() {
07                         if(on==0){
08                             //
09                             $("#img").fadeOut("fast",function(){
10                             $("#img-hover").fadeIn("slow");
11                             on=1;
12                         });
13                         //
14                         $("#leftbar").animate({height:"1px"},1).animate({height:"264px"},500)
15                         $("#topbar").animate({width:"1px"},1).animate({width:"170px"},500)
16                         $("#rightbar").animate({height:"1px"},1).animate({height:"264px"},500)
17                         $("#bottombar").animate({width:"1px"},1).animate({width:"170px"},500)
18                         }
19                     });
20                 $("#main").mouseleave(function() {
21                         //
22                         if(on==1){
23                         $("#img-hover").fadeOut("slow",function(){
24                             $("#img").fadeIn("fast");
25                             on=0;
26                         });
27                         //
28                         $("#leftbar").animate({height:"264px"},1).animate({height:"1px"},500)
29                         $("#topbar").animate({width:"170px"},1).animate({width:"1px"},500)
30                         $("#rightbar").animate({height:"264px"},1).animate({height:"1px"},500)
31                         $("#bottombar").animate({width:"170px"},1).animate({width:"1px"},500)
32                         }
33                     });              
34                  });
35 </script>

没有加注释..昂昂


关键字:

Written by princehaku

七月 2nd, 2010 at 8:23 上午

87 views

Posted in webbuild

Tagged with ,

without comments

QQ消息机器人1.0 bug修复…

 


之前的表情显示有问题..修复了….
然后同时把跨站漏洞修复了…
同时修复的还有它不自动加好友的问题..
以及服务器的配置…现在弄了个srv
软件这里分享给大家…

runassrv 下载

ps:下午考了汇编…


关键字:

Written by princehaku

七月 1st, 2010 at 7:10 下午

81 views

Posted in java

Tagged with

without comments

QQMSGer QQ消息机器人 第一个预览版 欢迎测试和拍砖…

 

测试的网址是    http://qqmsger.3haku.net/


用的qq协议还是比较完整滴~..
验证码的问题还没解决..不过运行个10多天应该没问题…现在所有用的ip都可以不要验证码..
等需要验证码的时候再考虑…

留的言..网页上就会显示出来…
因为是才看struts+hibernate…所以做了很久..
给我的感觉就是….把简单的东西复杂化….

还有一个后台..不过后台只能改些设置

用了ajax的..不过看不出来了…除非网络很差….杯具…


来个全图…

最后是两个IDE内的…
包真多啊…

啊~….还有很多要看….php暂时不想用了…有空做个其他的…
现在深入java ing….

假期希望能找到工作….



关键字:

Written by princehaku

六月 30th, 2010 at 5:14 下午

93 views

Posted in java,webbuild

Tagged with

with 4 comments

Pages: Prev 1 2 3 4 5 6 7 8 9 10 ...19 20 21 Next