首页 > 其他
magento 为用户注册增加一个字段(转)
步骤 I. 加一个occupation/title字段到用户注册页,差不多在register.html的54行,在email下方加一个Occupation显示代码代码:__('Email Address') ?> *htmlEscape($this->getFormData()->getEmail(...
分类:其他   时间:2015-09-12 19:02:48    收藏:0  评论:0  赞:0  阅读:427
dtrace 相关资料
Here are some DTrace information sources:* [Oracle Wiki](https://wikis.oracle.com/display/DTrace/DTrace)* [DTrace at SolarisInternals wiki](http://www...
分类:其他   时间:2015-09-12 19:02:38    收藏:0  评论:0  赞:0  阅读:386
Git Ignore 的使用
http://www.barretlee.com/blog/2015/09/06/set-gitignore-after-add-file/需要注意的**:如果一个 pattern 以**开头,如**/foo,最后会匹配所有文件夹下的 foo 文件(夹);如果一个 pattern 以/**开头,如a...
分类:其他   时间:2015-09-12 19:01:58    收藏:0  评论:0  赞:0  阅读:173
ecshop ectouch去掉收货人信息界面邮箱
参考ecshop开发中心1、mobile/include/lib_order.php 去掉函数check_consignee_info “!empty($consignee['email']) &&”这句。2、mobile/data/static/js/shopping_flow.js 函数chec...
分类:其他   时间:2015-09-12 19:01:38    收藏:0  评论:0  赞:1  阅读:1305
LPC43xx SGPIO Camera interface design
AN11196: Camera interface design using SGPIO
分类:其他   时间:2015-09-12 19:01:28    收藏:0  评论:0  赞:0  阅读:219
Struts2.0 跳转类型详解
参考:http://jstree.iteye.com/blog/1464043dispatcher 为默认跳转类型,用于返回一个视图资源(如:jsp)Xml代码 :/main.jsp/main.jsp以上写法使用了两个默认,其完整的写法为: /maini.jsp用于页面转发,页面跳转过程一直是同一个...
分类:其他   时间:2015-09-12 19:01:08    收藏:0  评论:0  赞:0  阅读:144
[LeetCode] Word Break
Given a stringsand a dictionary of wordsdict, determine ifscan be segmented into a space-separated sequence of one or more dictionary words.For exampl...
分类:其他   时间:2015-09-12 19:00:58    收藏:0  评论:0  赞:0  阅读:239
编译器的工作过程和原理
2015-09-12 18:17PM 周六家里
分类:其他   时间:2015-09-12 19:00:48    收藏:0  评论:0  赞:0  阅读:242
Codeforces 10C Digital Root 法冠军
主题链接:点击打开链接#include#include#include#include#include#include#include#include#include#includeusing namespace std;#define N 1000005#define ll __int64ll n...
分类:其他   时间:2015-09-12 19:00:38    收藏:0  评论:0  赞:0  阅读:182
Uva(10129)+Uva(10054)
这两道题都是和欧拉图的判定有关,一个是有向图,一个是无向图的欧拉图的判定还有一个是有向图= =先看10129。。。我们把单词的首字母看做是入度,最后一个字符看做是初度,那么这道题就变成图中是否存在欧拉回路。判断有向图的条件是该图是连通图和最多最有两个点的出度不等于入度,其实那两个点就是起点和终点,而...
分类:其他   时间:2015-09-12 18:59:28    收藏:0  评论:0  赞:0  阅读:266
UISegmentedControl 开发笔记
// typedef NS_ENUM(NSInteger, UISegmentedControlStyle) { // UISegmentedControlStylePlain, // large plain // UISegmentedControlStyleBordered,...
分类:其他   时间:2015-09-12 18:59:18    收藏:0  评论:0  赞:0  阅读:234
关于custom adapter 中调用getview()次数的问题
1. 影响getview()调用因素一般是ListView中layout_height的设置,如果将其属性设置为"wrap_content"。那么问题就来了,getview调用的次数会多增加几次。2. 那么getview调用多增加的次数是跟当前屏幕能够显示的view条数决定的,每页的view条数越多...
分类:其他   时间:2015-09-12 18:59:08    收藏:0  评论:0  赞:0  阅读:302
hdoj 2404 Permutation Recovery
Permutation RecoveryTime Limit: 10000/4000 MS (Java/Others)Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 456Accepted Submission(s): 31...
分类:其他   时间:2015-09-12 18:58:58    收藏:0  评论:0  赞:0  阅读:292
矩阵十点【两】 poj 1575 Tr A poj 3233 Matrix Power Series
poj 1575Tr A主题链接:http://acm.hdu.edu.cn/showproblem.php?pid=1575题目大意:A为一个方阵,则Tr A表示A的迹(就是主对角线上各项的和),现要求Tr(A^k)%9973。数据的第一行是一个T,表示有T组数据。每组数据的第一行有n(2 #in...
分类:其他   时间:2015-09-12 18:57:58    收藏:0  评论:0  赞:0  阅读:295
为Magento1.5新增会员注册字段(转)
第一步、新建一个模块,在app/etc/modules/目录下新建文件Shuishui_Customer.xml true community 第二步、新建这个模块的config配置文件,位置在app/code...
分类:其他   时间:2015-09-12 18:57:28    收藏:0  评论:0  赞:0  阅读:228
【LeetCode】223. Rectangle Area
题目:Find the total area covered by tworectilinearrectangles in a2Dplane.Each rectangle is defined by its bottom left corner and top right corner as sho...
分类:其他   时间:2015-09-12 18:57:18    收藏:0  评论:0  赞:0  阅读:240
查找包含某字段名的表名
select a.name as 表名from sysobjects aleft join syscolumns b on a.id=b.idwhere a.xtype='U' and b.name='字段名'--查找不包含指定字段的表名select a.name as 表名from sysobje...
分类:其他   时间:2015-09-12 18:56:58    收藏:0  评论:0  赞:0  阅读:242
SSIS的CheckPoint用法
在SSIS的Package Property中有CheckPoints的属性目录,CheckPoint是SSIS的Failover Feature。通过简单的配置CheckPoint,能够在Package执行失败时,不重复执行已经成功的Control Flow,只在最后出错点继续执行。一,Check...
分类:其他   时间:2015-09-12 18:56:38    收藏:0  评论:0  赞:0  阅读:157
OI模板——线段树(segment_tree)O(lg n)
咱家越来越懒了,连解释都懒得去写了,主要思想就是把一个区间当作一个线段,然后不断的递归二分最后成为各个点,关键在于lazy_tag,当你正在处理的区间完全在目标操作区间时就可以用lazy来处理,不再递归下去,思想是这样的,想要会的话呢,应该先去照着打两遍,边打边理解,然后就可以自己打啦#includ...
分类:其他   时间:2015-09-12 18:55:58    收藏:0  评论:0  赞:0  阅读:251
centOS设置zookeeper开机自动启动
在/etc/rc.local文件中追加:# java_homeexport JAVA_HOME=/opt/java/jdk1.7.0_75# zookeeper/home/cent2014/zookeeper/zookeeper-3.4.6/bin/zkServer.sh start以上即可开机自动...
分类:其他   时间:2015-09-12 18:55:28    收藏:0  评论:0  赞:0  阅读:332
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!