2023年4月21日

摘要: 调试.NET Framework 4.6项目,通过创建新进程在程序中调用Program Files下的其他可执行程序,运行报错: System.ComponentModel.Win32Exception:‘拒绝访问’ System.ComponentModel.Win32Exception:‘Acc 阅读全文
posted @ 2023-04-21 22:50 Lionden 阅读(1872) 评论(0) 推荐(1) 编辑

2022年10月27日

摘要: VS Release模式下编译报错: 功能“创建目标类型对象”在 C# 7.3 中不可用。请使用 9.0 或更高的语言版本。 Feature 'target-typed object creation' is not available in C# 7.3. Please use language 阅读全文
posted @ 2022-10-27 17:11 Lionden 阅读(3067) 评论(0) 推荐(0) 编辑

2022年10月9日

摘要: 微软应用商店错误代码0x80131500打不开解决办法 方法一: 用“win + R”打开运行 输入 inetcpl.cpl 打开Internet属性(或从IE浏览器设置打开) 点击高级选项 找到并勾选 TLS 1.2,取消勾选TLS 1.0 点击确定,现在应用商店可以打开了! COOOOOOL 转 阅读全文
posted @ 2022-10-09 10:32 Lionden 阅读(420) 评论(0) 推荐(0) 编辑

2017年2月8日

摘要: SQL语句增加字段、修改字段、修改类型、修改默认值 alter table 表名 drop constraint 约束名字 ------说明:删除表的字段的原有约束; alter table 表名 add constraint 约束名字 DEFAULT 默认值 for 字段名称 -------说明:添加一个表的字段的约束并指定默认值; alter table 表名 rename column A to B; alter table 表名 alter column UnitPrice decimal(18, 4) not null; alter table 表名 ADD 字段 类型 NOT NULL Default 0; 阅读全文
posted @ 2017-02-08 11:00 Lionden 阅读(362) 评论(0) 推荐(0) 编辑

2016年10月9日

摘要: 你也许不知道的Chrome开发者工具的一些功能, 10个提升JS调试能力的小技巧, 原来Chrome自带的开发者工具还能这么用 阅读全文
posted @ 2016-10-09 10:41 Lionden 阅读(2300) 评论(0) 推荐(0) 编辑

2016年3月30日

摘要: Place Holder, , , 阅读全文
posted @ 2016-03-30 01:19 Lionden 阅读(297) 评论(0) 推荐(0) 编辑

2016年3月27日

摘要: 为了赋予APP不同凡响的视觉效果和体验,很多开发者往往在客户端开发过程中加入不同的交互元素。然而过多的交互和绚烂的视觉效果在用户眼里是否真正需要的? 阅读全文
posted @ 2016-03-27 22:51 Lionden 阅读(537) 评论(0) 推荐(0) 编辑

2016年3月24日

摘要: 现在,大部分App的接口都采用RESTful架构,RESTFul最重要的一个设计原则就是,客户端与服务器的交互在请求之间是无状态的,也就是说,当涉及到用户状态时,每次请求都要带上身份验证信息。 阅读全文
posted @ 2016-03-24 22:41 Lionden 阅读(858) 评论(0) 推荐(0) 编辑

2015年12月2日

摘要: 对于不写注释的恶习, 我想说: 所写的注释可能就和自己JJ的长度一样, 自己看着办吧. 对于忘加注释的借口, 请看本文. 将介绍如何配置TortoiseSVN客户端, 强制在不写注释的情况下无法完成签入动作. 阅读全文
posted @ 2015-12-02 23:32 Lionden 阅读(1856) 评论(1) 推荐(0) 编辑
摘要: 对于提交更新,建议还是做一点提交一点,当然是在保证代码没有错误的情况下,这样方便做恢复更改。 阅读全文
posted @ 2015-12-02 22:59 Lionden 阅读(1038) 评论(0) 推荐(0) 编辑

2015年10月25日

摘要: After startups raise money, their next biggest problem becomes hiring. It turns out it’s both really hard and really important to hire good people; in fact, it’s probably the most important thing a founder does. If you don’t hire very well, you will not be successful.Here is some advice about hiring. 阅读全文
posted @ 2015-10-25 20:28 Lionden 阅读(539) 评论(0) 推荐(0) 编辑

2015年8月9日

摘要: iframe和父页,window.open打开页面和被打开页面之间的关系可以通过下面的对象获取到. 阅读全文
posted @ 2015-08-09 14:29 Lionden 阅读(8174) 评论(0) 推荐(0) 编辑

2015年7月28日

摘要: 能否用讲个故事的方式,由浅入深,通俗易懂地解释一下什么是天使投资,VC,PE? 对于金融知识零基础的人进行扫盲,希望故事浅显易懂,趣味性强。 Here it is. 阅读全文
posted @ 2015-07-28 23:57 Lionden 阅读(1785) 评论(0) 推荐(0) 编辑
摘要: Windows 10 Enterprise has some awesome new features, including Microsoft Edge as your default browser, Cortana as your personal assistant, a new Start menu, and new Office Mobile applications for Word, Excel, and PowerPoint. And the good news is that it’s heading your way! 阅读全文
posted @ 2015-07-28 13:36 Lionden 阅读(536) 评论(0) 推荐(0) 编辑

2015年5月16日

摘要: Part 2 of What is an SDET, skills matrix of SDET. 阅读全文
posted @ 2015-05-16 00:21 Lionden 阅读(310) 评论(0) 推荐(0) 编辑

2015年5月15日

摘要: SDET stands for Software Development Engineer in Test. They can be summarized as having development skills and software quality skills. 阅读全文
posted @ 2015-05-15 22:42 Lionden 阅读(230) 评论(0) 推荐(0) 编辑

2015年1月18日

摘要: 电影归来,是讲述的,一个老头二十余年未见老伴,老伴患病认不得人了,老头三番五次努力,老伴不见好转,结果终此一生的故事。 阅读全文
posted @ 2015-01-18 23:59 Lionden 阅读(344) 评论(0) 推荐(0) 编辑
摘要: Assert - Verifies conditions in unit tests using true/false propositions.Assert用于检查不应该发生情况,用来帮助开发人员对问题的快速定位。异常处理用于对程序发生异常情况的处理,增强程序的健壮性、容错性,减少程序使用中对用户不有好的行为,不让(通常也不必)用户知道发生了什么错误。 阅读全文
posted @ 2015-01-18 21:18 Lionden 阅读(20147) 评论(0) 推荐(2) 编辑

2014年12月25日

摘要: One of the extensibility points we have in Team Foundation V1 is that you can configure any other diff and merge tools you want. The purpose of this article is to start collecting the most common ones we know or heard about in a 阅读全文
posted @ 2014-12-25 16:58 Lionden 阅读(569) 评论(0) 推荐(0) 编辑

2014年10月14日

摘要: 本文借用了多张动态图,以诙谐的方式,展示了程序员/开发人员的真实生活。文章原始版本是西班牙语,由Alex Soto 翻成了英文版,再由伯乐在线翻成了中文版。然后我又转载到了园子里O(∩_∩)O~ 阅读全文
posted @ 2014-10-14 09:12 Lionden 阅读(550) 评论(0) 推荐(0) 编辑

2014年10月8日

摘要: 七宗罪(Seven deadly sins),13世纪道明会神父圣多玛斯·阿奎纳列举出各种恶行的表现。这些恶行最初是由希腊神学修道士庞义伐草撰出8种损害个人灵性的恶行,分别是贪食、色欲、贪婪、暴怒、懒惰、伤悲、自负及傲慢。 阅读全文
posted @ 2014-10-08 08:15 Lionden 阅读(441) 评论(0) 推荐(0) 编辑

2014年6月22日

摘要: 中国气象局提供了三个天气查询的API接口: 【1】http://www.weather.com.cn/data/sk/101190101.html 【2】http://www.weather.com.cn/data/cityinfo/101190101.html 【3】http://m.weather.com.cn/data/101190101.html 以json格式返回数据,第一和第二个接口返回当天实时的天气数据,第三个返回未来五天天气情况。 其中地址里的加粗显示的数字表示城市的代码:101190101 代表南京(获取城市代码的方法下面会说明) 阅读全文
posted @ 2014-06-22 23:35 Lionden 阅读(2478) 评论(0) 推荐(0) 编辑

2014年5月14日

摘要: The web.config file can be used to set a default document, or list of default documents for your website. Web.config can be used to change the defau... 阅读全文
posted @ 2014-05-14 21:33 Lionden 阅读(17034) 评论(0) 推荐(1) 编辑
摘要: 对于一些政府类的网站,很多支持IE6~8,而不支持使用更高版本浏览器浏览。虽然有些浏览器会自动使用兼容模式,或有些人会手动调整浏览器的兼容模式,但不是每一个人、每一款浏览器都可以做到用兼容模式。所以,强制浏览器使用指定版本的兼容模式运行,变得势在必行。 ... 阅读全文
posted @ 2014-05-14 20:53 Lionden 阅读(7691) 评论(0) 推荐(0) 编辑

2014年4月15日

摘要: 文献标识码(原文转自Baeyo的日记)国家期刊出版格式要求在中图分类号的下面应标出文献标识码,规定如下: 作者可从下列A、B、C、D、E中选用一种标识码来揭示文章的性质:A—理论与应用研究学术论文(包括综述报告);B—实用性成果报告(科学技术)、理论学习与社会实践总结(科技);C—业务指导与技术管理... 阅读全文
posted @ 2014-04-15 09:07 Lionden 阅读(6140) 评论(0) 推荐(0) 编辑

导航

 联系我 | 新浪微博关注我 | 返回首页 
版权所有 © Lionden Lee · Beijing
电子邮箱:hsdlionden@hotmail.com