
ToolKit
文章平均质量分 82
is2120
这个作者很懒,什么都没留下…
展开
-
ToolKit
//z 主要用于记录一些工具编译:ilspy 一个开放源代码的.NET程序集浏览器和反编译工具makefilesharp develop版本控制软件(client):git: Git Extensions,msysgit 以及 TortoiseGitcvs : cvs , wincvs TortoiseCVShg: mercurial TortoiseHg原创 2011-09-11 11:07:36 · 764 阅读 · 0 评论 -
visual studio 安装相关
记录,供以后再次安装时作为参考 //z 2011-11-29 6:32 PM IS2120@优快云1. visual studio 2008 sp1 安装后,出现在 microsoft update 中的 KBkb2538241kb971092kb972222kb973675kb2251487Security Update for Microsoft Visu原创 2011-11-29 18:02:39 · 1459 阅读 · 0 评论 -
常用颜色大全
米色 245 245 220■■■■■#DC143CCrimson深红/猩红■■■■■#FFF0F5LavenderBlush淡紫红■■■■■#DB7093PaleVioletRed弱紫罗兰红原创 2011-09-06 13:46:54 · 1444 阅读 · 0 评论 -
VA release notes (zz)
//z 2013-12-25 15:19:01 IS2120@BG57IV3 T597988623 .K.F3153028746[T147,L1747,R82,V2575]Archive and release notes for most recent builds of Visual AssistRelease notes apply to all IDEs unl原创 2013-12-25 15:21:56 · 4045 阅读 · 0 评论 -
Using Beyond Compare with Version Control Systems(ZZ)
Using Beyond Compare with Version Control Systems//z 2013-07-23 17:03:49 IS2120@BG57IV3.T596097240 .K[T43,L2692,R15,V1089]Beyond Compare can be configured as the external difference utility in m原创 2013-07-23 17:04:33 · 1821 阅读 · 0 评论 -
Citrix XenApp 下载及一年 developer license 获取
Citrix XenApp 下载及一年 developer license 获取( is2120@csdn )//z 2012-1-12 12:31 PM IS2120@优快云从2011.11.6开始Citrix修改了license相关的网页,所以可能会不一样了citrix xenapp 思杰 注册号 下载 序列号 注册码 破解As I'm currently s原创 2011-08-10 13:55:09 · 5555 阅读 · 4 评论 -
在使用vs2010调试时大量出现iso_whid,HR PROPAGATED 信息
//z 9/5/2011 2:39 PM@is2120@youkuaiyun.comframework4.0 iso_whid 错误在用visual studio 2010 调试时会向dbgview输出大量的如下信息:*** HR propagated: -2147024774[8092] *** Source File: d:\iso_whid\x86fre\base\iso原创 2011-09-05 14:38:44 · 8565 阅读 · 0 评论 -
目前在用的 vim 配置文件
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Maintainer: amix the lucky stiff" http://amix.dk - amix@amix.dk"" Version: 3.6 - 25/08/10 14:40:30" //z 2012-07-2原创 2011-07-27 22:56:26 · 1128 阅读 · 0 评论 -
Resize a VMWare disk (zz)
重新 设置 vmware 硬盘 大小 扩容 扩大 加大 增加This blog post describes how you canresize your VMWare virtual disks. There are multiple ways to performthis task. Paul wrote me a comment saying that there is an e原创 2011-10-25 16:31:27 · 1321 阅读 · 0 评论 -
TortoiseCvs Notepad++
TortoiseCvs 默认查看文件的编辑器为notepad其使用的是注册表中与Edit菜单相关联的程序,而非Open。Right-click on desktop icon give Open window with Edit option, but cannot associate Edit with any program.//z 2012-4-12 17:51:19 PM原创 2012-04-12 17:47:40 · 729 阅读 · 0 评论 -
批处理 tips
1. 判断输入参数是否为NULLif "%1" ==""is2120@csdn2. 设置标签:label使用时,goto label原创 2012-02-09 12:45:28 · 640 阅读 · 0 评论 -
批处理 笔记
18. if18.1 if not errorlevel number commandif errorlevel 这个句子必须放在某个命令的后面,执行命令后由 if errorlevel 来判断命令的返回值number 取值范围为0-255,判断时值的排列顺序应该由大到小。返回的值大于等于指定的值时,条件成立例子@echo off dir c: rem退出代码为>=1就原创 2011-12-20 13:50:03 · 536 阅读 · 0 评论 -
vbscript 运行程序
6:17 PM 9/1/2011@is21201. 不出现cmd窗口,运行程序Set objShell = CreateObject("Wscript.Shell")strCommand = "win32pad d:\mydoc\log\note.log"Set objExec = objShell.Exec(strCommand)2. 删除默认共享strCom原创 2011-09-01 18:20:33 · 1139 阅读 · 0 评论 -
Artistic Style 2.05.1
//z 2015-04-27 11:03:03 L.248'46617 BG57IV3@XCL T1416413195.K.F1383898633[T1,L484,R2,V52] Artistic Style 2.05.1 常用命令行windows : astyle -A1 -R -z1 -n *.cpp -A1 是使用 allman 样式 -R 表示递归 -z1 w原创 2015-04-27 11:03:52 · 940 阅读 · 0 评论 -
Update Path Environment
@echo offSET MyPath=%PATH%echo %MyPath%echo --setlocal EnableDelayedExpansionSET TempPath="%MyPath:;=";"%"SET var=FOR %%a IN (%TempPath%) DO ( IF exist %%~sa ( SET "v原创 2014-10-11 17:16:19 · 697 阅读 · 0 评论 -
c++ 计时
class ZTimer{public: ZTimer() { _startCount.QuadPart = 0; _endCount.QuadPart = 0; QueryPerformanceFrequency(&_frequency); QueryPerformanceCounter(&_startCount); } double Elapsed() {原创 2014-06-19 17:17:30 · 605 阅读 · 0 评论 -
ZLogger
ZLogger.hpp#pragma onceclass ZLogger{public: //z gnu log level : DEBUG < INFO < WARN < TRACE < ERROR < ALERT < CRIT < FATAL < EMERG enum {kInfo,kWarning,kError};public: static bool Log(LP原创 2014-07-15 16:44:29 · 848 阅读 · 0 评论 -
Editpad
IS2120@优快云.BG57IV3EditPad Pro 是一款多功能文本编辑器,设计的目标就是在保持程序小巧简洁的同时,提供所有基础编辑功能。EditPad Pro 可以在 Windows 98、Me、NT4、2000、XP、Vista以及Windows7等环境下工作。//z 2014-07-24 11:28:04 L.160'45116 BG57IV3@XCL T852163889 .原创 2014-07-24 11:28:30 · 1091 阅读 · 0 评论 -
notepad++ Function List 插件
//z 2013-09-20 18:55:38 IS2120@BG57IV3 T1452062141.K.F3569790369[T2,L51,R1,V7]0. 注:FunctionList 这个插件看代码的话会方便很多,但很久未更新了在NPP 5.9 之后使用问题多多(未证实)。我在6.x上使用是无法显示出对应的dialog的。1. 在 windows 7 上安装 FunctionL原创 2013-09-20 18:56:20 · 14776 阅读 · 2 评论 -
c++ print stacktrace
c++ stack print stack trace debug utility原创 2014-06-30 12:39:42 · 2338 阅读 · 0 评论 -
批处理 笔记
1. > 和 >>> 表示新生成一个文件>> 表示附加到文件ping sz.tencent.com > a.txtping sz1.tencent.com >> a.txt2. if else 语句循环调用,只要文件一直存在就进行删除@echo offif exist C:\Progra~1\Tencent\AD\*.gif del C:\Progr原创 2011-12-20 13:21:47 · 836 阅读 · 0 评论 -
将输入字符串转化为合法的文件名称
将输入字符串转化为合法的文件名称using System;using System.Text;namespace ConvertFilenameToValid{ //z 2012-3-5 13:17:35 PM IS2120@优快云 class Program { static void PrintUsage ()原创 2012-03-05 13:17:01 · 1749 阅读 · 0 评论 -
Cool Commands for Unix and Windows (ZZ)
These are some commands that I use in Windows and Unix/Linux for various purposes.Windows (//z 2012-2-21 13:42:23 PM IS2120@优快云)ipconfigShow my IP addressipconfig \allShow my原创 2012-02-21 13:39:51 · 650 阅读 · 0 评论 -
在access 2007 中进行sql query
1. 发现了两个小工具(都是通过odbc来访问)1.1 winsql (其中lite是免费版,需要上网站上申请注册号)1.2 query tool2. Creating a SQL Query in Access 2007by rhyttinen on原创 2011-09-09 16:16:27 · 949 阅读 · 0 评论 -
freecommander 快捷键列表 zz
第一部分Alt+F4 文件(F) - Exit Closes FreeCommanderCtrl+Alt+V 文件(F) - 比较文本文件... 比较文本文件F4 文件(F) - 编辑(E) 打开文件编辑器编辑选定文件Shift+Ctrl+F8 文件(F) -原创 2011-09-21 20:50:49 · 3600 阅读 · 0 评论 -
CVS 用法总结(zz)
这里有份CVS中文手册http://man.chinaunix.net/develop/cvsdoc_zh/index.html#Topcvs用法总结(1)--cvs命令格式,标志字符和环境cvs用法总结(1)--cvs命令格式读书笔记,中文名"版本控制之道-原创 2011-09-17 09:32:54 · 2112 阅读 · 0 评论 -
amix vim vimrc 3.6 (部分修改)
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Maintainer: amix the lucky stiff" http://amix.dk - amix@ami原创 2011-08-01 08:47:47 · 4104 阅读 · 0 评论 -
VC6.0编译器参数设置
VC6.0编译器参数的设置主要通过VC的菜单项Project->Settings->C/C++页来完成。我们可以看到这一页的最下面Project Options中的内容,一般如下:/nologo /MDd /W3 /Gm /GX /ZI /Od /D "WIN32" /D原创 2011-09-14 00:06:32 · 1158 阅读 · 0 评论 -
设置_NT_SYMBOL_PATH(windbg)
Use the Microsoft Symbol Server to obtain debug symbol files//z 2011-09-04 16:52:44@is2120.优快云 转载请注明出处debug tools for windows,windbg原创 2011-09-04 16:51:30 · 11554 阅读 · 0 评论 -
Solve “missing iconv.dll” issue on Win7 X64
After installed the mobileme control panel on my Win7 X64, the mobileme control panel cannot be launched with error message "Missing iconv.d原创 2011-09-02 14:24:32 · 1638 阅读 · 0 评论 -
editplus vc
gccgcD:\sys\Toolkit\gcc4.4.0Bboost1.45.0\mingw\bin\gcc.exe-Wall -c $(FileName)$(FileDir)gl"D:\sys\Toolkit\gcc4.4.0Bboost1.45.0原创 2011-09-01 22:52:01 · 1397 阅读 · 0 评论 -
EditPlus Wiki User Tool
User Tools//z 9/1/2011 2:21 PM@is2120@csdnThis page exists a resource for user tool configurations frequently used in EditPlus.For inf原创 2011-09-01 14:20:28 · 2454 阅读 · 0 评论 -
代码统计和度量工具 zz
代码统计和度量工具CCCC - $0CCCCis a tool which analyzes and generates a report on various metrics of the code.Metrics supported include lines of code, McCabe's complexity and metricsproposed by Chidamber原创 2011-11-17 17:03:31 · 3794 阅读 · 1 评论 -
Windows Xp 服务优化
@echo offclsrem Copyright (C) 2003-08 Ansgar Wiechers & Torsten Mannrem Contact: admin@ntsvcfg.deremrem This program is free software; you can redistribute it and/or modify it underrem the原创 2011-11-19 15:14:55 · 1246 阅读 · 0 评论 -
Searching for a String in Multiple Files
常用命令:grep -r -n -B1 -A1 --include=*.c strstr *findstr /S "MB_ICONHAND" *.h Ever need to search through all your files for a certain word or phrase? I did, and to make matters more complicated原创 2011-08-30 22:27:47 · 936 阅读 · 0 评论 -
关于64位Windows操作系统中的注册表 zz
后一篇 注册表重定向折腾了几回机器,才明白x64上有x64、x86两种注册表,记录下。 //z 2012-2-9 17:40:19 IS2120@优快云32位注册表被重定向为HKEY_LOCAL_MACHINE\Software\WOW6432Node关于64位Windows操作系统中的注册表修改注册表之前,一定要先进行备份,并且要知道在发生问题时如何原创 2011-11-10 18:00:16 · 1833 阅读 · 0 评论 -
64bit系统下操作注册表的注意事项 ZZ
前一篇 注册表重定向64bit系统下操作注册表的注意事项 (2010-03-19 17:50:54)//z 2012-2-9 17:52:04 IS2120@优快云 1、注册表位置 64bit系统(Windows Server 2008 R2只有64bit系统)的注册表分32 位注册表项和64位注册表项两部分。原创 2012-02-09 17:50:53 · 1345 阅读 · 0 评论 -
注册表重定向 zz
前一篇 关于64位Windows操作系统中的注册表什么是重定向无论是Windows XP Professional X64 Edition、Windows Server 2003X64 Edition还是Windows Vista X64 Edition(以下把均统称为X64系统),都引入了一项技术:文件和注册表的重定向。 //z 2012-2-9 17:40:1原创 2012-02-09 17:39:50 · 5875 阅读 · 0 评论 -
Virtual Key Codes
Symbolicconstant nameValue(hexadecimal)Keyboard (or mouse) equivalentVK_LBUTTON01Left mouse buttonVK_RBUTTON02Right mouse buttonVK_CANCEL03Control-break processin原创 2012-02-01 15:39:01 · 775 阅读 · 0 评论 -
A Developers Toolkit for C# and .Net zz
A Developers Toolkit for C# and .NetJuly 16, 2007 //z 2011-12-20 2:34 PM is2120@csdnA developer, no matter how skilled, is dependent on the tools at his disposal. There are numerous free tools t原创 2011-12-20 14:42:19 · 743 阅读 · 0 评论