上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 42 下一页

2013年2月19日

C#的继承类中static constructor的调用问题

摘要: Eric Lippert写了一系列的关于static constructor的文章,1,2,3,4,可以读读对static constructor有更好的理解。 转一个其中的例子吧,假设有如下代码。 using System;class B{ static B() { Console.WriteLine("B cctor"); } public B() { Console.Write... 阅读全文

posted @ 2013-02-19 10:24 fresky 阅读(321) 评论(0) 推荐(0) 编辑

2013年2月18日

10个没有让你成为更好的developer的原因

摘要: Aaronontheweb | 10 Reasons Why You’re Failing to Realize Your Potential as a Developer列举了10个没有让你成为更好的developer的原因,写的很好。害怕学习新的工具/语言/框架会失败。直到最后一刻才提交代码。知其然,不知其所以然。过度调研。不花时间掌握开发工具和开发流程。害怕向别人求助。不知道如何让别人更好的... 阅读全文

posted @ 2013-02-18 15:33 fresky 阅读(130) 评论(0) 推荐(0) 编辑

2013年2月17日

为啥只有IPv4和IPv6,没有IPv5呢?

摘要: terminology - IPv4 to IPv6. where is IPv5?解释了这个问题,因为IPv5给了Internet Stream Protocol。 阅读全文

posted @ 2013-02-17 17:11 fresky 阅读(443) 评论(0) 推荐(0) 编辑

一个免费轻量的Mathematica替代Mathics

摘要: Mathics - A free, light-weight alternative to Mathematica是一个免费轻量的Mathematica替代Mathics 阅读全文

posted @ 2013-02-17 16:43 fresky 阅读(528) 评论(0) 推荐(0) 编辑

2013年2月16日

用于展现图表的50个JavaScript库

摘要: 50 JavaScript Libraries for Charts and Graphs | TechSlides列举了50个javascript的图表库,Infoq上有个中文的介绍用于展现图表的50种JavaScript库。 阅读全文

posted @ 2013-02-16 13:40 fresky 阅读(117) 评论(0) 推荐(0) 编辑

2013年2月5日

一个C++的轻量级的logger实现

摘要: 这里介绍了一个C++的轻量级的logger实现,可以参考参考。 阅读全文

posted @ 2013-02-05 18:42 fresky 阅读(566) 评论(0) 推荐(0) 编辑

C#中静态构造函数导致的一个deadlock

摘要: Eric Lipper的这篇博客举了一个C#中静态构造函数导致的deadlock的例子,很有意思。代码如下:class C{ static C() { // Let's run the initialization on another thread! var thread = new System.Threading.Thread(Initialize); thread.Start(); thread.Join(); } static void Initialize() { } static void Main() { }}原因很简单,静态构造函数需要在第... 阅读全文

posted @ 2013-02-05 18:07 fresky 阅读(183) 评论(0) 推荐(0) 编辑

在线C++编译器

摘要: 在线C++编译器列举了如下网站:LiveWorkspace(Clang 3.2, GCC 4.6.3 - 4.7.2)gcc.godbolt.org(Clang 3.0, GCC 4.5.3 - 4.8.0 prerelease, Intel ICC 13.0.1)Rise4Fun(Microsoft VC++ 2012 and November 2012 CTP)Stacked-Crooked(GCC 4.7)ideone.com(GCC 4.3.4 and 4.5.1)Comeau Test Drive(EDG 4.3.3) 阅读全文

posted @ 2013-02-05 17:45 fresky 阅读(443) 评论(0) 推荐(0) 编辑

2013年1月31日

一行语句让你的浏览器变成记事本

摘要: Jose Jesus Perez Aguinaga : One line browser notepad, 只需要在浏览器地址栏键入: data:text/html, <html contenteditable> 阅读全文

posted @ 2013-01-31 13:17 fresky 阅读(202) 评论(0) 推荐(0) 编辑

2013年1月22日

怎么让Visual Studiot在遇到一个project编译错误时停止编译其它project

摘要: Visual studio一个solution中含有多个project时,当编译整个solution,如果一个project编译出错,visual studio会继续编译其它的project,这在大多数情况下都是不需要的,只是浪费了时间。StopOnFirstBuildError extension是一个Visual Studio2012 和2010的插件,可以让Visual Studiot在遇到... 阅读全文

posted @ 2013-01-22 19:32 fresky 阅读(919) 评论(0) 推荐(0) 编辑

上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 42 下一页

导航