Mac升级到10.10,发现文件路径这里变了。不能直接复制了, 如下:感觉有点不太方便, 折腾了下, 总结两种办法, 很方便获取文件对应路径。1. 拖动文件到终端, 即可获取。 如下:2. 用一个工作流来实现。下载 Get File Path into Clipboard.workflow (下载地址: )...
分类:
系统相关 时间:
2014-12-17 22:38:54
阅读次数:
389
public partial class Form1 : Form { public Form1() {InitializeComponent(); SetProcessDPIAware(); //重要 IntPtr screenDC = GetDC(IntPtr.Zero); int dpi_x....
分类:
其他好文 时间:
2014-12-17 16:09:44
阅读次数:
462
我的verilog处女作,已通过ise仿真,过两天进行FPGA开发板仿真。暂时不给出原理图,过两天更新原理图,先准备考试O(∩_∩)O~【处女作,一天半查资料,半天敲写,两天调试,共八九次修改。】 1 module mu0(x1,x2,s,zero,overflow); 2 input [31:.....
分类:
其他好文 时间:
2014-12-17 14:16:32
阅读次数:
308
一讲到traits,相应的就会联系到policy。那么policy是干啥的呢?
看一下下面的累加代码。
template
typename traits::AccuT accum(const T* ptr, int len)
{
traits::AccuT total = traits::Zero();
for (int i = 0; i < len; i++)
{
total +...
分类:
编程语言 时间:
2014-12-16 19:14:24
阅读次数:
188
Implement regular expression matching with support for '.' and
'*'.
'.' Matches any single character.
'*' Matches zero or more of the preceding element.
The matching should cover the entire input...
分类:
其他好文 时间:
2014-12-16 15:12:03
阅读次数:
153
Implement regular expression matching with support for '.' and '*'.'.' Matches any single character.'*' Matches zero or more of the preceding element....
分类:
其他好文 时间:
2014-12-15 18:48:32
阅读次数:
160
本文介绍如何用 C 语言来扩展 python。所举的例子是,为 python 添加一个设置字符串到 windows 的剪切板(Clipboard)的功能。我在写...本文介绍如何用 C 语言来扩展 python。所举的例子是,为 python 添加一个设置字符串到windows的剪切板(Clipbo...
分类:
编程语言 时间:
2014-12-14 14:29:56
阅读次数:
287
1.dd if=/dev/zero of=/opt/swapfile bs=1M count=1000 (创建一个1G的文件作为交换分区使用) 2.mkswap /opt/swapfile (格式化成swap分区) 3.swapon /opt/swapfile (打开swap分区) 4.vim /....
分类:
系统相关 时间:
2014-12-13 12:11:45
阅读次数:
171
1、概论 -- 来自维基的解释/dev/null : 在类Unix系统中,/dev/null,或称空设备,是一个特殊的设备文件,它丢弃一切写入其中的数据(但报告写入操作成功),读取它则会立即得到一个EOF。在程序员行话,尤其是Unix行话中,/dev/null 被称为位桶(bit bucket)或者黑洞(black hole)。空设备通常被用于丢弃不需要的输出流,或作为用于输入流的空文件。这些操...
分类:
其他好文 时间:
2014-12-12 16:43:43
阅读次数:
273
select函数用于在非阻塞中,当一个套接字或一组套接字有信号时通知你,系统提供select函数来实现多路复用输入/输出模型,原型:#include#includeintselect(intmaxfd,fd_set*rdset,fd_set*wrset,fd_set*exset,structtime...
分类:
其他好文 时间:
2014-12-12 13:04:19
阅读次数:
137