首页 > 2014年05月30日 > 全部分享
【webapp的优化整理】要做移动前端优化的朋友进来看看吧
单页or多页本文仅代表个人观点,不足请见谅,欢迎赐教。webapp小钗从事单页相关的开发一年有余,期间无比的推崇webapp的网站模式,也整理了很多移动开发的知识点,但是现在回过头来看,webapp究竟是好还是不好真是一言难尽哟!webapp使用JavaScript修改页面;紧接着再从服务器传递更多...
分类:移动平台   时间:2014-05-30 14:41:15    收藏:0  评论:0  赞:0  阅读:477
Internet Explorer 浏览器在同一时刻只能从同一域名下载两个文件。
Internet Explorer 浏览器在同一时刻只能从同一域名下载两个文件。至于原因请见 MSDN Blogs:《Internet Explorer and Connection Limits》,如何解除限制请见微软客户帮助与支持主页:《如何将 Internet Explorer 配置为可以同时...
分类:Web开发   时间:2014-05-30 14:42:40    收藏:0  评论:0  赞:0  阅读:414
新买了ipad,在ipad上面看见的一个效果,pc上应该也见过,但是还是ipad上面有印象,如果是弹性运动就最好了
新买了ipad,在ipad上面看见的一个效果,pc上应该也见过,但是还是ipad上面有印象,如果是弹性运动就最好了无标题文档
分类:其他   时间:2014-05-30 14:43:57    收藏:0  评论:0  赞:0  阅读:333
C++虚函数示例
和Java不同,CDerive derive语句可以直接生成对象,不需要new关键字重载虚函数才可以用父类引用调用子类对象,重载普通函数没有效果#include#includeusing namespace std;class CBase{public : void fun() { ...
分类:编程语言   时间:2014-05-30 14:46:49    收藏:0  评论:0  赞:0  阅读:388
node.js中的exports和module.exports
不同的编程语言都有各自的代码组织和复用的方式,如.net、php中的命名空间,python中的import,ruby中的module等,来避免命名空间污染。一直都没搞清楚node中的exports和module.exports的区别,借此搞清楚node的代码模块复用方式。首先怎么创建node中的mo...
分类:Web开发   时间:2014-05-30 14:48:07    收藏:0  评论:0  赞:0  阅读:427
案例:焦点图轮播特效
案例:焦点图轮播特效案例:焦点图轮播特效案例:固定边栏滚动特效案例:固定边栏滚动特效案例:弹出层效果案例:弹出层效果案例:分页页码制作案例:分页页码制作
分类:其他   时间:2014-05-30 14:49:24    收藏:0  评论:0  赞:0  阅读:395
mysql binaryVInstall
下载mysql1.下载:在http://dev.mysql.com/downloads/mysql/官网上下载mysql-5.5.28-linux2.6-i686.tar.gz.2.解压tar -xvf mysql-5.5.28-linux2.6-i686.tar.gz3.移动到/usr/local...
分类:数据库技术   时间:2014-05-30 14:50:44    收藏:0  评论:0  赞:0  阅读:507
使用SAE的Storage来为Android应用提供版本更新的检查和下载功能
因为Android的市场比较分散,有时候上传和审核都麻烦。为了让用户能第一时间获得更新,接下来要实现版本检查和下载功能。先在Storage里放入应用的APK、一个json的文档或者xml文件,因为我比较喜欢用json,所以接下来就用json文档。写json文档的时候记得不要用记事本,要用Notepa...
分类:移动平台   时间:2014-05-30 14:52:09    收藏:0  评论:0  赞:0  阅读:495
maven:安装m2eclipse插件
离线安装:1.下载插件包:http://pan.baidu.com/s/1c0cRHsO2.解压到:D:\downloads\m2eclipse3.在eclipse的dropins目录下,新建maven.link文件4.编辑maven.link,指向插件位置:path=D:/downloads/m2...
分类:系统服务   时间:2014-05-30 14:53:26    收藏:0  评论:0  赞:0  阅读:542
JavaScript高级程序设计29.pdf
insertAdjacentHTML方法插入标记最后一个新增的方式是insertAdjacentHTML()方法,它接收两个参数:插入位置和要插入的HTML文本,第一个参数必须是下列值之一:"beforebegin",在当前元素之前插入一个相邻的同辈元素;"afterbegin",在当前元素之下插入...
分类:编程语言   时间:2014-05-30 14:56:18    收藏:0  评论:0  赞:0  阅读:350
用python + hadoop streaming 编写分布式程序(二) -- 在集群上运行与监控
写在前面前文:用python + hadoop streaming 编写分布式程序(一) -- 原理介绍,样例程序与本地调试为了方便,这篇文章里的例子均为伪分布式运行,一般来说只要集群配置得当,在伪分布式下能够运行的程序,在真实集群上也不会有什么问题。为了更好地模拟集群环境,我们可以在mapred-...
分类:编程语言   时间:2014-05-30 14:57:36    收藏:0  评论:0  赞:0  阅读:468
Kendo UI Grid 模型绑定
分享一个Kendo UI中的典型模型绑定实例
分类:其他   时间:2014-05-30 14:58:53    收藏:0  评论:0  赞:0  阅读:628
Triangle
Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below.For example, given the fol...
分类:其他   时间:2014-05-30 15:00:13    收藏:0  评论:0  赞:0  阅读:428
Best Time to Buy and Sell Stock II
Say you have an array for which theithelement is the price of a given stock on dayi.Design an algorithm to find the maximum profit. You may complete a...
分类:其他   时间:2014-05-30 15:01:39    收藏:0  评论:0  赞:0  阅读:377
Candy
There areNchildren standing in a line. Each child is assigned a rating value.You are giving candies to these children subjected to the following requi...
分类:其他   时间:2014-05-30 15:05:39    收藏:0  评论:0  赞:0  阅读:362
Maximum Depth of Binary Tree
Given a binary tree, find its maximum depth.The maximum depth is the number of nodes along the longest path from the root node down to the farthest le...
分类:其他   时间:2014-05-30 15:04:21    收藏:0  评论:0  赞:0  阅读:417
01-08-03【Nhibernate (版本3.3.1.4000) 出入江湖】二级缓存:NHibernate自带的HashtableProvider之缓存管理
http://www.cnblogs.com/lyj/archive/2008/11/28/1343418.html管理NHibernate二级缓存 NHibernate二级缓存由ISessionFactory创建并由ISessionFactory自行维护。我们使用NHibernate操作数据时,I...
分类:系统服务   时间:2014-05-30 15:07:06    收藏:0  评论:0  赞:0  阅读:478
Copy List with Random Pointer
A linked list is given such that each node contains an additional random pointer which could point to any node in the list or null.Return a deep copy ...
分类:其他   时间:2014-05-30 15:08:26    收藏:0  评论:0  赞:0  阅读:469
LRU Cache
Design and implement a data structure for Least Recently Used (LRU) cache. It should support the following operations:getandset.get(key)- Get the valu...
分类:其他   时间:2014-05-30 15:09:42    收藏:0  评论:0  赞:0  阅读:426
Convert Sorted Array to Binary Search Tree
Given an array where elements are sorted in ascending order, convert it to a height balanced BST./** * Definition for binary tree * struct TreeNode { ...
分类:其他   时间:2014-05-30 15:11:08    收藏:0  评论:0  赞:0  阅读:437
716条   上一页 1 2 3 4 5 ... 36 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!