Development Tools
Introduction
Even Chris created his article of Useful Reference Books ages ago I just bumped into it, and after adding my bit I thought to do something similar in the field of development tools.
So feel free and add tools you found useful in your career - and check back to see what others are using.
No spam, no advertising, no commercial stuff. Feel free to add closed-source Tools, as long as they are available for free.
Contents
- Code Editors
- IDEs
- Web Servers
- Version Control
- Real Time Application Info
- .Net (Sub) Frameworks
- JavaScript Frameworks
- Diff / Merge
- Regular Expressions
- Diagramming Tools
- Documenting
- Testing
- Online Playgrounds
- LINQ Tools
- Front-end Frameworks
- Disassemblers / decompilers / inspectors
- XAML / WPF
- SQL databases
- NOSQL databases
- Database related tools
- Continuous build process / Build tools
- Diagnostics
- Continuous Integration
Code Editors
Integrated Development Environment (IDE)
- Eclipse Primarily for Java
- NetBeans Primarily for Java. Can also be used for PHP, C/C++, and HTML5
- Android Developer Tools, Windows 64bit
- Android Developer Tools, Windows 32bit
- Android Developer Tools, Mac OS 64bit
- Android Developer Tools, Linux 64bit
- Visual Studio for .NET Desktop/Web/Mobile Development
- EmEditor
- SharpDevelop
- MonoDevelop
- Android Studio
- Bluefish Editor
Web Servers
Version Control
Real Time Application Info
.NET (Sub) Frameworks
JavaScript Frameworks
- jQuery
- AngularJS
- knockoutJS
- three.js (library for creating 3D graphics)
Diff/Merge
- Araxis Merge
- Beyond Compare
- Wimerge
- DiffUtils(useful for scripting diff; combine with this script to get HTML output)
Regular Expressions
Diagramming Tools
Documenting
Testing
Online Playgrounds
LINQ Tools
Front-end Frameworks
Disassemblers / decompilers / inspectors
XAML / WPF
SQL databases
- MariaDB
- MySQL
- Firebird
- PostgreSQL
- SQL Server Express Edition
- Oracle Database Express Edition 11g Release 2
NOSQL databases
General
Document store
Database related tools
- Toad for SQL Server Freeware
- Toad for Oracle Freeware
- Toad for MySQL Freeware
- Toad for Sybase Freeware
- More Toad...
- Oracle SQL Developer
- Oracle SQL Developer Data Modeler
- SQLTools for Oracle
Continuous build process / Build tools
Diagnostics
Continuous Integration
Development Tools的更多相关文章
- 翻译:常见问题——ABAP Development Tools for Eclipse
ABAP Development Tools for Eclipse(简称ADT)是一个基于Eclipse的全新ABAP IDE,这篇文档试图回答有关ADT的最重要的常见问题.这只是一个开始,如果你对 ...
- android 安装 出现Android Native Development Tools不能安装
Software being installed: Android Native Development Tools 20.0.0.v201206242043-391819 (com.android. ...
- How To Install Development Tools In Linux
In this brief tutorial, we will be discussing how to install development tools in popular Linux di ...
- Android development tools line_endings hacking
/******************************************************************** * Android development tools li ...
- Linux之一次性安装开发工具:yum groupinstall Development tools
[spark@sparksinglenode ~]$ yum grouplist | moreLoaded plugins: fastestmirror, refresh-packagekit, se ...
- Lua Development Tools (LDT)
http://www.eclipse.org/ldt/ Lua Development Tools (LDT) is about providing Lua developers with an ID ...
- yum groupinstall "Development Tools" 批量安装软件
注:可以通过 yum grouplist 来查看可能批量安装哪些列表 从Windows转到Linux下面,一个不习惯的地方就是在图形界面下安装和删除软件的时候非常缓慢.但是如果你掌握了用yum的命令行 ...
- Chrome development tools学习笔记(5)
调试JavaScript 随着如今JavaScript应用的越来越广泛,在面对前端工作的时候,开发人员须要强大的调试工具来高速有效地解决这个问题.我们文章的主角,Chrome DevTools就提供了 ...
- ADT Android Development Tools
ADT(Android Development Tools)在Eclipse编译IDE环境中,需安装ADT(Android Developer Tools)Plug-in,这是Android在Ecli ...
随机推荐
- iOS-一个弹出菜单动画视图开源项目分享
相似于Tumblr公布button的弹出视图 使用非常easy: 初始化: @property (nonatomic, strong) XWMenuPopView *myMenuPopView; - ...
- oracle trim函数用法详解
在oracle数据库中,trim一般都是用在删除字符串两边的空格.实际上,trim也可以用来删除字符串两边的指定字符.并且trim指定删除的字符串只能是单个字符Oracle TRIM函数是很常见的函数 ...
- Fluent UDF【2】:学习途径
要怎样做才能做到无畏惧编写任何UDF程序?估计很多与UDF打交道的人都会问到这个问题. 面对UDF文档中那众多的宏描述,小伙伴们是不是感觉到茫然无措,不知从何入手.有时候读别人写好的程序感觉并不难,然 ...
- java park unpark
https://blogs.oracle.com/dave/a-race-in-locksupport-park-arising-from-weak-memory-models https://blo ...
- 非常详尽的 Shiro 架构解析
Shiro是什么? Apache Shiro是一个强大而灵活的开源安全框架,它干净利落地处理身份认证,授权,企业会话管理和加密. Apache Shiro的首要目标是易于使用和理解.安全有时候是很复杂 ...
- 采用Oracle的dbms_obfuscation_toolkit的加密
create or replace function MD5 (vpassword in varchar2) return varchar2 is retval varchar2(32); begin ...
- 灾备系统的评判指标:RTO、RPO
RTO(RecoveryTime Object)是指灾难发生后,从IT系统崩溃导致业务停顿之刻开始,到IT系统恢复至可以支持各部门运作,业务恢复运营之时,此两点之间的时间段称为RTO. RPO(Rec ...
- Linux系统/boot目录破损无法启动怎么办
linux系统中的/boot目录存放着系统开机所需要的各种文件,其中包含内核.开机菜单及所需配置文件等等.但是当不小心删除了/boot目录里的某些文件或者干脆整个/boot目录都不见了的情况下,该如何 ...
- vue中$router和$route的区别
$router是VueRouter的实例,在script标签中想要导航到不同的URL,使用$router.push方法. 返回上一个历史history用$router.to(-1) $route为当前 ...
- SQL 迭代查询语句
SQL迭代查询 PL/SQL with ORG_Tree(ObjectId,parentID) as ( select a.ObjectId,a.parentID from Ot_Organizati ...