You can use the GoldenGate Logdump utility to view records in the GoldenGate trail files. The Logdump
utility is part of the regular GoldenGate software installation. Logdump lets you view the unstru...
分类:
其他好文 时间:
2014-09-23 13:35:54
阅读次数:
362
写一个Python版本的小工具,可以在上班的时候刷一下你关注的股票信息,代码如下:
#!/usr/bin/env python
# -*- coding:utf-8 -*-
import urllib.request
#debug=True
debug=False
class Utility:
def ToGB(str):
if(debug): print(str)...
分类:
编程语言 时间:
2014-09-23 13:29:34
阅读次数:
275
这段时间在学习Require.js和Backbone.js的过程中,发现有些项目里的HTML代码都是写在View的js代码里面的,渲染的时候需要对Collection进行循环,再将HTML代码拼接上去,这似乎不是一件非常好的事情,因为将js代码和html代码融合到一起会增加代码的维护难度,而且这个过...
分类:
Web程序 时间:
2014-09-21 00:53:29
阅读次数:
366
android源码下载及安装:1.初始化安装环境:A。建立大小写敏感硬盘镜像:步骤如下:Disk Utility –> New Image,随便取个名字,这里用AndroidDisk,30GB足够了,然后注意选成Mac OS Extended (Case-sensitive, Journaled),...
分类:
移动开发 时间:
2014-09-20 03:33:26
阅读次数:
194
A utility class is a class filled with static methods. It is usually used to isolate a "useful" algorithm. However, in an object-oriented world, utility classes are considered a very bad practice.
The use of utility classes to be an antipattern. More speci...
分类:
其他好文 时间:
2014-09-18 18:55:54
阅读次数:
237
// Create a safe reference to the Underscore object for use below. // 为Underscore对象创建一个安全的引用 // _为一个函数对象,它的实例服从单例模式。 var _ = function(obj) { i...
分类:
Web程序 时间:
2014-09-15 15:49:29
阅读次数:
248
今天我们来全面介绍 JavaScript 中 数组的高级使用,与EcmaScript5 Array API 实战。
利用这些新的API 和 技巧,将提高你的开发效率 和 代码的水平。
理解这些原生的API是 非常有必要的,假以时日,我们也可以写出 underscore 。。。这样的工具库来。
Come on Baby!
先看一下 Array.prototype 的全家福。
...
分类:
编程语言 时间:
2014-09-13 14:41:55
阅读次数:
181
using System;using System.Data;using System.Text;using System.Data.SqlClient;using EXDataControl;using Utility;namespace BasicInformation{ /// /// 类p....
分类:
其他好文 时间:
2014-09-13 10:31:25
阅读次数:
254
wsdl文档分析 <?xml?version="1.0"?encoding="UTF-8"?>
<definitions
xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"
xmlns:wsp="http://www.w3.org/ns/...
分类:
其他好文 时间:
2014-09-11 21:03:53
阅读次数:
233
节点间的时间同步对于Oracle来说是非常重要的,在11g版本之前往往通过搭建NTP服务器完成时间同步。在Oracle11g中新增加了一个CTSS(ClusterTimeSynchronizationServices,集群时间同步服务)服务,用来完成集群节点间时间同步。在安装GridInfrastructure过程中,如果没有发现节..
分类:
数据库 时间:
2014-09-10 02:55:00
阅读次数:
238