<?php xml version="1.0" encoding="UTF-8"?> 
<rss version="2.0">
<channel>
<title><![CDATA[破圈儿]]></title>
<link>http://www.developstorm.com/</link>
<description><![CDATA[我是谁的破圈儿]]></description>
<language>utf-8</language>
<copyright><![CDATA[CopyRight 2006 F2Blog.com All Rights Reserved.]]></copyright>
<webMaster><![CDATA[zhaoyta@gmail.com]]></webMaster>
<generator>F2blog 1.2 build 03.01</generator> 
<image>
	<title>破圈儿</title> 
	<url>http://www.developstorm.com/attachments/9617138245.gif</url> 
	<link>http://www.developstorm.com/</link> 
	<description>破圈儿</description> 
</image>
<item>
	<link>http://www.developstorm.com/index.php?load=read&amp;id=233</link>
	<title><![CDATA[FreeMarker 学习小计]]></title>
	<author>我是谁</author>
	<category><![CDATA[FreeMarker]]></category>
	<pubDate>2008-12-03 14:56</pubDate>
	<guid>http://www.developstorm.com/index.php?load=read&amp;id=233</guid>	
	<description><![CDATA[<p>1, 数据模型可视为一棵树<br /> 2，Scalars存储一个单值，类型有字符串，数字，日期，布尔<br /> 3，hashes用唯一的名字存储其他的hashes或scalars<br /> 4，sequence存储一系列有序的变量，这些变量通过下标查找，下标从0开始<br /> 5，In general, unquoted words inside directives or interpolations are treated as references to variables.<br /> &nbsp;&nbsp; 一般的，在directives（指令）和interpolations里没有括起来的单词背认为是一个变量<br /> &nbsp; Literal strings in templates must always be put inside quotation marks.<br /> &nbsp; 常量字符串必须用引号括起来<br /> 6，Note for programmers: A non-existent variable and a variable with null value is the same for FreeMarker,<br /> &nbs</p>]]></description>
</item>
<item>
	<link>http://www.developstorm.com/index.php?load=read&amp;id=232</link>
	<title><![CDATA[常用建站参考网站大本营]]></title>
	<author>我是谁</author>
	<category><![CDATA[Web前台技术]]></category>
	<pubDate>2008-12-02 15:43</pubDate>
	<guid>http://www.developstorm.com/index.php?load=read&amp;id=232</guid>	
	<description><![CDATA[<div class="blog_content"><p>在我个人开发网站的过程中，经常会参考一些网站，我不擅长美工，所以一般页面都喜欢直接拿来用，再自己修饰一下，以下一些网站是我经常访问的，共享给大家：</p><ol><li>站酷（<a href="http://www.zcool.com.cn/" target="_blank"><font color="#7d0000">http://www.zcool.com.cn/</font></a> ）：拥有丰富的网站资源与模板，很棒 </li><li>51js和blueidea（<a href="http://bbs.51js.com/" target="_blank"><font color="#7d0000">http://bbs.51js.com</font></a> ，<a href="http://www.blueidea.com/" target="_blank"><font color="#7d0000">http://www.blueidea.com</font></a> ） ：主要看一些js高手们探讨的帖子。 </li><li>JQuery官网（<a href="http://jquery.com/" target="_blank"><font color="#7d0000">http://jquery.com</font></a> ）：不用说了 </li><li><a href="http://www.freecsstemplates.org/" target="_blank"><font color="#7d0000">http://www.freecsstemplates.org/</font></a> ：很多老外上传的免费模板，有些付费的看看效果图也不错，然后自己动手写，非常有参考价值 </li></ol><p>不知道大家有没有补充的，在建站的过程中，有没有经常参考的网站呢？欢迎讨论！</p><br /><p>网友补充：</p><ol><li>CSS资源和学习网站（<a href="http://www.52css.com/" target="_blank"><font color="#7d0000">http://www.52css.com/</font></a> ） </li><li><a href="http://www.w3school.com.cn/" target="_blank"><font color="#7d0000">http://www.w3school.com.cn/</font></a></li></ol><br /><br /></div>]]></description>
</item>
<item>
	<link>http://www.developstorm.com/index.php?load=read&amp;id=231</link>
	<title><![CDATA[Java图片处理小记]]></title>
	<author>我是谁</author>
	<category><![CDATA[J2SE基础]]></category>
	<pubDate>2008-11-25 10:08</pubDate>
	<guid>http://www.developstorm.com/index.php?load=read&amp;id=231</guid>	
	<description><![CDATA[<a href="http://www.exampledepot.com/egs/java.awt.image/pkg.html">http://www.exampledepot.com/egs/java.awt.image/pkg.html</a><br /> 包含很多image处理例子，很好<br /><br /> 使用Java动态处理图片非常方便，可以用于很多应用场合，比如动态输入股市线，缩略图，动态banner图片、动态的界面风格等等。笔者也在软件开发过程中使用了这些技术，使得软件的界面色彩风格可以用户自定义任何一种色彩，大大增强了软件界面的个性化适应能力。下面我对使用Java技术实现图片处理的整个环节做主要说明：<br /><br /><br /> 1、图片的装载。我们要处理图片首先要装载图片到Java内存空间的图片对象，Java用很多类来支持图片的装载，比如<br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;a、根据图片文件字节数组装载图片:<br /><ol><li><span><span class="keyword"><strong><font color="#7f0055">public</font></strong></span><span>&nbsp;&nbsp;Image&nbsp;&nbsp;loadImage(</span><span class="keyword"><strong><font color="#7f0055">byte</font></strong></span><span>[]&nbsp;&nbsp;data){ &nbsp;&nbsp;</span></span></li><li><span>&nbsp;&nbsp;&nbsp;Image&nbsp;&nbsp;t=Toolkit.getDefaultToolkit().createImage(data)</span></li></ol>]]></description>
</item>
<item>
	<link>http://www.developstorm.com/index.php?load=read&amp;id=230</link>
	<title><![CDATA[网吧里让人喷饭的一幕]]></title>
	<author>我是谁</author>
	<category><![CDATA[生活杂侃]]></category>
	<pubDate>2008-11-24 16:20</pubDate>
	<guid>http://www.developstorm.com/index.php?load=read&amp;id=230</guid>	
	<description><![CDATA[<strong><font size="4">在网吧,有个十二、三岁的小孩在玩魔兽世界，突然大叫&ldquo;老爸，有人打我！&rdquo;我们在场的各位诧异，心想，魔兽里也有人认老爸？<br /> 　　就在此时，网吧另一头传出一个中年男子的声音：&ldquo;儿子，在哪？我来！！&rdquo;网吧众人皆 晕。<br /> 　　数分钟后，中年男子叫到：&ldquo;儿子我们打不过他们，他们装备好，快跑！&rdquo;众人狂ft。<br /> 　　又过了一会，一位中年女子进了网吧，四处张望，然后径直走向那个男孩，拎起男孩耳朵 就骂：&ldquo;你不是去老师家补课了吗！？&rdquo;男孩一手护着耳朵一手指向网吧另一边，呼：&ldquo; 爸爸也在！&rdquo;其母惊讶，望去，果然！立马责问：&ldquo;你不是去加班了吗？&rdquo;<br /> 　　网吧里众人晕死n次！<br /> 　　其父辩解道：今天双倍经验。<br /> 　　其母大喜且怒曰：还好老娘请假过来看看，要不然晚上你们父子两个等级就超过我了， 双倍经验也不发短信通知我？晚上回去有你好看！那个谁？哦，儿子，别怕，妈来了，妈 开大号来挺你。妈就不信我们母子两个搞不死丫的！<br /> 　　围观者皆叹曰：有妻若此，夫复奈何；有母如此，子复何求。佩服！</font></strong>]]></description>
</item>
<item>
	<link>http://www.developstorm.com/index.php?load=read&amp;id=229</link>
	<title><![CDATA[流程变量问题]]></title>
	<author>我是谁</author>
	<category><![CDATA[JBPM]]></category>
	<pubDate>2008-11-24 16:15</pubDate>
	<guid>http://www.developstorm.com/index.php?load=read&amp;id=229</guid>	
	<description><![CDATA[Exception in thread &quot;main&quot; org.jbpm.persistence.JbpmPersistenceException: hibernate commit failed<br /> &nbsp;at org.jbpm.persistence.db.DbPersistenceService.close(DbPersistenceService.java:223)<br /> &nbsp;at org.jbpm.svc.Services.close(Services.java:223)<br /> &nbsp;at org.jbpm.JbpmContext.close(JbpmContext.java:139)<br /> &nbsp;at org.easyflow.TestContextInstanceValueObject.main(TestContextInstanceValueObject.java:34)<br /> Caused by: org.hibernate.HibernateException: instance not of expected entity type: org.jb]]></description>
</item>
<item>
	<link>http://www.developstorm.com/index.php?load=read&amp;id=228</link>
	<title><![CDATA[j2ee架构图]]></title>
	<author>我是谁</author>
	<category><![CDATA[J2EE开发]]></category>
	<pubDate>2008-11-19 17:17</pubDate>
	<guid>http://www.developstorm.com/index.php?load=read&amp;id=228</guid>	
	<description><![CDATA[<img src="http://www.developstorm.com/attachments/200811/5257609527.jpg" style="cursor:pointer;" onclick="open_img(&#39;http://www.developstorm.com/attachments/200811/5257609527.jpg&#39;)" alt="http://www.developstorm.com/attachments/200811/5257609527.jpg" width="400" height="264" align="left" />]]></description>
</item>
<item>
	<link>http://www.developstorm.com/index.php?load=read&amp;id=227</link>
	<title><![CDATA[Jbosscache Interceptor Command 模式详解]]></title>
	<author>我是谁</author>
	<category><![CDATA[Jboss]]></category>
	<pubDate>2008-11-19 16:25</pubDate>
	<guid>http://www.developstorm.com/index.php?load=read&amp;id=227</guid>	
	<description><![CDATA[<img src="http://www.developstorm.com/images/download.gif" alt="下载文件" style="margin:0px 2px -4px 0px"/><a href="http://www.developstorm.com/download.php?id=49">Jbosscache Interceptor Command 模式详解.doc</a>&nbsp;(51 KB , 下载:20次)]]></description>
</item>
<item>
	<link>http://www.developstorm.com/index.php?load=read&amp;id=226</link>
	<title><![CDATA[Configuration结构图]]></title>
	<author>我是谁</author>
	<category><![CDATA[Jboss]]></category>
	<pubDate>2008-11-19 16:24</pubDate>
	<guid>http://www.developstorm.com/index.php?load=read&amp;id=226</guid>	
	<description><![CDATA[<img style="width: 643px; height: 250px" src="http://www.developstorm.com/attachments/200811/2868817184.jpg" style="cursor:pointer;" onclick="open_img(&#39;http://www.developstorm.com/attachments/200811/2868817184.jpg&#39;)" alt="http://www.developstorm.com/attachments/200811/2868817184.jpg" width="643" height="250" align="left" />]]></description>
</item>
<item>
	<link>http://www.developstorm.com/index.php?load=read&amp;id=225</link>
	<title><![CDATA[HTTP/1.1 Cache-Control 标头的设定参数]]></title>
	<author>我是谁</author>
	<category><![CDATA[J2EE开发]]></category>
	<pubDate>2008-11-12 11:22</pubDate>
	<guid>http://www.developstorm.com/index.php?load=read&amp;id=225</guid>	
	<description><![CDATA[<p>HTTP/1.1 Cache-Control 标头的设定参数&nbsp;<br /><img src="http://www.developstorm.com/attachments/200811/2153521399.jpg" style="cursor:pointer;" onclick="open_img(&#39;http://www.developstorm.com/attachments/200811/2153521399.jpg&#39;)" alt="http://www.developstorm.com/attachments/200811/2153521399.jpg" width="400" height="284" align="left" /></p>]]></description>
</item>
<item>
	<link>http://www.developstorm.com/index.php?load=read&amp;id=224</link>
	<title><![CDATA[mysql忘记root密码解决办法]]></title>
	<author>我是谁</author>
	<category><![CDATA[MySql]]></category>
	<pubDate>2008-11-03 21:51</pubDate>
	<guid>http://www.developstorm.com/index.php?load=read&amp;id=224</guid>	
	<description><![CDATA[1.以系统管理员身份登陆系统。 <p>　　2.打开cmd-----net start 查看mysql是否启动。启动的话就停止net stop mysql.</p><p>　　3.我的mysql安装在d:\usr\local\mysql4\bin下。</p><p>　　4.跳过权限检查启动mysql.</p><p>　　d:\usr\local\mysql4\bin\mysqld-nt --skip-grant-tables</p><p>　　5.重新打开cmd。进到d:\usr\local\mysql4\bin下：</p><p>　　d:\usr\local\mysql4\bin\mysqladmin -uroot flush-privileges password &quot;newpassword&quot;</p><p>　　d:\usr\local\mysql4\bin\mysqladmin -u root -p shutdown&nbsp; 这句提示你重新输密码。</p><p>　　6.在cmd里net start mysql</p><p>　　7.搞定了。</p>]]></description>
</item>
</channel>
</rss>