摘要:
在远程桌面端启用支持音频的输入、输出使用本地设备
For telephony to work on a virtual server or on a dedicated one, it is necessary to transfer the sound not only from the virtual server to the personal one, but also the sound of the microphone to the server. To do this, you need to configure/install a terminal server. 阅读全文
2024年8月2日
2024年8月1日
摘要:
默认情况下,MySQL不支持设置“Asia/Shanghai”格式时区信息,如根据数据记录的时区信息去转换时间时,会发生意想不到的空。 “表达式1”会返回正常的时间转换结果: -- 表达式1SELECT CONVERT_TZ('2024-08-01 11:04:04', '+00:00', '+08 阅读全文
2023年4月21日
摘要:
调试.NET Framework 4.6项目,通过创建新进程在程序中调用Program Files下的其他可执行程序,运行报错: System.ComponentModel.Win32Exception:‘拒绝访问’ System.ComponentModel.Win32Exception:‘Acc 阅读全文
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 阅读全文
2022年10月9日
摘要:
微软应用商店错误代码0x80131500打不开解决办法 方法一: 用“win + R”打开运行 输入 inetcpl.cpl 打开Internet属性(或从IE浏览器设置打开) 点击高级选项 找到并勾选 TLS 1.2,取消勾选TLS 1.0 点击确定,现在应用商店可以打开了! COOOOOOL 转 阅读全文
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; 阅读全文
2016年10月9日
摘要:
你也许不知道的Chrome开发者工具的一些功能, 10个提升JS调试能力的小技巧, 原来Chrome自带的开发者工具还能这么用 阅读全文
2016年3月30日
摘要:
Place Holder, , , 阅读全文
2016年3月27日
摘要:
为了赋予APP不同凡响的视觉效果和体验,很多开发者往往在客户端开发过程中加入不同的交互元素。然而过多的交互和绚烂的视觉效果在用户眼里是否真正需要的? 阅读全文
2016年3月24日
摘要:
现在,大部分App的接口都采用RESTful架构,RESTFul最重要的一个设计原则就是,客户端与服务器的交互在请求之间是无状态的,也就是说,当涉及到用户状态时,每次请求都要带上身份验证信息。 阅读全文
2015年12月2日
摘要:
对于不写注释的恶习, 我想说: 所写的注释可能就和自己JJ的长度一样, 自己看着办吧.
对于忘加注释的借口, 请看本文. 将介绍如何配置TortoiseSVN客户端, 强制在不写注释的情况下无法完成签入动作. 阅读全文
摘要:
对于提交更新,建议还是做一点提交一点,当然是在保证代码没有错误的情况下,这样方便做恢复更改。 阅读全文
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. 阅读全文
2015年8月9日
摘要:
iframe和父页,window.open打开页面和被打开页面之间的关系可以通过下面的对象获取到. 阅读全文
2015年7月28日
摘要:
能否用讲个故事的方式,由浅入深,通俗易懂地解释一下什么是天使投资,VC,PE?
对于金融知识零基础的人进行扫盲,希望故事浅显易懂,趣味性强。
Here it is. 阅读全文
摘要:
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! 阅读全文
2015年5月16日
摘要:
Part 2 of What is an SDET, skills matrix of SDET. 阅读全文
2015年5月15日
摘要:
SDET stands for Software Development Engineer in Test. They can be summarized as having development skills and software quality skills. 阅读全文
2015年1月18日
摘要:
电影归来,是讲述的,一个老头二十余年未见老伴,老伴患病认不得人了,老头三番五次努力,老伴不见好转,结果终此一生的故事。 阅读全文
摘要:
Assert - Verifies conditions in unit tests using true/false propositions.Assert用于检查不应该发生情况,用来帮助开发人员对问题的快速定位。异常处理用于对程序发生异常情况的处理,增强程序的健壮性、容错性,减少程序使用中对用户不有好的行为,不让(通常也不必)用户知道发生了什么错误。 阅读全文
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 阅读全文
2014年10月14日
摘要:
本文借用了多张动态图,以诙谐的方式,展示了程序员/开发人员的真实生活。文章原始版本是西班牙语,由Alex Soto 翻成了英文版,再由伯乐在线翻成了中文版。然后我又转载到了园子里O(∩_∩)O~ 阅读全文
2014年10月8日
摘要:
七宗罪(Seven deadly sins),13世纪道明会神父圣多玛斯·阿奎纳列举出各种恶行的表现。这些恶行最初是由希腊神学修道士庞义伐草撰出8种损害个人灵性的恶行,分别是贪食、色欲、贪婪、暴怒、懒惰、伤悲、自负及傲慢。 阅读全文
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 代表南京(获取城市代码的方法下面会说明) 阅读全文
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... 阅读全文