自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(28)
  • 收藏
  • 关注

转载 Linux 下让进程在后台可靠运行的几种方法

http://www.linuxprobe.com/process-run-background/

2016-04-01 13:47:38 269

转载 关于相机矩阵

http://ksimek.github.io/2012/08/22/extrinsic/Dissecting the Camera Matrix

2016-03-20 16:45:12 385

转载 缺少动态连接库.so--cannot open shared object file: No such file or directory

http://www.cnblogs.com/smartvessel/archive/2011/01/21/1940868.html总结下来主要有3种方法:1. 用ln将需要的so文件链接到/usr/lib或者/lib这两个默认的目录下边ln -s /where/you/install/lib/*.so /usr/libsudo ldconfig

2016-03-20 13:39:49 429

转载 linux 扫描端口

nmap -v -sT

2016-03-20 12:57:05 334

转载 64位 ubuntu 14.04 运行32位程序

需要 sudo apt-get install libc6-i386

2016-03-17 22:59:53 241

原创 映射CapsLock为Ctrl

环境 Windows使用 AutoHotKey ( https://www.autohotkey.com/ ) ,运行下面的 script+Capslock::CapslockCapslock::Ctrl原来的 CapsLock 可以用 Shit + CapsLock键实现,CapsLock 映射为 Ctrl在 windows 下另外一种常见的键映射方法是修改注册

2016-03-01 13:06:55 1333

转载 sh里判断系统和32/64

if [ ! `uname -s | grep NT` = "" ]; then echo "win system"fiMACHINE_TYPE=`uname -m`if [ ${MACHINE_TYPE} == 'x86_64' ]; then # 64-bit stuff hereelse # 32-bit stuff herefi

2016-02-29 10:26:23 287

转载 使用qt时出现找不到模块错误

在ubuntu下如果用的是sudo-apt get install,可能是没有安装相应的模块,把它装上就行了。

2016-02-28 11:05:01 2257

转载 c++模板类中的友元函数

http://en.cppreference.com/w/cpp/language/friend这里已经写的很清楚了还有一种方法是这样:#include templateclass Foo { public: Foo(const T& val) : data(val) {} private: T data; template fr

2016-02-27 20:19:08 797

转载 ubuntu flash 安装

http://jingyan.baidu.com/article/4ae03de31bef883eff9e6bcb.html从 software center 搜索flash, 找到目标,安装

2016-02-19 20:43:52 290

转载 ubuntu 14.04 boot into text mode

This simple tutorial will show you how to boot your Ubuntu system directly into command line (text mode or console). If you just want a console for temporary use, pressCtrl+Alt+F1 on keyboard will s

2016-02-19 19:47:16 353

转载 install grub-customizer in ubuntu14.04

sudo add-apt-repository ppa:danielrichter2007/grub-customizersudo apt-get updatesudo apt-get install grub-customizer

2016-02-19 18:45:14 233

原创 UML

http://metauml.denksoft.com/

2016-01-30 11:28:11 239

原创 在latex中画算法流程图

\documentclass{article}\usepackage{amsmath}\usepackage{algorithm}\usepackage{algpseudocode}\makeatletter\def\BState{\State\hskip-\ALG@thistlm}\makeatother\floatname{algorithm}{Procedure}\ren

2016-01-30 10:14:33 14173

原创 windows下使用msysgit

首先下载 msysgit 客户端 https://git-for-windows.github.io/安装正常完成后,在文件夹下点击右键会出现Git Init HereGit GuiGit Bash1. 生成 SSH key点击 Git Bash,输入ssh-keygen -t rsa跟着提示操作,会生成 id_rsa, id_rsa.pub打开

2016-01-28 11:43:56 317

原创 svn checkout failure from sourceforge

svn checkout failure from sourceforgesvn co --trust-server-cert --non-interactive ....

2016-01-24 17:58:38 262

转载 latex 图片格式选择

http://tex.stackexchange.com/questions/8532/best-figure-format-practice-to-use“For photos, screenshots and such bitmap graphics, you could use their native format (to preserve quality) if it's

2015-12-17 16:16:18 1134

原创 常用的文档

CMake 3.4https://cmake.org/cmake/help/v3.4/

2015-12-12 13:41:17 297

转载 linux shortcut

http://linux.about.com/od/linux101/l/blnewbie5_1.htm Switch to the first text terminals. Under Linux you can have several (6 in standard setup) terminals opened at the same time. This is a k

2015-12-11 14:51:42 520

原创 Install LaTeX in Ubuntu Linux

http://linuxandfriends.com/install-latex-in-ubuntu-linux/

2015-12-09 10:39:24 403

原创 bash shortcuts

http://www.skorks.com/2009/09/bash-shortcuts-for-maximum-productivity/

2015-12-08 21:27:44 248

转载 vim使用

vim cheat sheethttp://www.fprintf.net/vimCheatSheet.html替换http://vim.wikia.com/wiki/Search_and_replace

2015-12-08 20:55:35 203

原创 vimrc

1. disable arrow keys" disable arrow keysinoremap       inoremap     inoremap     inoremap    noremap       norema

2015-12-08 19:55:43 199

原创 10min programming

1.  write a 'hello world' programlinux + vim + qmake

2015-12-08 19:28:23 265

原创 source和build分离

source和build分离可以让source目录更干净,使用git等托管代码时,不会添加编译自动生成的文件。

2015-12-03 23:44:29 353

原创 linux 相关问题

1. 如何通过 man pages 学习如何使用命令?简单的说,使用 man manStackExchange 上有详细解答

2015-12-03 17:19:30 324

原创 QT 相关问题

在 ubuntu 下选择 qmake 版本qtchooser

2015-12-03 17:14:19 325

原创 在codeblocks中使用cygnus c++ 2.91 for windows

下载codeblocks和 cygnus c++ 2.91

2014-10-18 10:58:43 1099

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除