码迷,mamicode.com
首页 > 2014年06月18日 > 全部分享
XCode v8.11 重量级分表分库(无视海量数据)
XCode天生就有分表分库功能,设计于2005年!历时9年,这是分表分库功能第一次针对性正式更新。在XCode里面,分表分库非常简单,在操作数据(查询/更新)前修改Meta.ConnName/Meta.TableName,指向别的连接字符串和表名,就实现了分表分库功能!实际上,XCode实体层构建数...
分类:其他好文   时间:2014-06-18 21:55:32    阅读次数:259
leetcode--Spiral Matrix
Given a matrix ofmxnelements (mrows,ncolumns), return all elements of the matrix in spiral order.For example,Given the following matrix:[ [ 1, 2, 3 ],...
分类:其他好文   时间:2014-06-18 21:56:06    阅读次数:215
leetcode--Spiral Matrix II
Given an integern, generate a square matrix filled with elements from 1 ton2in spiral order.For example,Givenn=3,You should return the following matri...
分类:其他好文   时间:2014-06-18 21:56:47    阅读次数:209
Silverlight DataGrid标题行居中
1.引用命名空间xmlns:Primitives="clr-namespace:System.Windows.Controls.Primitives;assembly=System.Windows.Controls.Data"xmlns:data="clr-namespace:System.Wind...
分类:Web程序   时间:2014-06-18 21:57:23    阅读次数:273
个人知识管理系统Version1.0开发记录(06)
demo view夜已深,我们先简单演示一下,完成一个小段落了。涉及工具及技术知识:图形处理软件photoshop cs6,js类库ext。思路如下:1、下载ps6,有破解版本的,dll文件覆盖即可,玩个把小时,看看文字、图片jpg、png、gif动画怎么玩的,实际用时找对应方法。2、下载ext2,...
分类:其他好文   时间:2014-06-18 21:58:47    阅读次数:316
leetcode--Valid Number
Validate if a given string is numeric.Some examples:"0"=>true" 0.1 "=>true"abc"=>false"1 a"=>false"2e10"=>trueNote:It is intended for the problem stat...
分类:其他好文   时间:2014-06-18 21:58:07    阅读次数:220
delphi的取整函数round、trunc、ceil和floor
delphi的取整函数round、trunc、ceil和floor 首先引入math单元uses math;1.Round(四舍六入五留双)功能说明:对一个实数进行四舍五入。(按照银行家算法) 例:vari, j: Integer;begini := Round(1.5); // i等于2j :=....
分类:其他好文   时间:2014-06-18 21:59:23    阅读次数:261
quick cocos2dx 滚动条
--滚动条 labar local function valueChanged(strEventName,pSender) if nil == pSender then return end ...
分类:其他好文   时间:2014-06-18 22:00:01    阅读次数:332
quick_cocos2dx 点击事件
local function onTouchBegan(x, y) 层单击事件end local function onTouchMoved(x, y) end local function onTouchEnded(x, y) print("哈哈哈") endlocal function...
分类:其他好文   时间:2014-06-18 22:00:39    阅读次数:235
jQuery图片延迟加载插件:jquery.lazyload
-----------------------------------------------------------------------------------------------class='lazy' 载入样式,data-original指向图片地址底部引入jQuery和jQuery....
分类:Web程序   时间:2014-06-18 22:01:22    阅读次数:539
quick_cocos2dx 调度器
定时器local sharedScheduler = CCDirector:sharedDirector():getScheduler() --自定义函数 i=1 function prForHimi() -- cocos2d.CCLuaLog("reFresh...
分类:其他好文   时间:2014-06-18 22:02:00    阅读次数:204
quick cocos2dx 判断坐标是否在精灵内部
local pos = ccp(10, 10)local sprite=display.newSprite("02.png") //创建一个精灵sprite:setPosition(ccp(10,10))self:addChild(sprite) if sprite:getBound...
分类:其他好文   时间:2014-06-18 22:02:41    阅读次数:198
PatentTips - Sleep state mechanism for virtual multithreading
BACKGROUNDThe present disclosure relates generally to information processing systems and, more specifically, to a mechanism that maintains the archite...
分类:其他好文   时间:2014-06-18 22:03:25    阅读次数:216
委托复习
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace 委托复习 8 {.....
分类:其他好文   时间:2014-06-18 22:04:02    阅读次数:118
Httpclient httpdelete 参数
Httpclient 中常用的请求有2个,HttpPost 和 HttpGet,今天在对某个网站进行分析的时候,突然发现用到了 HttpDelete,并且传参 是 Json。1、一般 HttpPost 对传参 Json 的处理是:// 中文处理StringEntity se = new String...
分类:其他好文   时间:2014-06-18 22:05:55    阅读次数:419
TOJ--2674--最短路(spfa)
厌死了......排位 晋级赛 两连跪 。。。三角形 的那题还是 无限WA 。。。还有 明天又要早起。。。先还是来看下这题吧 话说 好久没写 最短路了 --------- spfa 是我最喜欢的最短路版本 touch me这题 其实相比其它的最短路 还是有个很让人看不懂的地方---让我纠结...
分类:其他好文   时间:2014-06-18 22:05:14    阅读次数:159
获取android 内存大小
android 内存大小
分类:移动开发   时间:2014-06-18 22:04:41    阅读次数:210
1662条   上一页 1 ... 87 88 89 90 91 92 93 ... 98 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!