diff --git a/src/AtomLab.Utility/ImageProcessing.cs b/src/AtomLab.Utility/ImageProcessing.cs index ee8dd965..c5b79fff 100644 --- a/src/AtomLab.Utility/ImageProcessing.cs +++ b/src/AtomLab.Utility/ImageProcessing.cs @@ -264,19 +264,19 @@ public static void CutForSquare(System.IO.Stream fromFile, string fileSaveUrl, i /// /// 吴剑 2010-11-15 /// 原图HttpPostedFile对象 - /// 保存路径 + /// 保存路径 /// 最大宽(单位:px) /// 最大高(单位:px) /// 质量(范围0-100) - public static void CutForCustom(System.Web.HttpPostedFile postedFile, string fileSaveUrl, int maxWidth, int maxHeight, int quality) + public static void CutForCustom(string file, int maxWidth, int maxHeight, int quality) { //从文件获取原始图片,并使用流中嵌入的颜色管理信息 - System.Drawing.Image initImage = System.Drawing.Image.FromStream(postedFile.InputStream, true); + System.Drawing.Image initImage = System.Drawing.Image.FromFile(file, true); //原图宽高均小于模版,不作处理,直接保存 if (initImage.Width <= maxWidth && initImage.Height <= maxHeight) { - initImage.Save(fileSaveUrl, System.Drawing.Imaging.ImageFormat.Jpeg); + initImage.Save(file, System.Drawing.Imaging.ImageFormat.Jpeg); } else { @@ -295,7 +295,7 @@ public static void CutForCustom(System.Web.HttpPostedFile postedFile, string fil templateG.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality; templateG.Clear(Color.White); templateG.DrawImage(initImage, new System.Drawing.Rectangle(0, 0, maxWidth, maxHeight), new System.Drawing.Rectangle(0, 0, initImage.Width, initImage.Height), System.Drawing.GraphicsUnit.Pixel); - templateImage.Save(fileSaveUrl, System.Drawing.Imaging.ImageFormat.Jpeg); + templateImage.Save(file, System.Drawing.Imaging.ImageFormat.Jpeg); } //原图与模版比例不等,裁剪后缩放 else @@ -374,13 +374,10 @@ public static void CutForCustom(System.Web.HttpPostedFile postedFile, string fil ep.Param[0] = new EncoderParameter(System.Drawing.Imaging.Encoder.Quality, (long)quality); //保存缩略图 - templateImage.Save(fileSaveUrl, ici, ep); - //templateImage.Save(fileSaveUrl, System.Drawing.Imaging.ImageFormat.Jpeg); - - //释放资源 + initImage.Dispose(); + templateImage.Save(file, ici, ep); templateG.Dispose(); templateImage.Dispose(); - pickedG.Dispose(); pickedImage.Dispose(); } diff --git a/src/YangKai.BlogEngine.Web.Mvc/Content/js/controllers/ArticleDetailController.coffee b/src/YangKai.BlogEngine.Web.Mvc/Content/js/controllers/ArticleDetailController.coffee index 9faeb4d8..15d4ddde 100644 --- a/src/YangKai.BlogEngine.Web.Mvc/Content/js/controllers/ArticleDetailController.coffee +++ b/src/YangKai.BlogEngine.Web.Mvc/Content/js/controllers/ArticleDetailController.coffee @@ -43,12 +43,13 @@ $scope.entity= {} - #TODO 如果Global中用户信息读取比此处慢,将无法绑定用户信息到界面. - $scope.entity.Author = $scope.User.UserName - $scope.entity.Email = $scope.User.Email - $scope.entity.Url = $scope.User.Url - $scope.AuthorForDisplay=$scope.User.UserName - $scope.editmode=$scope.User.UserName=='' or not $scope.User.UserName? + $scope.$watch 'User',-> + if $scope.User + $scope.entity.Author = $scope.User.UserName + $scope.entity.Email = $scope.User.Email + $scope.entity.Url = $scope.User.Url + $scope.AuthorForDisplay=$scope.User.UserName + $scope.editmode=$scope.User.UserName=='' or not $scope.User.UserName? $scope.del = (item) -> Comment.del {id:item.CommentId} diff --git a/src/YangKai.BlogEngine.Web.Mvc/Content/js/controllers/ArticleDetailController.js b/src/YangKai.BlogEngine.Web.Mvc/Content/js/controllers/ArticleDetailController.js index 32dccad6..d345e78e 100644 --- a/src/YangKai.BlogEngine.Web.Mvc/Content/js/controllers/ArticleDetailController.js +++ b/src/YangKai.BlogEngine.Web.Mvc/Content/js/controllers/ArticleDetailController.js @@ -54,11 +54,15 @@ ArticleDetailController = [ }); }); $scope.entity = {}; - $scope.entity.Author = $scope.User.UserName; - $scope.entity.Email = $scope.User.Email; - $scope.entity.Url = $scope.User.Url; - $scope.AuthorForDisplay = $scope.User.UserName; - $scope.editmode = $scope.User.UserName === '' || !($scope.User.UserName != null); + $scope.$watch('User', function() { + if ($scope.User) { + $scope.entity.Author = $scope.User.UserName; + $scope.entity.Email = $scope.User.Email; + $scope.entity.Url = $scope.User.Url; + $scope.AuthorForDisplay = $scope.User.UserName; + return $scope.editmode = $scope.User.UserName === '' || !($scope.User.UserName != null); + } + }); $scope.del = function(item) { return Comment.del({ id: item.CommentId diff --git a/src/YangKai.BlogEngine.Web.Mvc/Content/js/controllers/ArticleDetailController.min.js b/src/YangKai.BlogEngine.Web.Mvc/Content/js/controllers/ArticleDetailController.min.js index 1f379b2f..4e514b30 100644 --- a/src/YangKai.BlogEngine.Web.Mvc/Content/js/controllers/ArticleDetailController.min.js +++ b/src/YangKai.BlogEngine.Web.Mvc/Content/js/controllers/ArticleDetailController.min.js @@ -1 +1 @@ -var ArticleDetailController=["$scope","$routeParams","progressbar","Article","Comment",function(n,t,i,r,u){return n.$parent.showBanner=!1,n.loading=!0,n.url=t.url,r.get({$filter:"Url eq '"+n.url+"'"},function(t){var u,f,i,c,o,e,l,a,s,h;if(n.loading=!1,n.item=t.value[0],!n.item){n.$parent.title="404";return}if(n.$parent.title=n.item.Title,codeformat(),n.entity.PostId=n.item.PostId,n.prevPost=r.nav({$filter:"IsDeleted eq false and CreateDate lt datetime'"+n.item.CreateDate+"' and Group/Url eq '"+n.item.Group.Url+"'",$orderby:"CreateDate desc"}),n.nextPost=r.nav({$filter:"IsDeleted eq false and CreateDate gt datetime'"+n.item.CreateDate+"' and Group/Url eq '"+n.item.Group.Url+"'",$orderby:"CreateDate"}),n.item.Tags.length){for(i="",s=n.item.Tags,u=o=0,l=s.length;o + if $scope.User + $scope.entity.Author = $scope.User.UserName + $scope.entity.Email = $scope.User.Email + $scope.entity.Url = $scope.User.Url + $scope.AuthorForDisplay=$scope.User.UserName + $scope.editmode=$scope.User.UserName=='' or not $scope.User.UserName? + $scope.list = Message.query $filter:'IsDeleted eq false',-> for item in $scope.list.value if item.Email diff --git a/src/YangKai.BlogEngine.Web.Mvc/Content/js/controllers/MessageController.js b/src/YangKai.BlogEngine.Web.Mvc/Content/js/controllers/MessageController.js index 3d8eba81..1897aa96 100644 --- a/src/YangKai.BlogEngine.Web.Mvc/Content/js/controllers/MessageController.js +++ b/src/YangKai.BlogEngine.Web.Mvc/Content/js/controllers/MessageController.js @@ -6,11 +6,15 @@ MessageController = [ $scope.$parent.showBanner = false; $scope.loading = true; $scope.entity = {}; - $scope.entity.Author = $scope.User.UserName; - $scope.entity.Email = $scope.User.Email; - $scope.entity.Url = $scope.User.Url; - $scope.AuthorForDisplay = $scope.User.UserName; - $scope.editmode = $scope.User.UserName === '' || !($scope.User.UserName != null); + $scope.$watch('User', function() { + if ($scope.User) { + $scope.entity.Author = $scope.User.UserName; + $scope.entity.Email = $scope.User.Email; + $scope.entity.Url = $scope.User.Url; + $scope.AuthorForDisplay = $scope.User.UserName; + return $scope.editmode = $scope.User.UserName === '' || !($scope.User.UserName != null); + } + }); $scope.list = Message.query({ $filter: 'IsDeleted eq false' }, function() { diff --git a/src/YangKai.BlogEngine.Web.Mvc/Content/js/controllers/MessageController.min.js b/src/YangKai.BlogEngine.Web.Mvc/Content/js/controllers/MessageController.min.js index df0d167e..249f9137 100644 --- a/src/YangKai.BlogEngine.Web.Mvc/Content/js/controllers/MessageController.min.js +++ b/src/YangKai.BlogEngine.Web.Mvc/Content/js/controllers/MessageController.min.js @@ -1 +1 @@ -var MessageController=["$scope","progressbar","Message",function(n,t,i){return n.$parent.title="Message Boards",n.$parent.showBanner=!1,n.loading=!0,n.entity={},n.entity.Author=n.User.UserName,n.entity.Email=n.User.Email,n.entity.Url=n.User.Url,n.AuthorForDisplay=n.User.UserName,n.editmode=n.User.UserName===""||!(n.User.UserName!=null),n.list=i.query({$filter:"IsDeleted eq false"},function(){var t,i,u,r;for(r=n.list.value,i=0,u=r.length;i().Add(entity); Rss.BuildPostRss(); return entity; diff --git a/src/YangKai.BlogEngine.Web.Mvc/UpLoad/offsite/2013.08.30.23/0f7b67fe-b4ac-471c-b929-000c1e1839ff.jpg b/src/YangKai.BlogEngine.Web.Mvc/UpLoad/offsite/2013.08.30.23/0f7b67fe-b4ac-471c-b929-000c1e1839ff.jpg new file mode 100644 index 00000000..555a3f6f Binary files /dev/null and b/src/YangKai.BlogEngine.Web.Mvc/UpLoad/offsite/2013.08.30.23/0f7b67fe-b4ac-471c-b929-000c1e1839ff.jpg differ diff --git a/src/YangKai.BlogEngine.Web.Mvc/UpLoad/offsite/2013.08.30.23/e9b605ae-0b58-453a-85f1-ad210d808355.jpg b/src/YangKai.BlogEngine.Web.Mvc/UpLoad/offsite/2013.08.30.23/e9b605ae-0b58-453a-85f1-ad210d808355.jpg new file mode 100644 index 00000000..555a3f6f Binary files /dev/null and b/src/YangKai.BlogEngine.Web.Mvc/UpLoad/offsite/2013.08.30.23/e9b605ae-0b58-453a-85f1-ad210d808355.jpg differ diff --git a/src/YangKai.BlogEngine.Web.Mvc/UpLoad/offsite/2013.08.30.232/41fa4783-e71e-49a9-b7f6-b000e8fb20a3.jpg b/src/YangKai.BlogEngine.Web.Mvc/UpLoad/offsite/2013.08.30.232/41fa4783-e71e-49a9-b7f6-b000e8fb20a3.jpg new file mode 100644 index 00000000..555a3f6f Binary files /dev/null and b/src/YangKai.BlogEngine.Web.Mvc/UpLoad/offsite/2013.08.30.232/41fa4783-e71e-49a9-b7f6-b000e8fb20a3.jpg differ diff --git a/src/YangKai.BlogEngine.Web.Mvc/UpLoad/offsite/2013.08.30.232/e6bec30e-6c2c-4288-9f09-ed30174b4e53.jpg b/src/YangKai.BlogEngine.Web.Mvc/UpLoad/offsite/2013.08.30.232/e6bec30e-6c2c-4288-9f09-ed30174b4e53.jpg new file mode 100644 index 00000000..555a3f6f Binary files /dev/null and b/src/YangKai.BlogEngine.Web.Mvc/UpLoad/offsite/2013.08.30.232/e6bec30e-6c2c-4288-9f09-ed30174b4e53.jpg differ diff --git a/src/YangKai.BlogEngine.Web.Mvc/UpLoad/qrcode/23.png b/src/YangKai.BlogEngine.Web.Mvc/UpLoad/qrcode/23.png new file mode 100644 index 00000000..1df5a558 Binary files /dev/null and b/src/YangKai.BlogEngine.Web.Mvc/UpLoad/qrcode/23.png differ diff --git a/src/YangKai.BlogEngine.Web.Mvc/UpLoad/qrcode/232.png b/src/YangKai.BlogEngine.Web.Mvc/UpLoad/qrcode/232.png new file mode 100644 index 00000000..ee9c884a Binary files /dev/null and b/src/YangKai.BlogEngine.Web.Mvc/UpLoad/qrcode/232.png differ diff --git a/src/YangKai.BlogEngine.Web.Mvc/UpLoad/qrcode/4.png b/src/YangKai.BlogEngine.Web.Mvc/UpLoad/qrcode/4.png new file mode 100644 index 00000000..ac4444fe Binary files /dev/null and b/src/YangKai.BlogEngine.Web.Mvc/UpLoad/qrcode/4.png differ diff --git a/src/YangKai.BlogEngine.Web.Mvc/feed_articles.xml b/src/YangKai.BlogEngine.Web.Mvc/feed_articles.xml index 4a503dbf..df5bd20d 100644 --- a/src/YangKai.BlogEngine.Web.Mvc/feed_articles.xml +++ b/src/YangKai.BlogEngine.Web.Mvc/feed_articles.xml @@ -6,22 +6,102 @@ http://www.woshinidezhu.com/ zh-cn &copy; Powered by YangKai , 2008-2013, All Rights Reserved. 蜀ICP备09016538号. - Thu, 29 Aug 2013 22:44:13 GMT - Thu, 29 Aug 2013 22:44:13 GMT + Fri, 30 Aug 2013 17:07:18 GMT + Fri, 30 Aug 2013 17:07:18 GMT http://backend.userland.com/rss RSS.NET: http://www.rssdotnet.com/ - /article + 4 <p> - /article1</p> + 4444</p> - http://www.woshinidezhu.com/#!/post/article - 原创地 - 默认 - 9d8e328e-87ae-474a-be62-1669c87e4f40 - Thu, 29 Aug 2013 22:25:38 GMT + http://www.woshinidezhu.com/#!/post/4 + 视频 - 默认 + a6445573-99fa-47a5-a590-300c6179a34a + Fri, 30 Aug 2013 17:05:20 GMT + + + 77 + <p> + 77</p> + + http://www.woshinidezhu.com/#!/post/77 + 技术 - 默认 + 9ecf1bda-461b-4e7d-a76a-20470fcaa373 + Wed, 28 Aug 2013 14:36:39 GMT + + + 88 + <p> + 888</p> + + http://www.woshinidezhu.com/#!/post/88 + 技术 - 默认 + 技术 - 早期数据 + e77fe06b-84b7-4b19-9aa9-1228f9e10909 + Wed, 28 Aug 2013 14:35:35 GMT + + + 999999999999 + <p> + 44</p> + + http://www.woshinidezhu.com/#!/post/9999 + 技术 - ASP.NET + 技术 - ASP.NET MVC + 技术 - C# + 技术 - Entity Framework + 技术 - Web 2.0 + 技术 - 编程思想 + 技术 - SEO + 技术 - 用户体验 + 技术 - SQL Server + 技术 - .NET + 技术 - 程序人生 + 技术 - 杂类 + 技术 - CSS + 技术 - TDD + 987af439-8be9-4dd8-b9ce-77c03c48ec9e + Thu, 22 Aug 2013 15:45:22 GMT + + + 8888 + http://www.woshinidezhu.com/#!/post/88888 + 技术 - 默认 + 技术 - 早期数据 + 2f8fd820-8a58-4249-bf30-6f5d651c557b + Thu, 22 Aug 2013 15:43:20 GMT + + + 8888 + http://www.woshinidezhu.com/#!/post/88888 + 技术 - 默认 + 技术 - 早期数据 + 85a702d7-8ab4-400e-91d4-5760efbd4ed0 + Thu, 22 Aug 2013 15:43:18 GMT + + + 撒旦撒 + <p> + 啊打发随碟附送</p> + + http://www.woshinidezhu.com/#!/post/satan-sub + 视频 - 早期数据 + 3c94f3e1-3cff-4720-a6e5-d7f48dd147ab + Sat, 01 Jun 2013 16:49:00 GMT + + + 22222222222222 + <p> + 2222222222222</p> + + http://www.woshinidezhu.com/#!/post/22222222222222 + 视频 - 默认 + e0046b6f-7940-4883-b765-427fe69255e9 + Sat, 01 Jun 2013 16:47:00 GMT - 1 + 如何成为强大的程序员? <p> <a href="http://www.aaronstannard.com/">Aaron Stannard</a>是新创公司<u><a href="https://markedup.com/">MarkedUp</a></u>的CEO,他最近花费大量时间雇佣、评估很多不同的程序员,并和他们一起协作。在这个过程中他发现并总结了<a href="http://www.aaronstannard.com/post/2013/02/06/10-Reasons-Why-Youe28099re-Failing-to-Realize-Your-Potential-as-a-Developer.aspx">十种程序员无法意识到自己潜力的原因</a>,意在让更多程序员发掘出自己的潜力,从而成为强大的程序员。</p> <p> @@ -99,16 +179,122 @@ Mon, 11 Mar 2013 17:45:00 GMT - “贱人就是矫情”翻译伤脑筋! + 你是想读书,还是想读完书? <p> - 《甄嬛传》正在走向世界!</p> -<p> - <div><object id='sinaplayer' width='480' height='370' ><param name='allowScriptAccess' value='always' /><embed pluginspage='http://www.macromedia.com/go/getflashplayer' src='http://you.video.sina.com.cn/api/sinawebApi/outplayrefer.php/vid=97627084_1270492934_ZkO0TSNuC2WP+Eh0HTWxve0D+/cXuvDogG2yuVWkLQpPE1XaapWeZN8A4CHSFqwbrz0xHcZkeP8wkkR5Zata2TMuYAsagVA/s.swf' type='application/x-shockwave-flash' name='sinaplayer' allowFullScreen='true' allowScriptAccess='always' width='480' height='370'></embed></object></div></p> + &nbsp;</p> +<div> + 以前,读书前会很想读一本书,但实际读书时,经常是&ldquo;想读完书&rdquo;,而不是&ldquo;想读书&rdquo;。这种想法经常会让我的生活变得很痛苦,当你做一件事想着快点做完时,你的心思其实已经不在这件事上了。</div> +<div> + &nbsp;</div> +<div> + 这个问题在我大学时困扰了我很久。我没有意识到这本身其实是一个价值观问题,以至于我常在一些时间管理的书中寻找答案。那些书都只能让你更高效地&ldquo;做完事&rdquo;,却不能让你在做的过程中更投入一分。</div> +<div> + &nbsp;</div> +<div> + 直到后来离开学校,了解了一小部分禅宗思想,我开始豁然开朗。禅宗讲求摒除心中的杂质,全部精神专注于当下,摒弃过去摒弃未来,任何的多余的念头都可能使你正在做的事情不纯粹。禅宗上,这叫&ldquo;正念&rdquo;,我非常非常欣赏。</div> +<div> + &nbsp;</div> +<div> + 想想看,你去旅行,那你是为了旅行和生活本身呢,还是为了旅行回来能增加一点谈资、写一篇游记呢?答案是显然的。</div> +<div> + &nbsp;</div> +<div> + 人生也是一样,如果你一心只等着功成名就家财万贯衣食无忧的那一天,就好像你旅游时只等着回去写游记和炫耀一样,旅行本身就失去了意义。</div> +<div> + &nbsp;</div> +<div> + 生活就像这样的旅行,我们今天读的每一本书,写的每一个字,迈的每一个步,做的每一件事,就是这趟旅行的一部分。如果我们不能专注于它本身并享受这种过程,那整个生活就会变成急不可耐的煎熬。</div> +<div> + &nbsp;</div> +<div> + 回到读书上来,现在我觉得对书的&ldquo;量&rdquo;的追求是完全无意义的。如果我在读一本书时专注于其中,不仅可以获得远比匆匆翻过更深入的东西,而且还能为人生增加不曾虚度的有趣有意义的几天或几小时。</div> +<div> + &nbsp;</div> +<div> + 对了,在很多领域都有一个词叫&ldquo;flow&rdquo;,描述人们沉浸在某事中获得的愉悦状态,根据我粗浅通俗的理解,禅宗正念的目标,就是把这种状态扩展延伸到你生命的每一秒。</div> +<div> + &nbsp;</div> +<div> + &nbsp;</div> +<div> + &nbsp;</div> +<div> + <img alt="阅读" height="318" src="/upload/offsite/2013.03.11.do-you-want-to-read-or-do-you-want-to-read-a-book/0547faf2-8247-4bbd-8fd8-0340e9d002d1.jpg" style="color: rgb(0, 0, 0); font-family: arial, sans-serif; font-size: 13px;" width="450" /></div> +<div> + &nbsp;</div> +<div> + &nbsp;</div> +<div> + <strong>知乎上有个很好的问题:大学两年读了大概200本书,为什么感觉读书的价值还是没有体现出来呢</strong></div> +<div> + &nbsp;</div> +<div> + <strong>其中有些精彩的回答道出了个中缘由&mdash;&mdash;&ldquo;书不在于读完它,而在它成为你人生的一部分。&rdquo;</strong></div> +<div> + &nbsp;</div> +<div> + 大学时,一位很有才华的心理学老师说过的一句话,让我终身难忘:&ldquo;很多同学喜欢说自己一天能读多少页的书,有些人一天能读50页,有些人能读100页。可是一旦你用&lsquo;页数&rsquo;为单位来度量读书这种行为时,从一开始你就错了。&rdquo;</div> +<div> + &nbsp;</div> +<div> + 同理,如果你用读了多少本书来形容你的读书经历,这种思路,从一开始就错了。</div> +<div> + &nbsp;</div> +<div> + 如果你认真读到了书里去,是不会care、甚至会完全忽略掉今天读了多少页,今年读了多少本的;当你沉迷于书中绚烂多彩的世界,当你的观念被翻天覆地地革新,是不会care、甚至会完全忽略掉今天读了多少页,今年读了多少本的。</div> +<div> + &nbsp;</div> +<div> + 当我们看手表的时候,常是快等不及了;当我们数书页的时候,常是快看不下去了;当我们念叨看了几本书的时候,常是连书名都记不全了。所以,数多少页、多少本这行为本身,就说明你已经败了。</div> +<div> + &nbsp;</div> +<div> + 很多时候,一个人对待知识和思想的态度,就体现在用什么东西去丈量它。</div> +<div> + &nbsp;</div> +<div> + 如果有人问一位读书而有大成之人:你因何而脱胎换骨?你因何而涅磐重生?这些问题,他该如何作答?他说:&rdquo;我因200本书而脱胎换骨,我因1000本书而涅磐重生&ldquo;,如何?</div> +<div> + &nbsp;</div> +<div> + 阅读是一种享受,但如果读完一本书,没有新的体验,完全不同的视角和观点、不能对你的思维有所改变、特别是读完一本好书之后,想不清楚、说不清楚、写不清楚、也从来没有行动过,那你看书是在浪费时间。</div> +<div> + &nbsp;</div> +<div> + 学而悟道,有时候一本书就够了,有时候一万本都不够。这取决于,你读了什么书,更重要的是,你是如何读的:你有没有读进去把自己活埋在里面,又有没有读出来敲打出一个新的自己。</div> +<div> + &nbsp;</div> +<div> + 有些书,是一代宗师级的人物,把他们毕生的智慧熔铸在一本书里面;有些书,是一个领域的开疆拓土之作,从一片混沌中劈出一个新世界;有些书,是一个领域的集大成之作,观点纷繁,气象万千;有些书,如盗梦空间一般有几层境界,你多读一遍就多梦到一层。对这些书,你若只是都当成那两百分之一,花上一个星期匆匆读完,读后即扔,只摘下几条金句供日后泡妞之用,难道这就算读过了吗?</div> +<div> + &nbsp;</div> +<div> + 有些书,要用心血去读;有些书,要用足够的经历去读;有些书,是要绞尽最后一粒脑细胞去读;有些书,是一辈子都读不完读不透&hellip;&hellip;</div> +<div> + &nbsp;</div> +<div> + 看书的方法,不仅要看作者写了什么(一层),还要琢磨文字背后的意蕴,那些弦外之音(二层),还要去思考作者为什么要写这些、要这样写(三层),还要去想想 看作者用了什么样的框架和策略在组织这本书,以及在各种细微处又用了什么样的方法和技巧(四层),当然更重要的是,以上的这些分析对你自己的现实和精神世 界能带来什么样的帮助,是否能启发你、引导你、改变你&hellip;&hellip;(五层)</div> +<div> + &nbsp;</div> +<div> + 于是,一本值得都烂读透的书,就需要你去读五遍、十遍去读烂读透它。</div> +<div> + &nbsp;</div> +<div> + 于是乎,和很多人的答案相反:所谓200本,你不是读少了,而是读多了、读水了、读浅了!</div> +<div> + &nbsp;</div> +<div> + 其实你的状态一点都不特殊,你和许多人一样,以为自己在读书,其实是在集邮。</div> +<div> + &nbsp;</div> +<div> + 最后,建议你重新拿起一本你最崇敬的书,换一种方式,再读一遍、两遍、三遍&hellip;&hellip;</div> - http://www.woshinidezhu.com/#!/post/bitch-is-schmaltzy-translation-trouble - 视频 - 蛋痛 - 5d6dc3a6-7e3d-43c7-9341-a23e1a72b694 - Mon, 11 Mar 2013 17:41:00 GMT + http://www.woshinidezhu.com/#!/post/do-you-want-to-read-or-do-you-want-to-read-a-book + 技术 - 杂类 + 06bc6dde-5e95-4464-a1ad-49d4fb9dd651 + Mon, 11 Mar 2013 17:45:00 GMT 点击率超高的小黄鸡神曲! @@ -122,18 +308,6 @@ 28f57e8d-19ae-4996-b588-78a716b59875 Mon, 11 Mar 2013 17:41:00 GMT - - 大学寝室90后男屌丝洗衣服洗出节奏来! - <p> - 老视频一枚,,,不过还是喜感依旧...</p> -<p> - <embed src='http://player.56.com/v_NjgxMTM5NjY.swf' type='application/x-shockwave-flash' width='480' height='405' allowFullScreen='true' allowNetworking='all' allowScriptAccess='always'></embed></p> - - http://www.woshinidezhu.com/#!/post/generation-male-male-genital-organ-in-university-dormitory-washing-clothes-washing-out-the-rhythm - 视频 - 欢乐 - 2dcdcebb-c9d0-48d1-8a97-59800e07bcd4 - Mon, 11 Mar 2013 17:41:00 GMT - 《我期待》超完美破音版 <p> @@ -236,62 +410,6 @@ 66227f9e-a08b-4152-8c33-a46cb8d1e390 Thu, 07 Feb 2013 13:41:00 GMT - - 如何用5分钟时间做一张看上去很厉害的海报? - <p> - <span style="color: rgb(102, 102, 102); font-family: Arial, Helvetica, sans-serif; line-height: 18px;">好久之前做了一张图解决过这个问题,最近又想出另一种解决方案。。XD</span></p> -<p style="margin: 1em 0px; padding: 0px; color: rgb(102, 102, 102); font-family: Arial, Helvetica, sans-serif; line-height: 18px;"> - 1、首先拿出宝贵的一分钟诅咒一下提出如此变态要求的甲方,顺便打开PS或AI。</p> -<p style="margin: 1em 0px; padding: 0px; color: rgb(102, 102, 102); font-family: Arial, Helvetica, sans-serif; line-height: 18px;"> - 2、画一个圈圈(或者其它随便什么东西)。<br style="margin: 0px; padding: 0px;" /> - <br style="margin: 0px; padding: 0px;" /> - 3、写上一行字。</p> -<p style="margin: 1em 0px; padding: 0px; color: rgb(102, 102, 102); font-family: Arial, Helvetica, sans-serif; line-height: 18px;"> - 4、保存&amp;交稿。</p> -<p style="margin: 1em 0px; padding: 0px; color: rgb(102, 102, 102); font-family: Arial, Helvetica, sans-serif; line-height: 18px;"> - 5、如果还有时间的话继续诅咒甲方。</p> -<p style="margin: 1em 0px; padding: 0px; color: rgb(102, 102, 102); font-family: Arial, Helvetica, sans-serif; line-height: 18px;"> - 就这样?= =</p> -<p style="margin: 1em 0px; padding: 0px; color: rgb(102, 102, 102); font-family: Arial, Helvetica, sans-serif; line-height: 18px;"> - 没错就是这样。。</p> -<p style="margin: 1em 0px; padding: 0px; color: rgb(102, 102, 102); font-family: Arial, Helvetica, sans-serif; line-height: 18px;"> - 于是做出来就是这么一个东西。。</p> -<p style="margin: 1em 0px; padding: 0px; color: rgb(102, 102, 102); font-family: Arial, Helvetica, sans-serif; line-height: 18px;"> - <a href="/upload/offsite/2013.02.07.how-to-make-a-look-in-5-minutes-were-some-posters/43c55381-c3ab-4769-b89d-ad8fd153771b.jpg" rel="external nofollow" style="margin: 0px; padding: 0px; color: rgb(41, 152, 246); text-decoration: initial; cursor: pointer;" title="萝卜网"><img alt="如何用5分钟时间做一张看上去很厉害的海报?,乐淘,letao" border="0" data-pinit="registered" src="/upload/offsite/2013.02.07.how-to-make-a-look-in-5-minutes-were-some-posters/43c55381-c3ab-4769-b89d-ad8fd153771b.jpg" style="margin: 0px; padding: 0px; border: none; vertical-align: middle; max-width: 605px; height: auto;" title="如何用5分钟时间做一张看上去很厉害的海报?|来自乐淘" /></a></p> -<p style="margin: 1em 0px; padding: 0px; color: rgb(102, 102, 102); font-family: Arial, Helvetica, sans-serif; line-height: 18px;"> - 坑爹呢这是!!(╯‵□&prime;)╯︵┴─┴</p> -<p style="margin: 1em 0px; padding: 0px; color: rgb(102, 102, 102); font-family: Arial, Helvetica, sans-serif; line-height: 18px;"> - = =</p> -<p style="margin: 1em 0px; padding: 0px; color: rgb(102, 102, 102); font-family: Arial, Helvetica, sans-serif; line-height: 18px;"> - 不要糟急。。画成什么样不要紧,关键看你怎么向甲方阐释你的创意。</p> -<p style="margin: 1em 0px; padding: 0px; color: rgb(102, 102, 102); font-family: Arial, Helvetica, sans-serif; line-height: 18px;"> - 比如。。你可以这么解释。。</p> -<p style="margin: 1em 0px; padding: 0px; color: rgb(102, 102, 102); font-family: Arial, Helvetica, sans-serif; line-height: 18px;"> - <a href="/upload/offsite/2013.02.07.how-to-make-a-look-in-5-minutes-were-some-posters/50dd0aec-6dd4-47e6-89cd-d89ba01d1700.jpg" rel="external nofollow" style="margin: 0px; padding: 0px; color: rgb(41, 152, 246); text-decoration: initial; cursor: pointer;" title="萝卜网"><img alt="如何用5分钟时间做一张看上去很厉害的海报?,乐淘,letao" border="0" data-pinit="registered" src="/upload/offsite/2013.02.07.how-to-make-a-look-in-5-minutes-were-some-posters/50dd0aec-6dd4-47e6-89cd-d89ba01d1700.jpg" style="margin: 0px; padding: 0px; border: none; vertical-align: middle; max-width: 605px; height: auto;" title="如何用5分钟时间做一张看上去很厉害的海报?|来自乐淘" /></a></p> -<p style="margin: 1em 0px; padding: 0px; color: rgb(102, 102, 102); font-family: Arial, Helvetica, sans-serif; line-height: 18px;"> - 还阔以这样。</p> -<p style="margin: 1em 0px; padding: 0px; color: rgb(102, 102, 102); font-family: Arial, Helvetica, sans-serif; line-height: 18px;"> - <a href="/upload/offsite/2013.02.07.how-to-make-a-look-in-5-minutes-were-some-posters/80a59ec8-7483-474c-89c1-49af04fbfef1.jpg" rel="external nofollow" style="margin: 0px; padding: 0px; color: rgb(41, 152, 246); text-decoration: initial; cursor: pointer;" title="萝卜网"><img alt="如何用5分钟时间做一张看上去很厉害的海报?,乐淘,letao" border="0" data-pinit="registered" src="/upload/offsite/2013.02.07.how-to-make-a-look-in-5-minutes-were-some-posters/80a59ec8-7483-474c-89c1-49af04fbfef1.jpg" style="margin: 0px; padding: 0px; border: none; vertical-align: middle; max-width: 605px; height: auto;" title="如何用5分钟时间做一张看上去很厉害的海报?|来自乐淘" /></a></p> -<p style="margin: 1em 0px; padding: 0px; color: rgb(102, 102, 102); font-family: Arial, Helvetica, sans-serif; line-height: 18px;"> - 如果运用英文的话会显得很牛逼~~0 0</p> -<p style="margin: 1em 0px; padding: 0px; color: rgb(102, 102, 102); font-family: Arial, Helvetica, sans-serif; line-height: 18px;"> - <a href="/upload/offsite/2013.02.07.how-to-make-a-look-in-5-minutes-were-some-posters/15e52f2e-0aae-4dbb-bcf3-f2d95e423293.jpg" rel="external nofollow" style="margin: 0px; padding: 0px; color: rgb(41, 152, 246); text-decoration: initial; cursor: pointer;" title="萝卜网"><img alt="如何用5分钟时间做一张看上去很厉害的海报?,乐淘,letao" border="0" data-pinit="registered" src="/upload/offsite/2013.02.07.how-to-make-a-look-in-5-minutes-were-some-posters/15e52f2e-0aae-4dbb-bcf3-f2d95e423293.jpg" style="margin: 0px; padding: 0px; border: none; vertical-align: middle; max-width: 605px; height: auto;" title="如何用5分钟时间做一张看上去很厉害的海报?|来自乐淘" /></a></p> -<p style="margin: 1em 0px; padding: 0px; color: rgb(102, 102, 102); font-family: Arial, Helvetica, sans-serif; line-height: 18px;"> - 随便怎么阐释都可以啦~~</p> -<p style="margin: 1em 0px; padding: 0px; color: rgb(102, 102, 102); font-family: Arial, Helvetica, sans-serif; line-height: 18px;"> - <a href="/upload/offsite/2013.02.07.how-to-make-a-look-in-5-minutes-were-some-posters/38fc7425-0e0d-4f74-887d-74203b10dc51.jpg" rel="external nofollow" style="margin: 0px; padding: 0px; color: rgb(102, 102, 102); cursor: pointer;" title="萝卜网"><img alt="如何用5分钟时间做一张看上去很厉害的海报?,乐淘,letao" border="0" data-pinit="registered" src="/upload/offsite/2013.02.07.how-to-make-a-look-in-5-minutes-were-some-posters/38fc7425-0e0d-4f74-887d-74203b10dc51.jpg" style="margin: 0px; padding: 0px; border: none; vertical-align: middle; max-width: 605px; height: auto;" title="如何用5分钟时间做一张看上去很厉害的海报?|来自乐淘" /></a></p> -<p style="margin: 1em 0px; padding: 0px; color: rgb(102, 102, 102); font-family: Arial, Helvetica, sans-serif; line-height: 18px;"> - 所以。。</p> -<p style="margin: 1em 0px; padding: 0px; color: rgb(102, 102, 102); font-family: Arial, Helvetica, sans-serif; line-height: 18px;"> - 文案是多么的重要啊。。。 = =</p> -<p style="margin: 1em 0px; padding: 0px; color: rgb(102, 102, 102); font-family: Arial, Helvetica, sans-serif; line-height: 18px;"> - END</p> - - http://www.woshinidezhu.com/#!/post/how-to-make-a-look-in-5-minutes-were-some-posters - 文章 - 实用技巧 - 4dc3979f-ffe3-42e6-9697-9519a5057372 - Thu, 07 Feb 2013 13:41:00 GMT - 哈哈看到最后一句笑了 <p> @@ -1498,127 +1616,5 @@ event.initKeyEvent(&quot;keypress&quot;, true, true, null, null, d002f77e-dec7-e111-a611-00155d5f0243 Sat, 07 Jul 2012 10:50:00 GMT - - 哈萨克斯坦国歌 - <p> - 好像是下载错了歌曲,运动员们还真是淡定。。。。</p> -<p> - <embed src="http://www.tudou.com/v/d6WNcJqyvCk/&resourceId=4030105_05_02_99/v.swf" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" wmode="opaque" width="480" height="400"></embed></p> - - http://www.woshinidezhu.com/#!/post/kazakhstan-national-anthem - 视频 - 欢乐 - cc584057-dec7-e111-a611-00155d5f0243 - Sat, 07 Jul 2012 10:35:00 GMT - - - 程序员真的很懒 - <p> - &nbsp;</p> -<p id="" style="color: rgb(0, 0, 0); font-family: arial, sans-serif; font-size: 13px; "> -   可能除了哲学家以外,笔者认为程序员是最懒的一群人。他们的职业看起来又似乎有一定的劳动强度。</p> -<p style="color: rgb(0, 0, 0); font-family: arial, sans-serif; font-size: 13px; "> -   想想看,生物学家要亲自做所有的实验&hellip;给数百只小白鼠注射药物不可能自动完成。医生必须给病人进行身体检查;教授每年都要教授同样的课程;建筑师从各个角度制定方案,并手工地将方案一笔一划绘制出来。</p> -<p style="color: rgb(0, 0, 0); font-family: arial, sans-serif; font-size: 13px; "> -   让我们再来看看更为辛苦的一些职业,情况更糟。营销人员要不断重复地进行同样的产品宣传;理发师日复一日地做着同样的事情;收营员每天都以相同的方式对货物进行结算&hellip;工厂工人&hellip;</p> -<p style="color: rgb(0, 0, 0); font-family: arial, sans-serif; font-size: 13px; "> -   你面前呈现出了一幅图片,世界上有很多这样的人,他们每一小时,每一天,每一年,有些甚至一辈子都在重复做着几乎相同的事情。&nbsp;</p> -<p style="color: rgb(0, 0, 0); font-family: arial, sans-serif; font-size: 13px; "> -   <strong>来看看程序员</strong></p> -<p style="color: rgb(0, 0, 0); font-family: arial, sans-serif; font-size: 13px; "> -   每当我们想连续两次做同样的事情时&mdash;我们会尝试想一个方法来自动完成此过程。每当你写的代码是完成同样的一件事时,你会开始寻找一个库;每当你启动一个类似的项目时,你会去寻找一个模板。</p> -<p style="color: rgb(0, 0, 0); font-family: arial, sans-serif; font-size: 13px; "> -   程序员的生活就是致力于消除重复的工作。</p> -<p style="color: rgb(0, 0, 0); font-family: arial, sans-serif; font-size: 13px; text-align: center; "> - <img alt="程序员真的很懒" src="/upload/offsite/2012.07.07.programmers-are-really-very-lazy/20fbddef-bd53-4f66-b0c6-f213325bdc55.jpg" /></p> -<p style="color: rgb(0, 0, 0); font-family: arial, sans-serif; font-size: 13px; "> -   将琐碎地任务从我们的工作流程中剔除,这能让每个人生活得更轻松。这里有一个经典的笑话,说一个程序员情愿用一周的时间来写一个拷贝脚本,也不愿意将相同的文件复制粘贴两次,尽管复制粘贴可能只需要两分钟。</p> -<p style="color: rgb(0, 0, 0); font-family: arial, sans-serif; font-size: 13px; "> -   该死的,我们要遵循DRY(<a href="http://en.wikipedia.org/wiki/Don%27t_repeat_yourself" rel="nofollow" style="color: rgb(17, 85, 204); " target="_blank">Don&rsquo;t Repeat Yourself</a>不要重复自己)的原则。这个原则的基本内容是宁愿创建一个令人费解的抽象类,也不要将不相同但非常相似的代码写两次。</p> -<p style="color: rgb(0, 0, 0); font-family: arial, sans-serif; font-size: 13px; "> -   这当然会导致很多问题。</p> -<p style="color: rgb(0, 0, 0); font-family: arial, sans-serif; font-size: 13px; "> -   一般的软件项目充满了在顶层抽象类上构建的抽象类,你慢慢地会不清楚这些顶层抽象类将如何工作。甚至你完全不知道其代码在做什么。&rdquo;<a href="https://plus.google.com/112218872649456413744/posts/dfydM2Cnepe" rel="nofollow" style="color: rgb(17, 85, 204); " target="_blank">Dizzying but invisible depth</a>&ldquo;,涉及到这个问题时,你真的应该读读这篇短文。</p> -<p style="color: rgb(0, 0, 0); font-family: arial, sans-serif; font-size: 13px; "> -   另一方面,懒惰本身已经证明了历史上许多科学和工程发展所带来的背后推动力。用有轮子的拖车运东西比人工搬运要轻松;用船在水中前行比游泳来得容易;甚至如果你他妈的想炸掉一座城市,你投掷一颗原子弹也比投掷几千个小炸弹来的容易。</p> -<p style="color: rgb(0, 0, 0); font-family: arial, sans-serif; font-size: 13px; "> -   所以这也许并不是说程序员是懒惰的。也许真正懒惰地是工程师们。只是恰巧在这样一个历史时刻,程序员作为工程师中最鲜明的一类,总是将世界向更好更光明的未来推动。而其它大多数领域已经在某种程度上稳定下来,或者需要更长的时间去适应新的工具。</p> -<p style="color: rgb(0, 0, 0); font-family: arial, sans-serif; font-size: 13px; "> -   这里有一个重要的问题要问:程序员天生就懒吗?聪明懒惰的人容易被编程工作吸引吗,或者这是一种社会效应?懒惰源于最好的编程实践?还是最好的编程实践源于懒惰呢?</p> -<p style="color: rgb(0, 0, 0); font-family: arial, sans-serif; font-size: 13px; "> -   &nbsp;</p> -<p style="color: rgb(0, 0, 0); font-family: arial, sans-serif; font-size: 13px; "> -   <strong>一个比较</strong></p> -<p style="color: rgb(0, 0, 0); font-family: arial, sans-serif; font-size: 13px; "> -   最近,我有机会将一个建筑专业学生的一天与一个计算机科学专业的学生(就像我自己)的一天进行比较。</p> -<p style="color: rgb(0, 0, 0); font-family: arial, sans-serif; font-size: 13px; "> -   大多数的建筑系学生的生活充满了这样或那样劳动密集的任务,这些任务是她工作的一部分。在任何时候,她都有可能要对一些模型进行拼凑粘合,在AutoCAD中从50个不同的角度对同一个物体进行绘图,或者在其它3D建模软件中重复相同的事情&hellip;然后将这些图片导入到Photoshop中成为真正好看的图。</p> -<p style="color: rgb(0, 0, 0); font-family: arial, sans-serif; font-size: 13px; "> -   这种事会接连不断的发生。我估计她花费在课程作业上的时间比她实际上课的时间多一倍还不止(事实上她说花了5倍还多)。更糟糕的是,更好的完成这些任务并不能真正加快完成任务的进程,这只是意味着你多知道了几个键盘快捷键,意味着下次画图时你可能会少犯几个错误。</p> -<p style="color: rgb(0, 0, 0); font-family: arial, sans-serif; font-size: 13px; "> -   熟练和精通完全无法优化关键的部分。</p> -<p style="color: rgb(0, 0, 0); font-family: arial, sans-serif; font-size: 13px; "> -   相比之下,当我不上课时,我通常都在做自己的项目。因为我可以,因为我有充足的时间。当有作业布置下来时,一般情况下,我都可以在几个小时内完成&hellip;即使是最关键最重要的项目,老师也很少给我们超过一周的时间来集中完成作业,最多两周。</p> -<p style="color: rgb(0, 0, 0); font-family: arial, sans-serif; font-size: 13px; "> -   精通编码并不意味着你打字更快(与建筑专业中等同的能力不同)。它意味着想出的解决方案更容易实现,利用工具来达到事倍功半的效果,诸如此类。最终,通过互联网进行测试评判,而实现过程是最无关紧要的部分,因为每个人都会。如果你有一天的时间,你可以实现某些东西。如果你有更多的时间,你可以使这些东西实现得更漂亮,模块化更高,可重用性更强,等等。</p> -<p style="color: rgb(0, 0, 0); font-family: arial, sans-serif; font-size: 13px; "> -   基本上你能够快速地实现眼前的任务,你工作中大部分时间都在致力于使你的任务完成得更加漂亮。但这对于你手头的任务来说其实并不重要,你这样做是因为你可以。</p> -<p style="color: rgb(0, 0, 0); font-family: arial, sans-serif; font-size: 13px; "> -   甚至于当程序员对自己的优化工作都产生厌倦时,他们会立马转而去创建工具来完成优化工作。</p> -<p style="color: rgb(0, 0, 0); font-family: arial, sans-serif; font-size: 13px; "> -   事情就这样周而复始地重复着。</p> -<p style="color: rgb(0, 0, 0); font-family: arial, sans-serif; font-size: 13px; "> -   接下来的家伙会使用他创建的新工具,使实现过程变得更快,接着优化它直到他最终厌倦,然后创建了一个新的更好的工具。</p> -<p style="color: rgb(0, 0, 0); font-family: arial, sans-serif; font-size: 13px; "> -   &nbsp;<strong>所以&hellip;是辛苦的工作?</strong></p> -<p style="color: rgb(0, 0, 0); font-family: arial, sans-serif; font-size: 13px; "> -   但回到我最初的观点,辛苦工作对程序员的生产效率存在多大的影响?对于那些每天辛苦工作13小时以上,以取得竞争优势的创业者来说,这又意味着什么?这是值得考虑的一种优势吗?</p> -<p style="color: rgb(0, 0, 0); font-family: arial, sans-serif; font-size: 13px; "> -   &nbsp;</p> -<p style="color: rgb(0, 0, 0); font-family: arial, sans-serif; font-size: 13px; "> -   辛苦的工作可能对程序员工作效率产生负面的影响。它掩盖了背后所做的优化工作&ldquo;哦,我可以手动把它完成,这将只需要10分钟时间&rdquo;(其实这需要20分钟)。下一次,一个相似的任务到来时,你可能需要再次手动把它完成,长此以往&hellip;</p> -<p style="color: rgb(0, 0, 0); font-family: arial, sans-serif; font-size: 13px; "> -   最重要的是,辛勤地工作会使你变得很笨。许多研究表明,持续疲劳的状态会使你做出错误的决策,甚至过多的决策也会让你会出错误的决定(称为<a href="http://en.wikipedia.org/wiki/Decision_fatigue" rel="nofollow" style="color: rgb(17, 85, 204); " target="_blank">决策疲劳</a>)。事情上,这可能是我们喜欢创建抽象类并使用它们的原因&mdash;让其它人做大多数的决策,这样我就可以只专注于关键的部分。</p> -<p id="aeaoofnhgocdbnbeljkmbjdmhbcokfdb-mousedown" style="color: rgb(0, 0, 0); font-family: arial, sans-serif; font-size: 13px; "> -   但是,我仍然没弄懂,到底是懒惰的人更喜欢编程,还是编程使他们变得懒惰&hellip;&nbsp;</p> - - http://www.woshinidezhu.com/#!/post/programmers-are-really-very-lazy - 技术 - 程序人生 - 9257992f-dec7-e111-a611-00155d5f0243 - Sat, 07 Jul 2012 10:38:00 GMT - - - 浴室恶作剧!有这样的女友真杯具! - <p> - 看起都好痛的 样子....</p> -<p> - <embed allowfullscreen="true" allowscriptaccess="always" height="400" src="http://www.tudou.com/v/NWl-E7P9RZw/&amp;resourceId=1320712_05_02_99/v.swf" type="application/x-shockwave-flash" width="480" wmode="opaque"></embed></p> - - http://www.woshinidezhu.com/#!/post/bathroom-prank-had-such-a-girlfriend-really-cups - 视频 - 欢乐 - 3c22bfc7-ddc7-e111-a611-00155d5f0243 - Sat, 07 Jul 2012 10:38:00 GMT - - - 算术入门 - <p> - <font color="#e3881c" face="Verdana, Arial, Helvetica, sans-serif"><span style="font-size: 14px; line-height: 25px; background-color: rgb(248, 248, 248);"><img alt="" class="alignnone size-full wp-image-69205" height="1325" src="/upload/offsite/2012.07.07.introduction-to-arithmetic/43e57904-4ef2-4af7-b583-8c4dec903eab.png" style="margin: 10px 0px; padding: 0px; border: 0px; " title="“此外,为了符合实际情况,在本页的方程中刻意保留了一些重大的错误。详情请参阅本书编写组网站上的勘误栏目。”" width="600" /></span></font></p> - - http://www.woshinidezhu.com/#!/post/introduction-to-arithmetic - 技术 - 杂类 - 12810d81-ddc7-e111-a611-00155d5f0243 - Sat, 07 Jul 2012 10:38:00 GMT - - - 追到手后男人的转变 - <p> - 表情相当的准确....</p> -<p> - <embed src="http://player.youku.com/player.php/sid/XNDE5MjAzMjU2/v.swf" quality="high" width="480" height="400" align="middle" allowScriptAccess="sameDomain" allowFullscreen="true" type="application/x-shockwave-flash"></embed></p> - - http://www.woshinidezhu.com/#!/post/hand-of-man-after-changing - 视频 - 欢乐 - e6455d4d-ddc7-e111-a611-00155d5f0243 - Sat, 07 Jul 2012 10:38:00 GMT - \ No newline at end of file diff --git a/src/YangKai.BlogEngine.Web.Mvc/feed_comments.xml b/src/YangKai.BlogEngine.Web.Mvc/feed_comments.xml index 393ca0f1..1c700687 100644 --- a/src/YangKai.BlogEngine.Web.Mvc/feed_comments.xml +++ b/src/YangKai.BlogEngine.Web.Mvc/feed_comments.xml @@ -6,462 +6,524 @@ http://www.woshinidezhu.com/ zh-cn &copy; Powered by YangKai , 2008-2013, All Rights Reserved. 蜀ICP备09016538号. - Wed, 28 Aug 2013 19:01:20 GMT - Wed, 28 Aug 2013 19:01:20 GMT + Fri, 30 Aug 2013 17:14:25 GMT + Fri, 30 Aug 2013 17:14:25 GMT http://backend.userland.com/rss RSS.NET: http://www.rssdotnet.com/ - 36 - 36<br />发表于:如何成为强大的程序员? - http://www.woshinidezhu.com/#!/post/how-to-be-a-great-programmer - 技术 - 程序人生 + 77 + 77<br />发表于:配置SVN编辑日志功能 + http://www.woshinidezhu.com/#!/post/svn-pre-revprop-change-hook + 原创地 - 默认 我是你的猪 - 8ada5e55-1887-4a95-8f38-d2427d425d65 - Wed, 28 Aug 2013 19:01:20 GMT + 59acc9b7-c176-4ed9-a34c-a784a8d195b6 + Fri, 30 Aug 2013 17:14:25 GMT - 123 - 123<br />发表于:你是想读书,还是想读完书? - http://www.woshinidezhu.com/#!/post/do-you-want-to-read-or-do-you-want-to-read-a-book - 技术 - 杂类 + 444 + 444<br />发表于:配置SVN编辑日志功能 + http://www.woshinidezhu.com/#!/post/svn-pre-revprop-change-hook + 原创地 - 默认 我是你的猪 - 21e11522-27e9-4634-80ac-7013b32b9627 - Mon, 26 Aug 2013 14:15:18 GMT + c136e344-6a23-4991-88ff-179b5d5e8d16 + Fri, 30 Aug 2013 17:13:37 GMT - 123 - 123<br />发表于:你是想读书,还是想读完书? - http://www.woshinidezhu.com/#!/post/do-you-want-to-read-or-do-you-want-to-read-a-book - 技术 - 杂类 + 33 + 33<br />发表于:配置SVN编辑日志功能 + http://www.woshinidezhu.com/#!/post/svn-pre-revprop-change-hook + 原创地 - 默认 我是你的猪 - 45b9dac3-c095-4c30-a0a4-ea8c1f957cbd - Mon, 26 Aug 2013 14:15:15 GMT + 3e6aa59e-e42d-43cf-89f0-4ea900574b90 + Fri, 30 Aug 2013 17:13:33 GMT - 00 - 00<br />发表于:你是想读书,还是想读完书? - http://www.woshinidezhu.com/#!/post/do-you-want-to-read-or-do-you-want-to-read-a-book - 技术 - 杂类 + 22 + 22<br />发表于:配置SVN编辑日志功能 + http://www.woshinidezhu.com/#!/post/svn-pre-revprop-change-hook + 原创地 - 默认 我是你的猪 - 1ee5cd0c-e5ec-4654-9a8f-2a101e6640fa - Mon, 26 Aug 2013 14:15:01 GMT + ea1b63c9-3e8d-4c59-9c04-553c3d4b6904 + Fri, 30 Aug 2013 17:13:29 GMT - 22 - 22<br />发表于:你是想读书,还是想读完书? - http://www.woshinidezhu.com/#!/post/do-you-want-to-read-or-do-you-want-to-read-a-book - 技术 - 杂类 + 777 + 777<br />发表于:77 + http://www.woshinidezhu.com/#!/post/77 + 技术 - 默认 我是你的猪 - c2247792-52c5-4a47-bbd5-268e4b3f0fbe - Mon, 26 Aug 2013 14:14:42 GMT + e97c7ae6-61e8-426d-bf42-8ba875071ee1 + Wed, 28 Aug 2013 14:41:28 GMT - 222 - 222<br />发表于:你是想读书,还是想读完书? - http://www.woshinidezhu.com/#!/post/do-you-want-to-read-or-do-you-want-to-read-a-book - 技术 - 杂类 + 77 + 77<br />发表于:77 + http://www.woshinidezhu.com/#!/post/77 + 技术 - 默认 我是你的猪 - b25f56c9-08ac-4785-aca6-20c50b7112cd - Mon, 26 Aug 2013 14:14:16 GMT + 41fcd25e-9bee-4b67-97c0-b13b3801b251 + Wed, 28 Aug 2013 14:40:45 GMT - 11 - 11<br />发表于:你是想读书,还是想读完书? - http://www.woshinidezhu.com/#!/post/do-you-want-to-read-or-do-you-want-to-read-a-book - 技术 - 杂类 + 33 + 33<br />发表于:77 + http://www.woshinidezhu.com/#!/post/77 + 技术 - 默认 我是你的猪 - 10113573-7b27-4c76-960c-c2822dfd9f20 - Mon, 26 Aug 2013 14:14:00 GMT + f95df5e3-59d3-43e5-9ff2-f8ed7ee2ea98 + Wed, 28 Aug 2013 14:40:21 GMT - 3 - 3<br />发表于:你是想读书,还是想读完书? - http://www.woshinidezhu.com/#!/post/do-you-want-to-read-or-do-you-want-to-read-a-book - 技术 - 杂类 + 33 + 33<br />发表于:77 + http://www.woshinidezhu.com/#!/post/77 + 技术 - 默认 我是你的猪 - d31d5a1d-0c03-49d1-8435-8818071baaf8 - Mon, 26 Aug 2013 14:13:45 GMT + 4fb05610-24f1-4a6f-896d-bc824b8eab26 + Wed, 28 Aug 2013 14:38:34 GMT - 123 - 123<br />发表于:你是想读书,还是想读完书? - http://www.woshinidezhu.com/#!/post/do-you-want-to-read-or-do-you-want-to-read-a-book - 技术 - 杂类 + 33 + 33<br />发表于:77 + http://www.woshinidezhu.com/#!/post/77 + 技术 - 默认 我是你的猪 - b7253afd-3a4f-41c5-b143-fad02049da4f - Mon, 26 Aug 2013 14:13:14 GMT + b40d32a7-73b7-4ee1-a93b-d134f5e034ef + Wed, 28 Aug 2013 14:38:09 GMT - 1321 - 1321<br />发表于:你是想读书,还是想读完书? - http://www.woshinidezhu.com/#!/post/do-you-want-to-read-or-do-you-want-to-read-a-book - 技术 - 杂类 + 33 + 33<br />发表于:77 + http://www.woshinidezhu.com/#!/post/77 + 技术 - 默认 我是你的猪 - d7934f9a-4eed-40d8-8c1a-7d7102549652 - Mon, 26 Aug 2013 14:13:07 GMT + 41034ace-dd0f-4702-85f8-948612c95d23 + Wed, 28 Aug 2013 14:37:44 GMT - 1 - 1<br />发表于:你是想读书,还是想读完书? - http://www.woshinidezhu.com/#!/post/do-you-want-to-read-or-do-you-want-to-read-a-book - 技术 - 杂类 + 77 + 77<br />发表于:77 + http://www.woshinidezhu.com/#!/post/77 + 技术 - 默认 我是你的猪 - eca65623-debd-44c1-a944-a4f5cdc43d5d - Mon, 26 Aug 2013 14:12:55 GMT + ffc79f3f-2bc8-49f6-be7e-ff3ebf518272 + Wed, 28 Aug 2013 14:36:56 GMT - 123 - 123<br />发表于:你是想读书,还是想读完书? - http://www.woshinidezhu.com/#!/post/do-you-want-to-read-or-do-you-want-to-read-a-book - 技术 - 杂类 + 66 + 66<br />发表于:77 + http://www.woshinidezhu.com/#!/post/77 + 技术 - 默认 我是你的猪 - 0e389d63-f8c1-4a41-9966-912bd7b37fc3 - Mon, 26 Aug 2013 14:12:52 GMT + 46502038-5ab4-40e5-bf3f-3052f37ce8bf + Wed, 28 Aug 2013 14:36:46 GMT + + + 55 + 55<br />发表于:999999999999 + http://www.woshinidezhu.com/#!/post/9999 + 技术 - ASP.NET + 技术 - ASP.NET MVC + 技术 - C# + 技术 - Entity Framework + 技术 - Web 2.0 + 技术 - 编程思想 + 技术 - SEO + 技术 - 用户体验 + 技术 - SQL Server + 技术 - .NET + 技术 - 程序人生 + 技术 - 杂类 + 技术 - CSS + 技术 - TDD + 123 + 19e71705-37ba-4f37-84ed-0c6f4014b6ac + Sat, 24 Aug 2013 17:36:31 GMT + + + 44444 + 44444<br />发表于:999999999999 + http://www.woshinidezhu.com/#!/post/9999 + 技术 - ASP.NET + 技术 - ASP.NET MVC + 技术 - C# + 技术 - Entity Framework + 技术 - Web 2.0 + 技术 - 编程思想 + 技术 - SEO + 技术 - 用户体验 + 技术 - SQL Server + 技术 - .NET + 技术 - 程序人生 + 技术 - 杂类 + 技术 - CSS + 技术 - TDD + 123 + 12651171-54e2-4257-8fc5-7f9ffa05d20c + Sat, 24 Aug 2013 17:34:43 GMT + + + 3223 + 3223<br />发表于:999999999999 + http://www.woshinidezhu.com/#!/post/9999 + 技术 - ASP.NET + 技术 - ASP.NET MVC + 技术 - C# + 技术 - Entity Framework + 技术 - Web 2.0 + 技术 - 编程思想 + 技术 - SEO + 技术 - 用户体验 + 技术 - SQL Server + 技术 - .NET + 技术 - 程序人生 + 技术 - 杂类 + 技术 - CSS + 技术 - TDD + 123 + 1662b55b-9a71-4ea6-b371-0b349ed9a68d + Sat, 24 Aug 2013 17:34:29 GMT - 123 - 123<br />发表于:你是想读书,还是想读完书? - http://www.woshinidezhu.com/#!/post/do-you-want-to-read-or-do-you-want-to-read-a-book + 333 + 333<br />发表于:999999999999 + http://www.woshinidezhu.com/#!/post/9999 + 技术 - ASP.NET + 技术 - ASP.NET MVC + 技术 - C# + 技术 - Entity Framework + 技术 - Web 2.0 + 技术 - 编程思想 + 技术 - SEO + 技术 - 用户体验 + 技术 - SQL Server + 技术 - .NET + 技术 - 程序人生 技术 - 杂类 - 我是你的猪 - 9bbea22d-e0ed-459e-b061-c414a85316a7 - Mon, 26 Aug 2013 14:12:49 GMT + 技术 - CSS + 技术 - TDD + 123 + aaa74d69-0597-48f9-88ff-9354d3c876cc + Sat, 24 Aug 2013 17:34:12 GMT + + + 00000 + 00000<br />发表于:999999999999 + http://www.woshinidezhu.com/#!/post/9999 + 技术 - ASP.NET + 技术 - ASP.NET MVC + 技术 - C# + 技术 - Entity Framework + 技术 - Web 2.0 + 技术 - 编程思想 + 技术 - SEO + 技术 - 用户体验 + 技术 - SQL Server + 技术 - .NET + 技术 - 程序人生 + 技术 - 杂类 + 技术 - CSS + 技术 - TDD + 123 + e7d19b1b-4b0d-4096-9ae0-287489ff3670 + Sat, 24 Aug 2013 17:16:42 GMT + + + 这是一条用于测试的评论.(2013年6月11日 上午9:53:05) + 这是一条用于测试的评论.(2013年6月11日 上午9:53:05)<br />发表于:Asp.net Mvc 2向Mvc 3升级 + http://www.woshinidezhu.com/#!/post/asp-net-mvc2-to-mvc3-rc + 原创地 - 默认 + Tester + 164d549a-0ed3-464c-bf52-e674bdc8dcab + Tue, 11 Jun 2013 09:53:08 GMT + + + 这是一条用于测试的评论.(2013年6月11日 上午9:52:29) + 这是一条用于测试的评论.(2013年6月11日 上午9:52:29)<br />发表于:Asp.net Mvc 2向Mvc 3升级 + http://www.woshinidezhu.com/#!/post/asp-net-mvc2-to-mvc3-rc + 原创地 - 默认 + Tester + 895bf5f9-470e-4ee7-a168-ed2f15dd7c2a + Tue, 11 Jun 2013 09:52:39 GMT + + + 这是一条用于测试的评论.(2013年6月4日 下午5:06:45) + 这是一条用于测试的评论.(2013年6月4日 下午5:06:45)<br />发表于:Asp.net Mvc 2向Mvc 3升级 + http://www.woshinidezhu.com/#!/post/asp-net-mvc2-to-mvc3-rc + 原创地 - 默认 + Tester + d7fa80e1-3d95-48f3-a460-587c19645201 + Tue, 04 Jun 2013 17:06:47 GMT + + + 这是一条用于测试的评论.(2013年6月4日 下午5:04:39) + 这是一条用于测试的评论.(2013年6月4日 下午5:04:39)<br />发表于:Asp.net Mvc 2向Mvc 3升级 + http://www.woshinidezhu.com/#!/post/asp-net-mvc2-to-mvc3-rc + 原创地 - 默认 + Tester + e5797524-723b-4090-a7da-a5084ca2dd5a + Tue, 04 Jun 2013 17:04:41 GMT + + + 这是一条用于测试的评论.(1370336642306) + 这是一条用于测试的评论.(1370336642306)<br />发表于:Asp.net Mvc 2向Mvc 3升级 + http://www.woshinidezhu.com/#!/post/asp-net-mvc2-to-mvc3-rc + 原创地 - 默认 + Tester + 591fdf78-7e97-4840-a76d-1614d075711f + Tue, 04 Jun 2013 17:04:05 GMT + + + 这是一条用于测试的评论 1370336297083 + 这是一条用于测试的评论 1370336297083<br />发表于:Asp.net Mvc 2向Mvc 3升级 + http://www.woshinidezhu.com/#!/post/asp-net-mvc2-to-mvc3-rc + 原创地 - 默认 + Tester + f93a1a43-f2b1-4a31-a53f-7b90ba56c047 + Tue, 04 Jun 2013 16:58:42 GMT - 4 - 4<br />发表于:你是想读书,还是想读完书? - http://www.woshinidezhu.com/#!/post/do-you-want-to-read-or-do-you-want-to-read-a-book - 技术 - 杂类 - 我是你的猪 - 3205ccdc-2447-40e8-8f5e-3d4a6e8dd94f - Mon, 26 Aug 2013 14:10:41 GMT + 333 + 333<br />发表于:Asp.net Mvc 2向Mvc 3升级 + http://www.woshinidezhu.com/#!/post/asp-net-mvc2-to-mvc3-rc + 原创地 - 默认 + entity.Author + d238af34-9d82-4fe2-8e3d-6caa00466532 + Tue, 04 Jun 2013 16:31:49 GMT - 4 - 4<br />发表于:你是想读书,还是想读完书? - http://www.woshinidezhu.com/#!/post/do-you-want-to-read-or-do-you-want-to-read-a-book - 技术 - 杂类 - 我是你的猪 - 42b79ffc-9ca6-45f3-b3d1-65174a999ec5 - Mon, 26 Aug 2013 14:10:39 GMT + 333 + 333<br />发表于:Asp.net Mvc 2向Mvc 3升级 + http://www.woshinidezhu.com/#!/post/asp-net-mvc2-to-mvc3-rc + 原创地 - 默认 + entity.Author + 73faf782-ad2f-4d84-b1e1-aff998a724c0 + Tue, 04 Jun 2013 16:29:51 GMT - 888888888 - 888888888<br />发表于:4444 - http://www.woshinidezhu.com/#!/post/4444 - 技术 - 默认 - 我是你的猪 - ada078c5-7faa-4b14-bf5b-bb1053766368 - Mon, 26 Aug 2013 14:01:04 GMT + 333 + 333<br />发表于:Asp.net Mvc 2向Mvc 3升级 + http://www.woshinidezhu.com/#!/post/asp-net-mvc2-to-mvc3-rc + 原创地 - 默认 + entity.Author + 9fce293c-3484-4894-aa08-df63fd4b0c16 + Tue, 04 Jun 2013 16:29:30 GMT - 888 - 888<br />发表于:4444 - http://www.woshinidezhu.com/#!/post/4444 - 技术 - 默认 - 我是你的猪 - d502d539-271f-4c77-a7b3-6174311dea24 - Mon, 26 Aug 2013 14:01:00 GMT + 333 + 333<br />发表于:Asp.net Mvc 2向Mvc 3升级 + http://www.woshinidezhu.com/#!/post/asp-net-mvc2-to-mvc3-rc + 原创地 - 默认 + entity.Author + 5ce515a1-68af-4405-a9db-ed90b9c93ad6 + Tue, 04 Jun 2013 16:29:13 GMT - 77 - 77<br />发表于:4444 - http://www.woshinidezhu.com/#!/post/4444 - 技术 - 默认 - 我是你的猪 - 7b212c8c-fb33-419b-8abc-0018ec8f4e0d - Mon, 26 Aug 2013 14:00:57 GMT + 333 + 333<br />发表于:Asp.net Mvc 2向Mvc 3升级 + http://www.woshinidezhu.com/#!/post/asp-net-mvc2-to-mvc3-rc + 原创地 - 默认 + entity.Author + 5ed961bc-c44b-4bd8-a078-12e81bb476a7 + Tue, 04 Jun 2013 16:29:02 GMT - 11 - 11<br />发表于:4444 - http://www.woshinidezhu.com/#!/post/4444 - 技术 - 默认 - 我是你的猪 - 708d221c-04ab-49cd-8a8d-c9f2ab5dc03d - Mon, 26 Aug 2013 13:59:33 GMT + 333 + 333<br />发表于:Asp.net Mvc 2向Mvc 3升级 + http://www.woshinidezhu.com/#!/post/asp-net-mvc2-to-mvc3-rc + 原创地 - 默认 + entity.Author + f4afef78-f622-484c-b845-08bf21c829d4 + Tue, 04 Jun 2013 16:28:36 GMT 333 - 333<br />发表于:4444 - http://www.woshinidezhu.com/#!/post/4444 - 技术 - 默认 - 我是你的猪 - cebfd3e3-e327-49d4-b34d-79e461ad4145 - Mon, 26 Aug 2013 13:59:24 GMT + 333<br />发表于:Asp.net Mvc 2向Mvc 3升级 + http://www.woshinidezhu.com/#!/post/asp-net-mvc2-to-mvc3-rc + 原创地 - 默认 + entity.Author + fbede5b9-c852-4f7f-a9ed-ce2c3dccc393 + Tue, 04 Jun 2013 16:28:11 GMT - 33 - 33<br />发表于:4444 - http://www.woshinidezhu.com/#!/post/4444 - 技术 - 默认 - 我是你的猪 - c0812d74-dbdb-4742-87a8-53985d0f31b6 - Mon, 26 Aug 2013 13:53:48 GMT + 333 + 333<br />发表于:Asp.net Mvc 2向Mvc 3升级 + http://www.woshinidezhu.com/#!/post/asp-net-mvc2-to-mvc3-rc + 原创地 - 默认 + entity.Author + 96927db8-160e-4f6e-aa62-8fe1d296ba3b + Tue, 04 Jun 2013 16:27:37 GMT - 77 - 77<br />发表于:4444 - http://www.woshinidezhu.com/#!/post/4444 - 技术 - 默认 - 我是你的猪 - a5dbe165-65e8-4c17-bcb9-83833d83add8 - Sun, 25 Aug 2013 11:12:25 GMT + 333 + 333<br />发表于:Asp.net Mvc 2向Mvc 3升级 + http://www.woshinidezhu.com/#!/post/asp-net-mvc2-to-mvc3-rc + 原创地 - 默认 + entity.Author + 45020c1b-2c7f-40ff-8b28-5a9a21d289aa + Tue, 04 Jun 2013 16:17:50 GMT - 我朝好无用。。我好无语。。。 - 我朝好无用。。我好无语。。。<br />发表于:发错药之后美国护士vs中国护士 - http://www.woshinidezhu.com/#!/post/after-the-wrong-medicine-united-states-nurse-vs-china-nurse - 文章 - 欢乐 - 子不语 - 09a2b7a3-ebb2-e111-8bf5-00155d5f0243 - Sun, 10 Jun 2012 19:02:44 GMT + 333 + 333<br />发表于:Asp.net Mvc 2向Mvc 3升级 + http://www.woshinidezhu.com/#!/post/asp-net-mvc2-to-mvc3-rc + 原创地 - 默认 + entity.Author + 46d84030-ccca-4345-bff4-78d29d24005d + Tue, 04 Jun 2013 16:15:00 GMT - 哥们今晚看了您几篇文章,感触很深,问题结合实际且很实用。祝您身体健康哥们!我一直关注中。 - 哥们今晚看了您几篇文章,感触很深,问题结合实际且很实用。祝您身体健康哥们!我一直关注中。<br />发表于:带你走进缓存世界 - http://www.woshinidezhu.com/#!/post/take-you-into-the-world-of-caching - 技术 - .NET - monkey - 4a52f83d-db5f-e111-a536-00155d5f0243 - Sun, 26 Feb 2012 02:06:26 GMT - - - 12 - 12<br />发表于:To我是你的猪 - http://www.woshinidezhu.com/#!/post/to-im-a-pig - 宝宝老婆 - 日记 - 12 - 54a258cc-79f1-e011-98b8-0025900b8575 - Sat, 08 Oct 2011 14:53:27 GMT - - - 也不全是做作,感情随着歌曲自然流露。 - 也不全是做作,感情随着歌曲自然流露。<br />发表于:绝唱 可惜不是你 - http://www.woshinidezhu.com/#!/post/end-dont-love-you - 视频 - 给力 - SuJay - 320309a0-95d6-e011-bae0-0025900b8575 - Sun, 04 Sep 2011 09:34:13 GMT - - - ... - ...<br />发表于:关于那个科大寝室的笑话 - http://www.woshinidezhu.com/#!/post/kedaqinshi-xiaohua - 文章 - 欢乐 - 1 - 34b9f9de-37d4-e011-bae0-0025900b8575 - Thu, 01 Sep 2011 09:18:02 GMT - - - 你长得太秀气了吧! - 你长得太秀气了吧!<br />发表于:昨晚和一个普通男性朋友睡在一起,发现男生的自制力真差! - http://www.woshinidezhu.com/#!/post/nansheng-zizhili-zhencha - 文章 - 欢乐 - - 7b0defea-5192-e011-b6e5-0025900b8575 - Thu, 09 Jun 2011 12:37:24 GMT - - - 原已注明转载. 感谢关注. - 原已注明转载. 感谢关注.<br />发表于:谈谈对于企业级系统架构的理解 - http://www.woshinidezhu.com/#!/post/the-enterprise-system-architecture - 技术 - 默认 - 我是你的猪 - dc4b768f-2d90-e011-b6e5-0025900b8575 - Mon, 06 Jun 2011 19:11:59 GMT + 333 + 333<br />发表于:Asp.net Mvc 2向Mvc 3升级 + http://www.woshinidezhu.com/#!/post/asp-net-mvc2-to-mvc3-rc + 原创地 - 默认 + entity.Author + 2d765110-837e-4161-8bb5-001d3ffc5fe4 + Tue, 04 Jun 2013 16:10:52 GMT - 貌似在博客园见到过... - 貌似在博客园见到过...<br />发表于:谈谈对于企业级系统架构的理解 - http://www.woshinidezhu.com/#!/post/the-enterprise-system-architecture - 技术 - 默认 - 希望 - 4ac522aa-1f90-e011-b6e5-0025900b8575 - Mon, 06 Jun 2011 17:32:30 GMT + 333 + 333<br />发表于:Asp.net Mvc 2向Mvc 3升级 + http://www.woshinidezhu.com/#!/post/asp-net-mvc2-to-mvc3-rc + 原创地 - 默认 + entity.Author + 500044be-f401-4103-8520-9e72e9070fd4 + Tue, 04 Jun 2013 16:09:21 GMT - 征婚 - 征婚<br />发表于:艾伦回忆盖茨十大疯狂之举:劫持登机口 - http://www.woshinidezhu.com/#!/post/gates-held-the-top-ten-crazy - 技术 - 杂类 - 芙蓉 - 2e7e66f2-de70-e011-903c-0025900b8575 - Wed, 27 Apr 2011 23:00:41 GMT + 333 + 333<br />发表于:Asp.net Mvc 2向Mvc 3升级 + http://www.woshinidezhu.com/#!/post/asp-net-mvc2-to-mvc3-rc + 原创地 - 默认 + entity.Author + a5367e11-a5cd-4893-b2e7-cf10c4416719 + Tue, 04 Jun 2013 16:08:52 GMT - 还是大团圆结局。。。中文字幕更给力 - 还是大团圆结局。。。中文字幕更给力<br />发表于:【神曲】WRONG HOLE - http://www.woshinidezhu.com/#!/post/wrong-hole - 视频 - 早期数据 - a - 705e14d8-7263-e011-8a7d-0025900b8575 - Sun, 10 Apr 2011 21:03:52 GMT + 333 + 333<br />发表于:Asp.net Mvc 2向Mvc 3升级 + http://www.woshinidezhu.com/#!/post/asp-net-mvc2-to-mvc3-rc + 原创地 - 默认 + entity.Author + 6cdcf160-02c8-4ee8-9dfb-65dc3029eabf + Tue, 04 Jun 2013 16:08:03 GMT - ........ - ........<br />发表于:YD的印度歌曲 - http://www.woshinidezhu.com/#!/post/YD-yindu-gequ - 视频 - 早期数据 - a - 66ac8d12-7163-e011-8a7d-0025900b8575 - Sun, 10 Apr 2011 20:51:12 GMT + 333 + 333<br />发表于:Asp.net Mvc 2向Mvc 3升级 + http://www.woshinidezhu.com/#!/post/asp-net-mvc2-to-mvc3-rc + 原创地 - 默认 + entity.Author + c678f6cc-fac9-4568-8013-73bbcb05d2e0 + Tue, 04 Jun 2013 15:52:57 GMT - ...... - ......<br />发表于:同志们纷纷表示这是中国最好的科幻片 - http://www.woshinidezhu.com/#!/post/zhongguo-kehuanpian - 视频 - 早期数据 - a - ae6c369e-7063-e011-8a7d-0025900b8575 - Sun, 10 Apr 2011 20:47:56 GMT + 333 + 333<br />发表于:Asp.net Mvc 2向Mvc 3升级 + http://www.woshinidezhu.com/#!/post/asp-net-mvc2-to-mvc3-rc + 原创地 - 默认 + entity.Author + 494457a5-0a96-4d0c-b608-a20d7855d6d8 + Tue, 04 Jun 2013 15:52:47 GMT - 太长了,先赞一个 - 太长了,先赞一个<br />发表于:80后的经典回忆[90后群众纷纷表示也是自己的回忆] - http://www.woshinidezhu.com/#!/post/80-jingdian-huiyi - 视频 - 早期数据 - a - 48d72304-6e63-e011-8a7d-0025900b8575 - Sun, 10 Apr 2011 20:29:19 GMT + 333 + 333<br />发表于:Asp.net Mvc 2向Mvc 3升级 + http://www.woshinidezhu.com/#!/post/asp-net-mvc2-to-mvc3-rc + 原创地 - 默认 + entity.Author + 38433663-0e21-464b-a070-9084fc94d420 + Tue, 04 Jun 2013 15:50:31 GMT - haha - haha<br />发表于:只有强奸犯才能听懂的笑话 - http://www.woshinidezhu.com/#!/post/qiangjianfan-xiaohua - 视频 - 早期数据 - a - 10dc2a2a-6a63-e011-8a7d-0025900b8575 - Sun, 10 Apr 2011 20:01:45 GMT - - - 无语 - 无语<br />发表于:飞起来了!!! - http://www.woshinidezhu.com/#!/post/feiqilaile - 视频 - 给力 - a - 32c9ad05-5c63-e011-8a7d-0025900b8575 - Sun, 10 Apr 2011 18:20:30 GMT - - - 有才 - 有才<br />发表于:外国朋友听周杰伦歌曲的后果! - http://www.woshinidezhu.com/#!/post/guowai-ting-jay - 视频 - 欢乐 - a - 7e050168-5a63-e011-8a7d-0025900b8575 - Sun, 10 Apr 2011 18:08:56 GMT - - - 我去 - 我去<br />发表于:强悍 - http://www.woshinidezhu.com/#!/post/qianghan - 视频 - 重口味 - a - ea01a085-5363-e011-8a7d-0025900b8575 - Sun, 10 Apr 2011 17:19:40 GMT - - - 哈哈哈 我喜欢这个视频啊! - 哈哈哈 我喜欢这个视频啊!<br />发表于:外国朋友听周杰伦歌曲的后果! - http://www.woshinidezhu.com/#!/post/guowai-ting-jay - 视频 - 欢乐 - h41234 - 66243d96-d553-e011-8a7d-0025900b8575 - Tue, 22 Mar 2011 00:10:51 GMT - - - 支持一下. - 支持一下.<br />发表于:看来以后玩游戏还是不要坐一起. - http://www.woshinidezhu.com/#!/post/do-not-sit-together-to-play-games - 视频 - 给力 - D - 53b781ed-0068-4898-a2ad-227f547d41aa - Sat, 12 Feb 2011 16:59:19 GMT - - - NB - NB<br />发表于:Why would you do that - http://www.woshinidezhu.com/#!/post/Why-would-you-do-that - 视频 - 欢乐 - Niu - c2794728-9c58-4bf6-a0df-f5dafff41c09 - Thu, 20 Jan 2011 15:04:59 GMT - - - d - d<br />发表于:太祖的身体很好啊 - http://www.woshinidezhu.com/#!/post/mao-body-nice - 视频 - 欢乐 - d - fc8b38f3-fa6d-4fa4-b5e4-9a02baa56340 - Thu, 16 Sep 2010 17:38:25 GMT - - - d - d<br />发表于:太祖的身体很好啊 - http://www.woshinidezhu.com/#!/post/mao-body-nice - 视频 - 欢乐 - 匿名 - 97e7ba6a-fb5b-4c99-81cb-cc95bcc3ceb5 - Thu, 16 Sep 2010 17:38:16 GMT - - - 不错很有娱乐精神。。。。。。 - 不错很有娱乐精神。。。。。。<br />发表于:搞笑恶搞彩虹糖的梦—三炮山人组之2人世界 - http://www.woshinidezhu.com/#!/post/caihongtangzhimeng - 视频 - 重口味 - 匿名 - 55a3dabf-0db2-df11-99ad-000c29f1398f - Tue, 10 Aug 2010 12:46:23 GMT - - - 中午的牛肉面全吐了。。。 -麻烦没胸肌的把衣服穿上。。。 - 中午的牛肉面全吐了。。。 -麻烦没胸肌的把衣服穿上。。。<br />发表于:搞笑恶搞彩虹糖的梦—三炮山人组之2人世界 - http://www.woshinidezhu.com/#!/post/caihongtangzhimeng - 视频 - 重口味 - 匿名 - 54a3dabf-0db2-df11-99ad-000c29f1398f - Tue, 10 Aug 2010 12:43:24 GMT - - - 伤人自尊吧 - 伤人自尊吧<br />发表于:我被这篇文章的结尾惊呆了 - http://www.woshinidezhu.com/#!/post/wenzhang-jingdaile - 文章 - 蛋痛 - 文章 - 欢乐 - 匿名 - fca2dabf-0db2-df11-99ad-000c29f1398f - Mon, 09 Aug 2010 22:02:43 GMT - - - 回复1楼 (游客):dede - 回复1楼 (游客):dede<br />发表于:小提琴版超级玛丽 - http://www.woshinidezhu.com/#!/post/xiaotixing-chaojimali + 333 + 333<br />发表于:Asp.net Mvc 2向Mvc 3升级 + http://www.woshinidezhu.com/#!/post/asp-net-mvc2-to-mvc3-rc + 原创地 - 默认 + entity.Author + 51605067-7383-47c8-bfcc-d728d2975a32 + Tue, 04 Jun 2013 15:50:19 GMT + + + 333 + 333<br />发表于:Asp.net Mvc 2向Mvc 3升级 + http://www.woshinidezhu.com/#!/post/asp-net-mvc2-to-mvc3-rc + 原创地 - 默认 + entity.Author + 6f7e0265-61e9-4229-9b7b-6156b6d5898b + Tue, 04 Jun 2013 15:49:41 GMT + + + 333 + 333<br />发表于:Asp.net Mvc 2向Mvc 3升级 + http://www.woshinidezhu.com/#!/post/asp-net-mvc2-to-mvc3-rc + 原创地 - 默认 + entity.Author + 6ec55c62-6ece-4e80-9f64-a2e2254ad4f3 + Tue, 04 Jun 2013 15:49:12 GMT + + + 333 + 333<br />发表于:Asp.net Mvc 2向Mvc 3升级 + http://www.woshinidezhu.com/#!/post/asp-net-mvc2-to-mvc3-rc + 原创地 - 默认 + entity.Author + 0ac60314-55d6-4b7e-97f4-c131e86645ba + Tue, 04 Jun 2013 15:44:45 GMT + + + 567 + 567<br />发表于:22222222222222 + http://www.woshinidezhu.com/#!/post/22222222222222 + 视频 - 默认 + 我是你的猪 + d2a32a93-e5e7-40b9-ba0e-724e056edd31 + Sat, 01 Jun 2013 17:10:09 GMT + + + 11111111 + 11111111<br />发表于:撒旦撒 + http://www.woshinidezhu.com/#!/post/satan-sub 视频 - 早期数据 - 匿名 - 4ca3dabf-0db2-df11-99ad-000c29f1398f - Tue, 06 Jul 2010 16:02:56 GMT - - - 那个是套子 sb - 那个是套子 sb<br />发表于:女朋友不让我亲她,还老是叫我吹气球,我该怎么办 - http://www.woshinidezhu.com/#!/post/nvpengyou-qinta - 文章 - 欢乐 - 匿名 - 1aa3dabf-0db2-df11-99ad-000c29f1398f - Mon, 05 Jul 2010 00:18:43 GMT - - - 天真的男孩~ - 天真的男孩~<br />发表于:女朋友不让我亲她,还老是叫我吹气球,我该怎么办 - http://www.woshinidezhu.com/#!/post/nvpengyou-qinta - 文章 - 欢乐 - 匿名 - 19a3dabf-0db2-df11-99ad-000c29f1398f - Tue, 08 Jun 2010 11:16:50 GMT + 1111111 + 259bbc3d-a340-4416-8db2-3ac9451fb3d6 + Sat, 01 Jun 2013 16:50:40 GMT + + + 232323 + 232323<br />发表于:Asp.net Mvc 2向Mvc 3升级 + http://www.woshinidezhu.com/#!/post/asp-net-mvc2-to-mvc3-rc + 原创地 - 默认 + 我是你的猪 + 14d7ffff-6718-478a-ae82-2016ed100d52 + Sat, 01 Jun 2013 14:12:31 GMT + + + 232 + 232<br />发表于:Asp.net Mvc 2向Mvc 3升级 + http://www.woshinidezhu.com/#!/post/asp-net-mvc2-to-mvc3-rc + 原创地 - 默认 + 1323 + cc94a17e-da0b-4890-8f13-4cd7b0d185f7 + Sat, 01 Jun 2013 14:12:08 GMT + + + 232323 + 232323<br />发表于:配置SVN编辑日志功能 + http://www.woshinidezhu.com/#!/post/svn-pre-revprop-change-hook + 原创地 - 默认 + 我是你的猪 + b190746b-59c2-45df-b817-59e9c8fd349c + Sat, 01 Jun 2013 14:02:13 GMT + + + 23232 + 23232<br />发表于:配置SVN编辑日志功能 + http://www.woshinidezhu.com/#!/post/svn-pre-revprop-change-hook + 原创地 - 默认 + 我是你的猪 + 3977751c-49ec-4c33-8078-ef0286fab075 + Sat, 01 Jun 2013 14:02:09 GMT \ No newline at end of file