惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

L
LINUX DO - 热门话题
Stack Overflow Blog
Stack Overflow Blog
B
Blog
WordPress大学
WordPress大学
Project Zero
Project Zero
P
Palo Alto Networks Blog
阮一峰的网络日志
阮一峰的网络日志
博客园 - 司徒正美
有赞技术团队
有赞技术团队
S
SegmentFault 最新的问题
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
小众软件
小众软件
T
Tailwind CSS Blog
Forbes - Security
Forbes - Security
F
Full Disclosure
SecWiki News
SecWiki News
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Hacker News: Ask HN
Hacker News: Ask HN
C
Check Point Blog
Microsoft Security Blog
Microsoft Security Blog
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
F
Fortinet All Blogs
Cisco Talos Blog
Cisco Talos Blog
G
Google Developers Blog
J
Java Code Geeks
Google DeepMind News
Google DeepMind News
人人都是产品经理
人人都是产品经理
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
Recorded Future
Recorded Future
O
OpenAI News
Spread Privacy
Spread Privacy
MongoDB | Blog
MongoDB | Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
C
Cybersecurity and Infrastructure Security Agency CISA
S
Securelist
V
Vulnerabilities – Threatpost
Y
Y Combinator Blog
IT之家
IT之家
U
Unit 42
腾讯CDC
S
Security Affairs
C
Cisco Blogs
Schneier on Security
Schneier on Security
The Last Watchdog
The Last Watchdog
B
Blog RSS Feed
宝玉的分享
宝玉的分享
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
S
Security @ Cisco Blogs
Cyberwarzone
Cyberwarzone
T
The Blog of Author Tim Ferriss

博客园 - 流云之心

招人啦 - 前端,后台开发专家 为什么不给程序员配好电脑 [翻译] SQL Server中对XML操作 设计模式一 - Simple Factory, Factory Method, Abstract Factory以及Builder模式简述 强制休息程序 - EyeGuardian 眼睛守护者 Beta测试版 定时计划任务方案比较以及通过脚本创建计划任务(SchTasks命令) javascript 将页面上的Table导出保存为Excel (无格式) - 流云之心 Excel Programming (C# + VBA) Part III Excel Programming (C# + VBA) Part II Excel programming (C# + VBA) Part 1 Harry Potter - The Half-Blood Prince 转移阵地了,新地址:http://spaces.msn.com/members/PuGong 关于XMLHTTP object的OPEN方法 smart client优势在那里? (草稿) SQL Server的collation问题 Microsoft Interview Question links 转自http://blogs.msdn.com/chappell/archive/2004/07/20/189364.aspx MSN to expand free e-mail storage to 250MB 用 #inculde file = "../fiel" 报1031错误 用<!--include file = ../ --> 报错误1031
开发常用小工具介绍
流云之心 · 2010-06-27 · via 博客园 - 流云之心

在开发中有很多小工具能够很高效的提高效率,感觉做开发的人员都会或多或少用到这些工具,这里就算抛砖引玉,看看大家是不是还有其他更好用的小工具 :)

1. 微软 SysinternalsSuite 系列工具

  这套软件可以从technet直接下载,地址为http://technet.microsoft.com/en-us/sysinternals/bb842062.aspx。 开发人员常用的工具有以下几种

  a. DbgView.exe

  Debug Viewer 用来查看代码中trace信息。当然比不上windbg功能强大,但是在开发中基本上都是够用了。倒是性能调优的时候还是windbg比较有效

     b. procexp.exe

  Process Explorer,可以看做任务管理器的升级版,可以找出进程打开了哪些文件、注册表项和其他对象以及已加载哪些 DLL 等信息

     c.procmon.exe

  Process Monitor 实时监视文件系统、注册表、进程、线程和 DLL 活动

  d. TCPView.exe

  TCP Viewer, 查看TCP端口

另外提一个好玩的小东西,BlueScreen.exe,  是个屏幕保护程序,不仅精确模拟“蓝屏”,而且也模拟重新启动,包括进行磁盘检查等动作,可以用来吓唬老板同事 :)

2. IETester

针对国内用户存在大量使用IE的现状,可以通过IETester模拟各种IE版本查看效果

3. IE Developer 【IE8中已经包括进来】

    用来调整CSS, JS的好工具,可以直接在客户端更改后查看效果

4. Firebug [Firefox]

功能基本上同IE Developer, 只不过针对Firefox。可以利用它除错、编辑、甚至删改任何网站的 CSS、HTML、DOM、与 JavaScript 代码,

5. HttpWatch

跟踪客户端发出的Request和接受的Response的好工具,可以通过这个工具发现客户端究竟发出了那些请求,并可以看到Cookie,Header里面的相关信息

6. Fridler

功能基本上和HttpWatch一致,针对.net平台,好处是免费的