- 博客(63)
- 资源 (8)
- 收藏
- 关注
原创 Slickflow 一款.NET、.NET CORE 跨平台支持多数据库的开源企业级工作流引擎介绍
前言:工作流系统通常是作为中间组件嵌入到企业业务系统应用中去,作为业务流程构造和重整的重要工具,工作流系统的实现主要要考虑以下几点要素:1. 工作流模型要符合一些标准化模型的定义;2. 工作流管理系统的功能是否能够满足特定应用的需求,而同时不阻碍业务应用的整体性;3. 工作流技术是否跟SOA技术融合,可以作为服务总线的方式供外部调用。Slickflow 在开发工作流系统期间,选取BPMN模型作...
2013-04-23 12:17:47 8262 4
原创 Web用户的身份验证及WebApi权限验证流程的设计和实现
前言:Web 用户的身份验证,及页面操作权限验证是B/S系统的基础功能,一个功能复杂的业务应用系统,通过角色授权来控制用户访问,本文通过Form认证,Mvc的Controller基类及Action的权限验证来实现Web系统登录,Mvc前端权限校验以及WebApi服务端的访问校验功能。1. Web Form认证介绍Web应用的访问方式因为是基于浏览器的Http地址请求,所以需要验证用
2013-01-18 13:19:08 53618 19
原创 MVC WebAPI 三层分布式框架开发
前言:SOA(面向服务的架构)是目前企业应用开发过程中普遍采用的技术,基于MVC WebAPI三层分布式框架开发,以此适用于企业信息系统的业务处理,是本文论述的重点。此外,插件技术的应用,富客户端JQuery实现技术,本文也对其具体实现做以说明。相关示例解决方案可以参考GitHub资源,在文章结尾给出。1. 系统分层体系架构设计分布式三层系统简单分为数据访问层,业务逻辑层和
2013-01-09 17:56:58 40041 22
转载 SlickGrid 样式在 JQueryUI Accordion 和 Bootstrap框架的兼容性解决办法
SlickGrid with jQueryUI and Bootstrap原文地址:http://low-bandwidth.blogspot.com.au/2015/06/slickgrid-with-jqueryui-and-bootstrap.htmlRecently I've taken up the mantle of maintaining an
2015-10-24 11:25:21 2120
转载 SlickGrid 编辑器编写指引
一篇不错的文章,编写SlickGrid的编辑器可以参考,思路更加清楚。原文地址:http://onmylemon.co.uk/2014/06/writing-an-editor-for-slickgrid/Writing an Editor for SlickGridSlickGrid is a data grid used to display
2015-06-05 18:01:07 1683
原创 T-SQL 递归查询示例
1. 数据库表创建-- Create an Employee table.CREATE TABLE dbo.MyEmployees( EmployeeID smallint NOT NULL, FirstName nvarchar(30) NOT NULL, LastName nvarchar(40) NOT NULL, Title nvarchar(50) NOT NUL
2014-11-05 11:29:14 1027
转载 SQL 递归查询语句
How to use recursive CTE calls in T-SQLA common table expression (CTE) in T-SQL is used by many to get around the internal referencing problem inderived tables. It also gives you a bet
2014-11-04 11:48:05 813
转载 Using CORS
IntroductionAPIs are the threads that let you stitch together a rich web experience. But this experience has a hard time translating to the browser, where the options for cross-domain requests are
2014-06-16 15:24:51 1015
转载 C# TraceListener 跟踪监听实用示例
Create a Logger using the Trace Listener in C#by DAVEin FILES AND DIRECTORIES, TUTORIALSWhen writing software for the commercial world it is crucial your application can log errors
2014-05-24 17:17:53 3701
转载 Ubuntu14.04 安装 MonoDevelop 指南
前言:已经验证了cHow to install the latest MonoDevelop on Linux16 RepliesThis tutorial is mostly outdated! Please see the current blog roll and the installation page for further installati
2014-04-26 08:36:54 4751
原创 WebApi 的 HttpGet 和 HttpPost 传递多个参数对象的Json和Dynamic方法
在stackoverflow 上有的,是我的原创文章:
2014-04-17 19:53:30 20357 3
转载 AngularJS 的select 控件的ng-options的使用示例
Using ngOptions In AngularJSWednesday, June 19, 201310 commentsTweetThe ngOptions directive in AngularJS allows you to build and bind an HTML select element with options to a
2014-03-28 11:35:14 6867
转载 Intellij IDEA 调试Hadoop 源码
Debug Hadoop source code using an IDE(Intellij Idea)原文链接:http://www.techbite.in/2013/05/debug-hadoop-source-code-using.htmlThis is my 100th blog post ;-)If you are someone who want
2014-01-16 14:46:20 6860
转载 Java 编程读写 Hadoop Sequence 类型文件
Reading & Writing Hadoop Sequence Files in Java原文链接:http://noushinb.blogspot.jp/2013/04/reading-writing-hadoop-sequence-files.htmlIn this blog I'll show you how to write a simple h
2014-01-16 14:16:20 1936
转载 Hadoop 安装指南: Ubuntu12.04 系统
source:http://askubuntu.com/questions/144433/how-to-install-hadoopHow to install Hadoop?up vote6down votefavorite3I am trying to install Hadoo
2013-12-20 10:10:02 1359
转载 MVC 的ViewBag, ViewData and TempData使用与区别
ViewBag, ViewData and TempData原文:http://stackoverflow.com/questions/7993263/viewbag-viewdata-and-tempdataup vote58down votefavorite37Could any body expl
2013-11-14 20:40:33 2266
转载 Flot tutorial: Javascript 脚本创建简单图形报表示例
source: http://2toria.com/2012/10/09/flot-tutorial-creating-a-simple-bar-chart/I thought I’d take a slightly different direction re charting and data visualisation today and offer up a quick
2013-10-05 14:11:05 1073
转载 HTML DOM元素的事件的Bubbling 和 Capturing
Bubbling and capturingIlya KantorBubblingthis and event.targetStopping the bubblingCapturingSummaryDOM elements can be nested inside each other. And somehow, the handler of the par
2013-09-03 08:41:35 2015
原创 SlickGrid 插件开发(4) :页脚合计功能实现
前言:在数据处理的Grid控件中,对某一列的数值需要求和统计;业务人员或者财务人员对数据求和比较看重,在SlickGrid的功能实现中,页脚统计作为插件技术来实现。特意对实现过程做以总结说明:1. 初始化方法 function init() { grid.onScroll.subscribe(function (e, args) {
2013-08-13 19:16:18 2391
原创 SignalR 实时通知消息并行推送和批量存储实现
前言:SiganlR是基于.NET平台的实时消息通讯框架,有人称之为.NET平台的.NodeJS;可用于Web页面聊天,消息推送等功能实现。本文摘取部分代码,利用.NET平台的Parallel功能实现通知消息的并行推送和存储。1. 接收通知消息的Api接口:MVC 控制器代码:[HttpPost][AllowAnonymous]public void Notify(Mess
2013-07-15 11:11:30 4947 7
原创 SlickGrid 插件开发(3):Dropdownlist 下拉框控件开发
前言:用户在Grid里面的操作是一种富客户端的应用,下拉框编辑功能必不可少,目前已经整理出单元格嵌入方式的下拉框,只读下拉框列和可编辑的下拉框插件。在此把大致的开发过程总以总结说明,以飨读者。 1. DropdownList Editor -- 嵌入单元格1). 绑定外部数据源和Changed事件 var dataSouce = args.grid.$selDro
2013-07-09 14:29:01 3241 2
原创 JQury 实用代码(需不断更新)
JQuery 代码1 map 方法¶根据数组中的元素,嵌入构造方法,返回新数组function getSelectedDataItems() { if (!selectionModel) { throw "Selection model is not set"; } var items; if (data.getItem
2013-07-04 13:46:17 1200
原创 工作流是什么样的产品?
在企业里面,因为有组织机构的存在,有些事务的办理需要有一套流程,各部门人员协同工作时,需要共同遵守流程规则;依此进行流程的发起、流转和结束。工作流存在的目的就是解决任务办理时的资源分配、流转路径选择和表单数据权限处理。特意总结了工作流的3个基本职责,可以说明如下:1. 应对业务规则的变化比如常见的员工请假流程:如果低于3天提交部门经理,如果多于3天以上,提交总经理审批。这就是一种流程。
2013-07-02 11:00:27 1014
原创 SlickGrid 插件开发(2):单元格合并功能实现
在SlickGrid官方示例中,给出了同一行单元格合并的示例,主要是使用了colspan的方法,但是对于同一列的不同行的单元格合并,却没有好的实现方法;然而这个功能一般在做数据处理时,又是必须需要的,经过对slickgrid的dataview的功能分析,用formatter加载渲染的方式实现了同一列单元格合并的功能插件,具体使用介绍如下:1) 列定义引用formatter添加了Ve
2013-06-22 11:42:29 2857 2
原创 JQuery UI Dialog 参数传递及事件交互技术
JQuery UI Dialog 是主页面和子页面交互的常用控件,经常碰到的问题是:参数传递,事件交互和页面元素的清除回收。本文使用MVC4,JQuery,Html开发做以示例。1. Dialog打开的代码示例如下:var chatDialog = $("#divChatDialog").load("../im/ChatDialog", function () { va
2013-06-11 19:51:28 12014
转载 数据库 GUID vs INT 作为主键的性能辨析
GUID vs INT Debatehttp://blogs.msdn.com/b/sqlserverfaq/archive/2010/05/27/guid-vs-int-debate.aspxAmruthaVarshiniJ 27 May 2010 4:37 AM 3I recently read a blog post on what was b
2013-05-24 11:07:27 2099
转载 Node.Js + Socket.IO vs SignalR vs C# WebSocket Server
12down votefavorite5I currently have a TCP server application written in .Net that receives and submits messages to clients. I am looking at building a web application so need the
2013-05-21 14:36:52 4237
原创 SlickGrid 插件开发(1):插件功能总结
前言:在前篇文章中,总结了SlickGrid 的基本方法,SlickGrid其功能扩展主要靠插件技术;这也是体现出作者Melibman 架构设计的优秀之处。本文列出了Master版本提供的插件以外,另外特意列出了在项目中添加的新的插件,供SlickGrid的开发人员参考(目前会在分支版本中提供,并未合并到SlickGrid的主版本中去)。1. 基本插件列表插件名称
2013-05-11 14:14:42 12289 10
转载 What are Long-Polling, Websockets, Server-Sent Events (SSE) and Comet?
Ok, I have tried reading some articles, but I am not very clear on the concepts yet.Would someone like to take a shot at explaining me what these technologies are -Long PollingServer-Sent
2013-05-08 09:30:23 2292
原创 SlickGrid 基本方法篇
前言:SlickGrid 是一个Javascript编写的数据控件,其采用数据虚拟显示的特性备受后来的Grid推崇,如ExtJS DataGrid,其架构设计优秀,UI交互功能非常丰富,插件化的可扩展功能开发非常值得Web开发人员学习,本文列出基本方法的使用,供开发人员参考;并在后文继续总结列出已经开发出的插件,以供开发人员参考。0. SlickGrid 基本样式示例功能包括:
2013-05-07 11:26:54 16724 3
原创 项目管理工具Redmine介绍和推荐安装
摘要:软件开发过程,项目管理工具是必不可少,Redmine作为一款经典的项目管理工具值得推荐。1. 基本介绍 Redmine是用Ruby开发的基于web的项目管理软件,是用ROR框架开发的一套跨平台项目管理系统,据说是源于Basecamp的ror版而来,支持多种数据库,有不少自己独特的功能,例如提供wiki、新闻台等,还可以集成其他版本管理系统和BUG跟踪系统,例如S
2013-02-20 15:22:01 2890
转载 A Really Simple jQuery Plugin Tutorial
http://www.queness.com/post/112/a-really-simple-jquery-plugin-tutorial1. IntroductionCreating a jQuery Plugin is an advanced topic for a jQuery beginner. This month, I have been playing with jQu
2012-11-28 10:50:01 1254
转载 How To Develop a jQuery Plugin
How To Develop a jQuery PluginBy Craig Buckler | July 22, 2009 | JavaScripthttp://www.sitepoint.com/how-to-develop-a-jquery-plugin/14jQuery is the most popular JavaScript lib
2012-11-28 10:39:21 949
转载 Tutorial: Creating a jQuery plugin
Learn how to create a jQuery plugin from scratch – the basics, options, compatibility and examples.http://devheart.org/articles/tutorial-creating-a-jquery-plugin/The BasicsA plugin i
2012-11-28 10:31:25 828
转载 Design Patterns For Object-Oriented JavaScript
Design Patterns For Object-Oriented JavaScriptI completed a refactoring for our ERP’s JavaScript codes which was developed previously in functional way. Our target was to convert functiona
2012-11-26 15:35:27 950
转载 Web Application UI(四):Web-based Master-Detail Grid Form Design
Web-based Master-Detail Grid Form DesignMaster-detail forms are a special kind of forms that join some tables into one page view. In this way, it is possible to see and edit some related rec
2012-11-26 15:32:03 1501
转载 Web Application UI(三):Web Application Input Form: Design Guidelines
Web Application Input Form: Design GuidelinesBefore designing our UI components, we investigated many examples. We researched the samples of many UI design books for a better input form desi
2012-11-26 15:25:21 831
转载 Web Application UI(二):Web Tab Component: Mapping Database Tables Into UI Tabs
Web Tab Component: Mapping Database Tables Into UI TabsIn this second installment of UI posts, I will show the “Tab Component” of our UI library. Tab components are very important part of ri
2012-11-26 15:24:21 701
转载 Web Application UI(一):Web List Component: Beyond Simple HTML Table
Web List Component: Beyond Simple HTML TableToday, I am going to share the list component we use in our ERP applications. Web applications UI is a very important topic for web developers. UI
2012-11-26 14:58:16 1107
byteofpython_120.pdf
2009-01-01
C++ Threading
2008-12-04
c++ interview question 2
2008-12-04
C++ interview questions
2008-12-04
深入理解计算机系统(Computer Systems A Programmer’s Perspective.pdf)英文版
2008-11-09
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人