首页 > 其他
rand & random & arc4random
rand(3) / random(3) / arc4random(3) / et al.Written byMattt ThompsononAugust 12th, 2013What passes for randomness is merely a hidden chain of causalit...
分类:其他   时间:2015-01-27 14:52:11    收藏:0  评论:0  赞:0  阅读:269
USING REFLECTION
C#反射介绍,性能考虑
分类:其他   时间:2015-01-27 14:51:51    收藏:0  评论:0  赞:0  阅读:248
add-apt-repository ppa:<ppa_name>
add-apt-repository: add-apt-repository 是由 python-software-properties 这个工具包提供的所以要先安装python-software-properties 才能使用 add-apt-repository否则会显示“command no....
分类:其他   时间:2015-01-27 14:51:41    收藏:0  评论:0  赞:0  阅读:342
高版本的xcode使用低版本的Simulator
1.打开xcode5.0的目录:Finder中点击“应用程序”,找到xcode,右击选择“显示包内容”,进入“Contents—Developer—Platforms—iPhoneOS.platform—Developer—SDKs”2.加载xcode4.6的安装包,同样“显示包内容”,定位到与上方...
分类:其他   时间:2015-01-27 14:51:21    收藏:0  评论:0  赞:0  阅读:542
动画原理——像素控制
书籍名称:HTML5-Animation-with-JavaScript书籍源码:https://github.com/lamberta/html5-animation1.获取像素数据,改变数据颜色获取像素是getImageData(startX,startY,endX,endY),将转换的像素数据...
分类:其他   时间:2015-01-27 14:50:51    收藏:0  评论:0  赞:0  阅读:235
对文件的读写操作
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.IO;namespace WeiXin.Core{ public class FileToData ...
分类:其他   时间:2015-01-27 14:50:31    收藏:0  评论:0  赞:0  阅读:278
SpannableStringBuilder 和 SpannableString
EditText: 通常用于显示文字,但有时候也需要在文字中夹杂一些图片,比如QQ中就可以使用表情图片,又比如需要的文字高亮显示等等,如何在android中也做到这样呢?记得android中有个android.text包,这里提供了对文本的强大的处理功能。添加图片主要用SpannableString...
分类:其他   时间:2015-01-27 14:50:01    收藏:0  评论:0  赞:0  阅读:392
图片的读取和保存操作
public static void LoadPicFromStream(string url) { string content = string.Empty; HttpWebRequest request = (HttpWebR...
分类:其他   时间:2015-01-27 14:49:01    收藏:0  评论:0  赞:0  阅读:296
POJ3281:Dining(dinic+拆点)
题目链接:http://poj.org/problem?id=3281PS:刷够网络流了,先这样吧,之后再刷,慢慢补。题意:有F种食物,D种饮料,N头奶牛,只能吃某种食物和饮料(而且只能吃特定的一份),一种食物被一头牛吃了之后,其余牛就不能吃了 第一行有N,F,D三个整数:接着2-N+1行代表第i头...
分类:其他   时间:2015-01-27 14:48:31    收藏:0  评论:0  赞:0  阅读:240
LeetCode No.18 4Sum
Given an arraySofnintegers, are there elementsa,b,c, anddinSsuch thata+b+c+d= target? Find all unique quadruplets in the array which gives the sum of ...
分类:其他   时间:2015-01-27 14:47:51    收藏:0  评论:0  赞:0  阅读:142
【转载】iptables、tc和ip命令
2.3 CommandListener中的命令CL一共定义了11个命令,这些命令充分反映了Netd在Android系统中网络管理和控制方面的职责。本节首先介绍Linux系统中常用的三个网络管理工具,然后再分类介绍CL中的相关命令。2.3.1 iptables、tc和ip命令网络管理和控制一直是一项比...
分类:其他   时间:2015-01-27 14:46:41    收藏:0  评论:0  赞:0  阅读:248
超链接hover切换效果
css3制作经验hover切换效果 ...
分类:其他   时间:2015-01-27 14:46:21    收藏:0  评论:0  赞:0  阅读:257
数据源绑定
ASP.NET数据绑定总结概念:数据绑定(data binding):数据源与服务器控件的关联,“数据绑定”是一种把数据绑定到一种用户界面元素(控件)的通用机制。分类:ASP.NET中涉及到的数据绑定大概可以分为:使用使用DataSource属性使用数据源控件使用Eval方法使用 绑定数据源对于这种...
分类:其他   时间:2015-01-27 14:45:51    收藏:0  评论:0  赞:0  阅读:271
Leetcode#53 Maximum Subarray
原题地址方法I:动态规划另sum[i]表示从i开始的最大子串和,则有递推公式:sum[i] = max{A[i], A[i] + sum[i+1]}因为递推式只用到了后一项,所以在编码实现的时候可以进行状态压缩,用一个变量即可代码: 1 int maxSubArray(int A[], int n)...
分类:其他   时间:2015-01-27 14:44:51    收藏:0  评论:0  赞:0  阅读:208
Response响应请求操作
using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Text;namespace WeiXin.Core{ public class ResponseHelp...
分类:其他   时间:2015-01-27 14:43:51    收藏:0  评论:0  赞:0  阅读:218
hack
1、Firefox@-moz-document url-prefix() { .selector { property: value; } }上面是仅仅被Firefox浏览器识别的写法,具体如:@-moz-document url-prefix() { .demo { color:lime; } }...
分类:其他   时间:2015-01-27 14:43:41    收藏:0  评论:0  赞:0  阅读:200
【转】Entity Framework 6 Code First 实践系列(1):实体类配置-根据依赖配置关系和关联
本文转自:http://www.cnblogs.com/easygame/p/3622893.htmlEF实体类的配置可以使用数据注释或Fluent API两种方式配置,Fluent API配置的关键在于搞清实体类的依赖关系,按此方法配置,快速高效合理。为了方便理解,我们使用简化的实体A和B以及A、...
分类:其他   时间:2015-01-27 14:43:11    收藏:0  评论:0  赞:0  阅读:256
JFrame与JButton添加背景
某些时候,我们会认为Swing的GUI实在是太难看了。我们可以通过修改背景,来达到一定的美化效果。 一、JFrame设置背景 在设置背景前,必须了解到JFrame分为4层,从下至上分别为RootPane、LayeredPane、ContentPane、GlassPane。其中Glas...
分类:其他   时间:2015-01-27 14:43:01    收藏:0  评论:0  赞:0  阅读:236
花1台的钱入手2台【最能抗DDoS】阿里云主机【攻略】
花1台的钱入手2台【最能抗DDoS】阿里云主机【攻略】:第一步:先申请0元半年 http://click.aliyun.com/m/335/;注:0元机器只有新帐号可申请第二步:再买6折37/月 http://click.aliyun.com/m/623/ ;注:最长可买5个月这样,你花1台的钱就入...
分类:其他   时间:2015-01-27 14:42:31    收藏:0  评论:0  赞:0  阅读:242
NSOperationQueue 和 NSOperation
TheNSOperationQueueclass regulates the execution of a set ofNSOperationobjects. After being added to a queue, an operation remains in that queue until...
分类:其他   时间:2015-01-27 14:42:21    收藏:0  评论:0  赞:0  阅读:257
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!