上一页 1 ··· 38 39 40 41 42 43 44 45 46 ··· 54 下一页
摘要: JQuery AutoComplete插件在IE9下会因为bgiframe的问题出错解决方法:引入新的bgiframejquery.bgiframe-2.1.2.js:/*!Copyright(c)2010BrandonAaron(http://brandonaaron.net)*LicensedundertheMITLicense(LICENSE.txt).**Version2.1.2*/(function($){$.fn.bgiframe=($.browser.msie&&/msie6\.0/i.test(navigator.userAgent)?function(s){s 阅读全文
posted @ 2012-04-27 10:40 Master HaKu 阅读(3088) 评论(1) 推荐(0) 编辑
摘要: 众所周知, ASP.NET的System.Web命名空间下的缓存可以用来保存一段时间的数据因此, 在项目中我们可能利用它来保存一些缓存数据.因此, 很多人写了这样的工具类来保存和加载缓存保存缓存:publicstaticvoidSetCache(stringCacheKey,objectobjObject){System.Web.Caching.CacheobjCache=HttpRuntime.Cache;objCache.Insert(key,objObject);}publicstaticvoidSetCache(stringCacheKey,objectobjObject,DateT. 阅读全文
posted @ 2012-04-27 10:37 Master HaKu 阅读(302) 评论(0) 推荐(0) 编辑
摘要: 1. Register as a developer athttps://developer.apple.com/devcenter/ios/index.action2. Install XCode Launch Xcode from the Developer/Applications folder.On the right side of the display are the templates within the category, with adescription of the currently highlighted template. For this tutorial,. 阅读全文
posted @ 2012-04-26 10:04 Master HaKu 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 子查询分为独立子查询和相关子查询什么时候该利用子查询,我们可以先来看下面几个实际的例子。我们以Northwind数据库为例1. 返回在每月最后实际订单日期发生的订单(独立子查询) 思路:由于每个月最后实际订单最后一天是唯一的,所以我们 可以利用内层查询分组来实现。SELECTOrderID,CustomerID,EmployeeID,OrderDate,RequiredDateFROMdbo.OrdersWHEREOrderDateIN(SELECTMAX(OrderDate)FROMdbo.OrdersGROUPBYEmployeeID)2. 为每个员工返回具有最大OrderDate的订单( 阅读全文
posted @ 2012-04-10 09:39 Master HaKu 阅读(336) 评论(0) 推荐(0) 编辑
摘要: Ruby是脚本语言,与传统的C, Java不同的是,它不需要经过编译,而是直接可以被执行Ubuntu下执行第一个ruby脚本print("Hello David, This is your first Ruby script.\n")david@ubuntu:~/RubyTrain/Basic$ ruby Hello.rb运行结果:Hello David, This is your first Ruby script. 阅读全文
posted @ 2012-04-05 09:27 Master HaKu 阅读(136) 评论(0) 推荐(0) 编辑
摘要: Decorator Pattern: Attach additional responsibilities to an object dynamically. Decorators provide a flexible alternative to subclassing for extending functionality.什么是装饰模式? 装饰模式被用来应对类型在继承过程中快速膨胀的情况,而导致膨胀的原因往往是我们需要为类型增加新的职责(功能)现实生活中的例子: 手机从一开始的只能打电话,收发短信,到后来的听MP3, GPS, 拍照,智能化功能等等装饰模式的目的: 动态为对象增加新的职责 阅读全文
posted @ 2012-04-01 09:13 Master HaKu 阅读(191) 评论(0) 推荐(0) 编辑
摘要: A DI CONTAINER is a software library that can automate many of the tasks involved incomposing objects and managing their lifetimes. Although it’s possible to write all therequired infrastructure code with POOR MAN’S DI, it doesn’t add much value to anapplication. On the other hand, the task of compo 阅读全文
posted @ 2012-03-31 09:05 Master HaKu 阅读(1270) 评论(0) 推荐(0) 编辑
摘要: 1. 背景知识由google公司研发的google文件系统和MapReduce变成模型在处理海量数据方面引起了业界的反响。Hadoop是实现了MapReduce编程模型的开源系统。Hadoop Java API主页:http://hadoop.apache.org/2. 关系型数据库和MapReduce比较 阅读全文
posted @ 2012-03-28 16:04 Master HaKu 阅读(292) 评论(0) 推荐(0) 编辑
摘要: 1. Overview of AzureAzure is the name of Microsoft’s cloud services, which developers can use to deliver applications at scalefor various workloads and devices. Microsoft Azure provides a runtime framework for applications thatcurrently supports .NET 3.5 and .NET 4.0, as well as load balancers, oper 阅读全文
posted @ 2012-03-27 17:39 Master HaKu 阅读(177) 评论(0) 推荐(0) 编辑
摘要: 1. 官方下载2. 解压到指定目录可先解压到当前目录然后mv eclipse /opt(1)如果想把eclipse目录的更改为root拥有,可以执行下面的命令sudo chown -R root:root /opt/eclipse在/usr/bin目录下创建一个启动脚本eclipse(2)用下面的命令来创建:sudo gedit /usr/bin/eclipse然后在该文件中添加以下内容:#!/bin/sh export MOZILLA_FIVE_HOME=”/usr/lib/mozilla/” export ECLIPSE_HOME=”/opt/eclipse” $ECLIPSE_HOME/ 阅读全文
posted @ 2012-03-26 10:54 Master HaKu 阅读(1973) 评论(1) 推荐(0) 编辑
上一页 1 ··· 38 39 40 41 42 43 44 45 46 ··· 54 下一页