随笔分类 - 编程工具
摘要:http://www.sublimetext.com/2安装Package Control:https://sublime.wbond.net/browse#如果是在默认shell下, sudo ln -s "/Applications/Sublime\ Text.app/Contents/Shar...
阅读全文
摘要:http://curl.haxx.se/download.htmlcurl非常博大,用户要想使用好这个工具,除了详细学习参数之外,还需要深刻理解http的各种协议与URL的各个语法。这里推荐几个读物:RFC 2616 HTTP协议语法的定义。RFC 2396 URL语法的定义。RFC 2109 Cookie是怎样工作的。RFC 1867 HTTP如何POST,以及POST的格式。
阅读全文
摘要:Ctrl + L : 清屏。Ctrl + U : 清除光标前至行首间的所有内容。Ctrl + W : 移除光标前的一个单词Ctrl + K : 清除光标后至行尾的内容。Tab : 自动补完命令Ctrl + A : 光标移到行首。Ctrl + E : 光标移到行尾。Ctrl + F : 光标前移一个字符。Ctrl + B : 光标后移一个字符。Ctrl + C : 杀死当前进程。Ctrl + D : 退出当前 Shell。Ctrl + H : 同 backspace 键相同。Ctrl + R : 搜索之前打过的命令。Ctrl + Z : 把当前进程转到后台运行,使用' fg '命
阅读全文
摘要:COMPILE.cpp = $(CXX) $(CFLAGS) $(CPPFLAGS) $(TARGET_ARCH) -c CPPFLAGS = -g .cpp.o: $(COMPILE.cpp) $(OUPUT_OPTION) $<
阅读全文
摘要:http://www.perl.org/get.htmlhttp://padre.perlide.org/download.htmlhttp://www.perlide.org/http://padre.perlide.org/download.html
阅读全文
摘要:http://www.visualsvn.com/downloads/Apache Subversion Binary Packageshttp://subversion.apache.org/packages.html
阅读全文
摘要:from:http://my.oschina.net/wlmouse/blog/35258最近买了新出的《实用Common Lisp编程》,准备学习Lisp。结果到书上面所说的网站下载开发环境的时候,发现作者不再更新了。没办法,只好自己搭建开发环境。Lisp开发最推崇的环境是Emacs + slime + sbcl。Emacs这个经典的编辑器可以从http://ftp.gnu.org/pub/gnu/emacs/windows/下载。slime在http://common-lisp.net/project/slime/下载。sbcl全名是Steel Bank Common Lisp,是一个经典
阅读全文
摘要:#include <iostream>using namespace std;int main(){ int i=10; int j=20; int * const cp = &i; cout<<*cp<<endl; (*cp)++; //ok: Can modify the variable pointed cout<<*cp<<endl; //cp = &j; //error: Canot modify a const object const int * pc ; pc = &i; cout<<
阅读全文
摘要:http://edn.embarcadero.com/article/20633Borland C++ Compiler version 5.5 Free Download Is Here !!!By:David IntersimoneAbstract: The free download version of the Borland C++ Compiler version 5.5 is now available.Borland C++ Compiler version 5.5 Free Download - AVAILABLE NOWOur classic ANSI C/C++ comp
阅读全文
摘要:环境:Windows 7 Home BasicCygwin (不是必要条件,个人喜好,从该镜像安装:China:mirrors.neusoft.edu.cn(ftp))MinGW (使用CodeBlocks捆绑的,设置到Path)使用的插件:color-theme.elyasnippetauto-complete-1.3.1smart-compile.eltabbar.el配置文件:http://files.cnblogs.com/wucg/emacs_home..zipauto-complete 可能需要重装install.M-x 3 (水平分割窗口)编写HelloWorld.cppM-x
阅读全文
摘要:http://www.jeremyskinner.co.uk/2010/06/25/hosting-a-git-server-under-iis7-on-windows/http://www.jeremyskinner.co.uk/2010/07/31/hosting-a-git-server-under-apache-on-windows/https://github.com/jeremyskinner/git-dot-aspx
阅读全文
摘要:http://git-scm.com/bookBookThe entire Pro Git book, written by Scott Chacon and published by Apress, is available here. All content is licensed under theCreative Commons Attribution Non Commercial Share Alike 3.0 license. Print versions of the book are available onAmazon.com.1.Getting Started1.1Abou
阅读全文
摘要:http://kipirvine.com/asm/4th/ide/vs6/cppProject/index.htmUpdated 11/25/2002Before beginning this tutorial, you must have already installed a command in your Tools menu in Visual Studio that assembles an ASM source file without linking. In our samples, the tool will be calledAssemble 32-bit.Click her
阅读全文
摘要:官方文档:http://www.gnu.org/software/make/manual/make.html简单示例:http://mrbook.org/tutorials/make/Compiling your source code files can be tedious, specially when you want to include several source files and have to type the compiling command everytime you want to do it.Well, I have news for you... Your da
阅读全文
摘要:http://www.understudy.net/custom.htmlDescriptioncsh*kshbashtcsh*zshCurrent working directory$CWD$PWD\w%/%/Current working directory, with one's home directory by `~'$CWD:t$PWD##*/\W%~%~Full hostname'uname -n''uname -n'N/A%M%MHostname up to the first '.'`hostname -s``h
阅读全文
摘要:How to shrink a dynamically-expanding guest virtualboximagehttp://dantwining.co.uk/2011/07/18/how-to-shrink-a-dynamically-expanding-guest-virtualbox-image/Sometimes bigger isn’t always better. If your dynamically-expanding virtual machine images are growing out of control, then here’s how to trim th
阅读全文
摘要:http://www.lemis.com/grog/Documentation/CFBSD/
阅读全文
摘要:Setting environment for using Microsoft Visual Studio 2010 x86 tools.d:\Program Files (x86)\Microsoft Visual Studio 10.0\VC>cl /?Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 16.00.40219.01 for 80x86Copyright (C) Microsoft Corporation. All rights reserved. C/C++ COM...
阅读全文
摘要:.vimrc vim,gvim启动设定 推荐 git clone git://github.com/amix/vimrc.git ~/.vim_runtimesh ~/.vim_runtime/install_awesome_vimrc.shsh ~/.vim_runtime/install_bas
阅读全文
摘要:from: http://cx4a.org/software/gccsense/manual.html#Editros1. Introduction1.1. What is GCCSense ?GCCSense is the most intelligent development tools for C/C++ using GCC's code analyzers. Using internal compiler information, it is capable to provide a high precise code completion functions. GCCSen
阅读全文

浙公网安备 33010602011771号