相信对于很多刚接触打包程序的同志来说,关于x86,x64,Any CPU这三个项目平台,以及解决方案配置Debug和Release有什么区别?这个问题一定有许多的困惑,甚至不乏一些已经工作了很久的老程序猿来说都是一个模棱两可的问题。当然,我也是捣腾了好久,才渐渐搞明白它们的区别,以此作个总结: 一 ... ...
分类:
其他好文 时间:
2017-03-13 12:47:12
阅读次数:
691
部署前端之前,开发者通常会对代码进行打包压缩,这样可以减少代码大小,从而有效提高访问速度。然而,压缩代码的报错信息是很难Debug的,因为它的行号和列号已经失真。这时就需要Source Map来还原真实的出错位置了。 ...
分类:
其他好文 时间:
2017-03-13 11:45:35
阅读次数:
188
MySQL Workbench – Error Code: 1175. You are using safe update mode When you execute the update/delete request in MySQL workbench and you got the messa ...
分类:
其他好文 时间:
2017-03-13 11:35:45
阅读次数:
204
题目: Given a positive integer num, write a function which returns True if num is a perfect square else False. Note: Do not use any built-in library fun ...
分类:
其他好文 时间:
2017-03-13 11:20:52
阅读次数:
180
业务逻辑的实现过程中,往往需要保证数据访问的排他性。因此,我们就需要通过一些机制来保证这些数据在某个操作过程中不会被外界修改,这样的机制,在这里,也就是所谓的“锁”,即给我们选定的目标数据上锁,使其无法被其它程序修改。 Hibernate 支持两种锁机制: 1. 悲观锁(Pessimistic Lo ...
分类:
Web程序 时间:
2017-03-12 21:41:38
阅读次数:
257
一、音频架构概述 (1)ALSA是Advanced Linux Sound Architecture 的缩写,目前已经成为了linux的主流音频体系结构,想了解更多的关于ALSA的这一开源项目的信息和知识,请查看以下网址:http://www.alsa-project.org/。在内核设备驱动层,A ...
分类:
系统相关 时间:
2017-03-12 19:59:16
阅读次数:
3723
一,子查询 原始表: (1)in / not in 之前学习中查询题目要求是用这种方法: 现在用in来实现: (2)between and (3)any (4)all 二,聚合函数 (1)max / min (2)avg (3)sum (4)count ...
分类:
数据库 时间:
2017-03-12 18:10:56
阅读次数:
199
卧槽,真是。。。。。。。。。。。。。。。。。。。。。。。。瞎眼了。 一个半小时才找出错误来。。。。。 Oh my God! I´m quite blind .... apologies for any inconvenience. I need my glasses to see ... I´m a ...
分类:
编程语言 时间:
2017-03-12 17:49:26
阅读次数:
382
Imagine A is a NxM matrix with two basic properties 1) Each element in the matrix is distinct and lies in the range of 1<=A[i][j]<=(N*M) 2) For any tw ...
分类:
编程语言 时间:
2017-03-12 13:01:24
阅读次数:
161
character:the sort time is proportional to any input array with length of N. Introduction to merge:if two arrays are already sorted,after merge operat ...
分类:
其他好文 时间:
2017-03-12 11:24:54
阅读次数:
209