js_csscalendar/calendar-win2k-1.csscan_load_calendar_js-->
jscalendar/calendar.jscan_load_calendar_js-->
jscalendar/lang/calendar-en.jscan_load_calend...
分类:
其他好文 时间:
2014-05-08 13:26:29
阅读次数:
258
1. What is the LDA?LDA(latent dilichlet allocation)
is a method to assign the topic (distribution) of a given document. However,
note that this model ...
分类:
其他好文 时间:
2014-05-08 13:16:49
阅读次数:
289
#import @interface Car : NSObject{ @public int
speed; int wheels;}// oc方法必须是-开头// oc方法中所有的数据类型必须得用括号括起来//
oc方法中的()就是用来扩住数据类型的-(void)run;@end@implement...
分类:
其他好文 时间:
2014-05-08 12:25:41
阅读次数:
267
1、创建用户并指定表空间create user gy_3004 identified by
gy_3004 default tablespace gy_3004_data temporary tablespace gy_3004_temp;
2、给用户授予权限--方式一: GRANT CREA...
分类:
数据库 时间:
2014-05-08 12:18:54
阅读次数:
412
#import typedef enum { SexMan, SexWoman}
Sex;@interface Person : NSObject{ /* 成员变量名前用下划线有3个用处
1>方便程序员之间的交流,一看到下划线就知道这个事成员变量 2>为了与getter方法中的方法名区分开 3>不与...
分类:
其他好文 时间:
2014-05-08 11:43:57
阅读次数:
301
-- Create table
create table TECHNOLOGYCOMPANY
(
ID VARCHAR2(32) default SYS_GUID() not null,
FLOWID VARCHAR2(50),
CONPANYID NUMBER,
ISCOMMUNICATION VARCHAR2(10)
)
...
分类:
数据库 时间:
2014-05-07 23:18:29
阅读次数:
455
因为公司网页需要顶部的设置首页的收藏需要更新,因为浏览器更新之后,一些js就不能用了只能兼容ie和火狐收藏:火狐:window.sidebar.addPanel(sTitle,sURL,"");这个不能用了但是发现在a标签添加rel="sidebar"也是可以添加收藏的,title为收藏的名字所以:functionaddFavorite(..
分类:
Web程序 时间:
2014-05-07 22:00:54
阅读次数:
484
gsettings reset org.gnome.desktop.wm.preferences
theme默认gnomegsettings set org.gnome.desktop.interface clock-show-date
true顶部面板显示日期gsettings set org.g...
分类:
其他好文 时间:
2014-05-07 21:06:13
阅读次数:
401
序言如果我们在 Objective C
中向一个对象发送它无法处理的消息,会出现什么情况呢?根据前文《深入浅出Cocoa之消息》的介绍,我们知道发送消息是通过 objc_send(id, SEL,
...) 来实现的,它会首先在对象的类对象的 cache,method list 以及父类对象的 ca...
分类:
其他好文 时间:
2014-05-07 14:53:24
阅读次数:
562
第一步:
定义接口:
public interface ICommonDao {
List findCollectionByConditionNoPage(String codition,Object[] params, Map orderby);
}
第二步:
实现接口的类:
Class entityClass = TUtils.getTClass...
分类:
其他好文 时间:
2014-05-07 12:22:08
阅读次数:
277