摘要:
Firefox,Chrome,Safari表现都不错,IE8对于无空格的中文和英文是支持的,但对连续的中文标点符号不支持,可能是开发中的一个Bug,下面分别说一下: work-break Chrome,需要work-break:break-word,设置break-all无效。 Firefox和IE 阅读全文
摘要:
准备阶段 组织架构,因为康威定律,‘Any organization that designs a system (defined broadly) will produce a design whose structure is a copy of the organization's commu 阅读全文
摘要:
HTTP 是一个明文传输的协议,很多网络监听工具都可以轻易窃取网络中传输的用户信息,如密码,信用卡, 直到后来发明HTTPS, 世界一下子安静了 Why HTTPS? HTTPS可以保证用户提交的信息,其它人即使拿到,也没有用,因为他没有密码,不能解密, Why the post info cann 阅读全文
摘要:
工作生活,什么最珍贵,我觉得是时间,怎么节约时间是一个最重要的问题,如果你有重复的工作在网页上,请接着看 上手步骤: 打开https://developer.chrome.com/extensions/getstarted,分别下载需要的文件(3个)到一个文件夹 打开chrome://extensi 阅读全文
摘要:
style.top如: c.style.top=scrollTop; 在IE各版本中可以,Safari, chrome, Firefox都不work, 需要在后面 + "px"; 阅读全文
摘要:
如果有这个的xsd, group内嵌choice的结构: 使用svcutil 生成后的结果是:public class CreateType{ int NameID string Name}因为是choice 类型,这个结果显然不能表示choice的特点,bug?解决问题:生成前,使用xsl... 阅读全文
摘要:
之前在VS上装了Build definition 的扩展,后来发现很不好用,想卸载掉,就增 工具下面找add-in manager, 结果找不到,external tools下面也找不到, google也无果再到后来,每次启动VS,装报需要注册,很唠叨,但也没办法今天打开VS, 有提示有升级,灵感来... 阅读全文
摘要:
<client> <endpoint address="http://..." binding="basicHttpBinding" bindingConfiguration="..." contract="..." name="endpoint1" /></clent>之后, 当我们在程序里读取endpoint.Name时,却发现怎么也找不到endpoint1,会返回BindingName_ContractNamecode:public string get 阅读全文
摘要:
电信经常在你上网的时候,弹出一个垃圾广告,比如访问google,返回:var stat_path='http://121.15.207.198:81/stat.aspx?p=1357982305|8217128|44163|0|0|0';var cnt_path='';window.setInterval('window.status=location.href', 200);</script></head><body scroll='no' style='border:0; margin:0 阅读全文
摘要:
string replacement="$7777777777";Regex.Replace("hello","e",replacement);运行上面的一行,会报ArgumentException. 说捕获索引不能大于Int.MaxValue。程序的理解是,我的replacement string... 阅读全文