首页 > 其他
magento登陆
magento判断用户登录Magento 登陆之后返回登录之前的页面magento 在登陆后一般会自动跳转到 My Account 页面但是经常会有需求 就是登陆自动跳转到 之前的页面里面工具/原料php+mysql+apache方法/步骤只要加代码Mage::getSingleton('custo...
分类:其他   时间:2015-09-06 22:49:25    收藏:0  评论:0  赞:0  阅读:1904
Dynamic-Link Library Redirection
Dynamic-Link Library RedirectionApplications can depend on a specific version of a shared DLL and start to fail if another application is installed wi...
分类:其他   时间:2015-09-06 22:49:05    收藏:0  评论:0  赞:0  阅读:392
Greedy:Huffman编码
上次我在http://www.cnblogs.com/Philip-Tell-Truth/p/4787067.html这里,稍微讲了一下一种很普通的贪婪的算法,其实这个算法一开始是用来做压缩程序的,就是最著名的Huffman压缩算法 那么这个算法是怎么样的呢,我们知道,我们的...
分类:其他   时间:2015-09-06 22:48:55    收藏:0  评论:0  赞:0  阅读:302
history
history 查看历史命令history -c 清除历史命令tab 补全命令!3 执行第三条历史命令cat /etc/profile 查看历史配置文件,当然也可以修改历史保存命令个数if [ "$EUID" = "0" ]; then pathmunge /sbin path...
分类:其他   时间:2015-09-06 22:48:45    收藏:0  评论:0  赞:0  阅读:290
分区表的数据删除
问题:堆表按天做了分区,表中只保留最近7天的数据。最近发现此表的数据空间明显比之前大,之前2G:现在6G,持续关注几天表中记录数保持平衡,但数据空间却在进一步增长。对应表所在的文件组也不停在自增长。分析:使用sys.dm_db_index_physical_stats查看表的碎片情况,发现在已删除记...
分类:其他   时间:2015-09-06 22:48:15    收藏:0  评论:0  赞:0  阅读:583
[leetcode 22]generate parentheses
1 题目:Givennpairs of parentheses, write a function to generate all combinations of well-formed parentheses.For example, givenn= 3, a solution set is:"(...
分类:其他   时间:2015-09-06 22:47:35    收藏:0  评论:0  赞:0  阅读:256
Push导航栏黑影问题
解决方法可以在自定义的TabbarViewController里viewDidLoad方法里self.view.backgroundColor = [UIColor whiteColor];如果没有自定义tabbarController的话可以这样self.navigationController....
分类:其他   时间:2015-09-06 22:47:25    收藏:0  评论:0  赞:0  阅读:273
UDT协议实现分析——UDT初始化和销毁
UDT协议是一个用于在告诉Internet上传输大量数据的基于UDP的可靠传输协议。 我们可以将UDT协议的实现看作一个比较复杂的状态机。更准确的说,是一个主状态机,外加多个子状态机。主状态机是指协议实现中全局唯一、...
分类:其他   时间:2015-09-06 21:44:45    收藏:0  评论:0  赞:0  阅读:486
Generating SSH keys
Generating SSH keys MAC WINDOWS LINUX ALL SSH keys are a way to identify trusted computers, without involving passwords. The steps below will walk you through generating an SSH key and adding the p...
分类:其他   时间:2015-09-06 21:44:26    收藏:0  评论:0  赞:0  阅读:300
如何在Xcode6之后新建我们熟悉的pch文件?
跟着下面的截图走就是了:
分类:其他   时间:2015-09-06 21:44:16    收藏:0  评论:0  赞:0  阅读:223
D瓜哥分享的架构资料
扯扯蛋 以前见过零零散散地介绍一些知名网站架构的分析文章。最近D瓜哥也想研究一下各大知名网站的架构。所以,就搜集了一下这方面资料。限于时间问题,这篇文章分享的文章并没有都看完,所以不保证所有文章的质量...
分类:其他   时间:2015-09-06 21:44:05    收藏:0  评论:0  赞:0  阅读:319
nginx image fitler 配置
set $fastdfs "0"; if ($args ~* "^wh=([\d]+)x([\d]+)") { set $wd $1; set $hd $2; set $fastdfs "01"; } if ($fastdfs = "01") { rewrite (.*) /rsz${wd}x${hd}/$1 last; } location ~* /rs...
分类:其他   时间:2015-09-06 21:43:56    收藏:0  评论:0  赞:0  阅读:306
开发中的[绝对路径]与[相对路径]
1.绝对路径:是指文件在硬盘上真正存在的路径,也即是从盘符开始的路径。如:E:\开发帮助文档\bootstrap-3.3.5绝对路径在开发中较少使用,因为网站发布的位置不固定,所以有可能是E盘,也有可能是D盘。如果用相对路径的话就不会出现问题。2.相对路径:就是相对于自己的目标文件位置,也即当前路径...
分类:其他   时间:2015-09-06 21:42:05    收藏:0  评论:0  赞:0  阅读:292
poj 2195 最小费用最大流模板
/*Source CodeProblem: 2195 User: HEU_daoguangMemory: 1172K Time: 94MSLanguage: G++ Result: AcceptedSource Code*/#include #include #include #include...
分类:其他   时间:2015-09-06 21:41:55    收藏:0  评论:0  赞:0  阅读:305
欧拉工程第67题:Maximum path sum II
By starting at the top of the triangle below and moving to adjacent numbers on the row below, the maximum total from top to bottom is 23. 37 42 4 68 5...
分类:其他   时间:2015-09-06 21:40:15    收藏:0  评论:0  赞:0  阅读:262
Scala 深入浅出实战经典 第77讲:模式匹配下的提取器动手构造实战
王家林亲授《DT大数据梦工厂》大数据实战视频 Scala 深入浅出实战经典(1-87讲)完整视频、PPT、代码下载:百度云盘:http://pan.baidu.com/s/1c0noOt6 腾讯微云:http://url.cn/TnGbdC 360云盘:http://yunpan.cn/cQ4c2U...
分类:其他   时间:2015-09-06 21:39:55    收藏:0  评论:0  赞:0  阅读:301
HDU 4747 Mex
MexTime Limit: 5000msMemory Limit: 65535KBThis problem will be judged onHDU. Original ID:474764-bit integer IO format:%I64d Java class name:MainMex is...
分类:其他   时间:2015-09-06 21:39:05    收藏:0  评论:0  赞:0  阅读:370
再看BP神经网络
权值BP网络中 w(1,1) 表示第 1 个输入矢量在输入层和隐含层中的权值。 w(1,2) 表示第 2 个输入矢量在输入层和隐含层中的权值。 ...w(1, j ) 表示第 j 个输入矢量在输入层和隐含层中的权值。 w(2,1) :第 1 个输入矢量在隐含层和输出层中的权...
分类:其他   时间:2015-09-06 21:38:45    收藏:0  评论:0  赞:0  阅读:282
Activity的launchMode详细分析
在研究了Activity的启动过程后,我觉得很有必要对Activity的launchMode进行分析一下,因为到目前为止,我发现网上对launchMode的讲解都是通过实例讲解,看完了总是似懂非懂的感觉,并没有根本上理解launchMode的原理。这里我会从源码的角度讲解launchMode。相信大...
分类:其他   时间:2015-09-06 21:38:15    收藏:0  评论:0  赞:0  阅读:201
Google Accounts,OpenID,OAuth
App Engine以与Google Accounts的集成为其特色。Google Accounts是被Google应用程序如:Google Mail、Google Docs、Google Calendar所使用的用户帐户系统。你可以使用Google Accounts作为你的应用的帐户系统,这样你就...
分类:其他   时间:2015-09-06 21:37:45    收藏:0  评论:0  赞:0  阅读:388
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!