码迷,mamicode.com
首页 > 其他好文
UITextField输入长度限制
[_yourTextField addTarget:self action:@selector(eventEditingChange:) forControlEvents:UIControlEventEditingChanged];-(void)eventEditingChange:(UITextF...
分类:其他好文   时间:2014-10-24 14:16:58    阅读次数:203
如何批量下载图片
有时候在网页中看到一连串的漂亮图片,真想全部保存下来。如何批量下载网页图片呢? 我们需要一款软件——迅雷,这款下载软件大家都很熟悉吧。 首先,下载、安装、运行迅雷;打开网页,网页中的图片正是我们要下载的图片,在网页空白中右击,选择“使用迅雷下载全部链接”。点击“使用迅雷下载全部链接”后,会打开下面的...
分类:其他好文   时间:2014-10-24 14:15:08    阅读次数:191
NYIST 489 哭泣天使
哭泣天使时间限制:1000 ms | 内存限制:65535 KB难度:5描述Doctor Who乘着Tardis带着Amy来到了一个星球,一开Tadis大门,发现这个星球上有个壮观的石像群,全是一些天使石像,有的石像在哭泣,有的石像像在微笑,共有m行n列,Doctor用“音速起子”扫描了一下整个.....
分类:其他好文   时间:2014-10-24 14:15:11    阅读次数:327
Arc Engine下数据的加载处理
1.加载Shapefile数据1 IWorkspaceFactory pWorkspaceFactory; 2 IFeatureWorkspace pFeatureWorkspace; 3 IFeatureLayer pFeature...
分类:其他好文   时间:2014-10-24 14:14:03    阅读次数:286
leetcode第35题--Valid Sudoku
题目:Determine if a Sudoku is valid, according to:Sudoku Puzzles - The Rules.The Sudoku board could be partially filled, where empty cells are filled wi...
分类:其他好文   时间:2014-10-24 14:15:06    阅读次数:174
带删除的edittext
1 package com.sixin.view; 2 3 import android.content.Context; 4 import android.graphics.Canvas; 5 import android.graphics.Color; 6 import andr...
分类:其他好文   时间:2014-10-24 14:13:19    阅读次数:245
Flexviewer使用Google地图作为底图
Flexviewer使用Google地图作为底图: 在使用google地图作底图前提是你需要在Flex中实现加载google地图的代码(网上一大堆,随便找), 在只加载google地图的情况下,成功显示。如果你的业务图层是arcgis server发布的Dynamic的地图,你不用考虑, Dynam...
分类:其他好文   时间:2014-10-24 14:15:10    阅读次数:399
ACM解题之在线翻译 Give Me the Number
Give Me the NumberTime Limit: 2 Seconds Memory Limit: 65536 KBNumbers in English are written down in the following way (only numbers less than 109 ...
分类:其他好文   时间:2014-10-24 14:14:20    阅读次数:342
undefined method `environment' for nil:NilClass when importing Bootstrap into rails
今天做项目时往Gemfile里加了各gem, 然后bundle update了一下, 然后悲剧了,出现了undefined method `environment' for nil:NilClass when importing Bootstrap into rails错误, 各种不理解. 然后查了...
分类:其他好文   时间:2014-10-24 14:13:21    阅读次数:229
Arcgis flex 切片地图麻点
在arcgis server中发布地图切片完成后,有时候在访问地图的时候会出现很多麻点,其实是你切片的时候没有注意到一些选项。。。。默认的切片是PNG8,说到这可能就明白了吧,png8的色彩范围:256索引色所以自然是不够的(业务图层可能会有更丰富的色彩。因此要解决这个问题就直接改切片格式:PNG3...
分类:其他好文   时间:2014-10-24 14:10:38    阅读次数:181
socket
tcp: sever #include "stdafx.h" #include <stdio.h> #include <winsock2.h> #pragma comment(lib,"ws2_32.lib") int main(int argc, char* argv[]) { ? ? //初始化WSA ? ? WORD sockVersion = MAKEWORD(2,...
分类:其他好文   时间:2014-10-24 13:08:33    阅读次数:187
Activity 页面切换的效果
package?com.example.androidui; import?android.app.Activity; import?android.content.Intent; import?android.os.Bundle; import?android.os.Handler; import?android.view.Menu; public?class?Mai...
分类:其他好文   时间:2014-10-24 13:07:02    阅读次数:236
Leetcode:Singel Number
问题描述: Given an array of integers, every element appears twice except for one. Find that single one. Note: Your algorithm should have a linear runtime complexity. Could you implement it without ...
分类:其他好文   时间:2014-10-24 13:08:49    阅读次数:221
信息图:谁让马云成为中国首富的?
2014年9月19日美国纽约股市收盘,首日上市的阿里巴巴报收93.89美元,相比超过预期的开盘价92.70美元有微幅上扬。和IPO定价68美元相比,该收盘价格显著上涨38.07%。...
分类:其他好文   时间:2014-10-24 13:07:29    阅读次数:244
[LeetCode] Find Minimum in Rotated Sorted Array
Suppose a sorted array is rotated at some pivot unknown to you beforehand. (i.e., 0 1 2 4 5 6 7 might become 4 5 6 7 0 1 2). Find the minimum element. You may assume no duplicate exists in...
分类:其他好文   时间:2014-10-24 13:06:25    阅读次数:224
Amazon SQS简介 上篇
SQS即Simple Queue Service, 是一个分布式的消息队列服务,使用它非常简单,消息队列服务可以用来buffer burst, 使整个服务异步处理,不要求组件始终可用....
分类:其他好文   时间:2014-10-24 13:04:48    阅读次数:165
LeetCode: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 leaf node. 解题思路:直接DFS。 代码: /**...
分类:其他好文   时间:2014-10-24 13:04:21    阅读次数:147
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!