Code generation(代码自动生成)

Compilation(编译工具)

Obfuscation(混淆加密)

Decompilation(反编译)

Object Browsing(对象浏览)

Refactoring(重构工具)

Regex Test(正则表达式调试)

Persistence and data-related code generation(数据持久层及数据相关的代码生成)

RAD Tools - Application Development Automation(快速开发工具)

Model Driven Architecture(模型驱动架构

Modeling - UML (建模)

IDEs (开发环境)

Builds (

Testing (测试/单元测试)

Code validation - Standard verifiers (代码校验)

Profiling - Monitoring - Performance Testing - Optimization (性能测试、检测、优化)

Documentation - Code commenting (文档自动生成)

Frameworks (应用程序框架)

MVC (模型视图控制)

AOP(面向方面编程)

Code versioning - Source control (代码版本控制、配置管理工具)

Localization(软件程序本地化工具)

Reporting(报表工具)

Page templating(页面模版引擎)

Scripting(缩主脚本/脚本引擎)

Installation(安装制作)

Others(其他工具)

.NetChajian的更多相关文章

随机推荐

  1. 篇三:MySQL分页

    分页:物理分页.逻辑分页 物理分页:SQL语句中直接使用limit 逻辑分页:先查询出所有满足条件的数据,然后在Java中截取需要的行 优缺点: 1.逻辑分页翻页速度快,第一次查询出来的数据会有缓存, ...

  2. 【URAL 1519】Formula 1

    http://acm.timus.ru/problem.aspx?space=1&num=1519 调了好久啊.参考(抄)的iwtwiioi的题解. 如果想要题解,题解在<基于连通性状态 ...

  3. Newtonsoft.Json 序列化和反序列化 时间格式【转】

    1.JSON序列化 string JsonStr= JsonConvert.SerializeObject(Entity); eg:   A a=new A(); a.Name="Elain ...

  4. Leetcode 259. 3Sum Smaller

    class Solution(object): def threeSumSmaller(self, nums, target): """ :type nums: List ...

  5. win10 右键菜单添加Git Hash Here

    1.通过在"运行"中输入'regedit',打开注册表. 2.找到[HKEY_CLASSES_ROOT\Directory\Background]. 3.在[Background] ...

  6. NOIp2016 游记

    DAY -2 不要问我为什么现在就开了一篇博客. 本来想起个NOIp2016爆零记或者NOIp2016退役记之类的,但是感觉现在不能乱立flag了.所以就叫游记算了. 前几场模拟赛崩了一场又一场,RP ...

  7. [01] cocos2d-x开发环境搭建

    cocos2d-x 是跨平台的游戏开发引擎,支持的平台有 ios , android , windows phone , web , tizen,windows等. 先来搭建开发环境,一般我们开发游戏 ...

  8. 基于MQTT协议进行应用开发

    官方协议有句如下的话来形容MQTT的设计思想: "It is designed for connections with remote locations where a "sma ...

  9. SQL创建流水号

    创建流水号表 CREATE TABLE SystemSerialNo ( SerialNoId INT PRIMARY KEY IDENTITY, TableName VARCHAR(60), Pre ...

  10. 一个简单实用的css loading图标

    摘要 在web开发中,为了提高用户体验,在加载数据的时候都会给一个loading的提示. Html <!DOCTYPE html> <html xmlns="http:// ...