码迷,mamicode.com
首页 > 其他好文
一分钟明确 VS manifest 原理
什么是vs 程序的manifest文件manifest 是VS程序用来标明所依赖的side-by-side组建,如ATL, CRT等的清单。为什么要有manifest文件一台pc上,用一组建往往会有不止一个版本号(c:/windows/winsxs或系统文件夹下),程序在载入的时候,不知载入哪个,于...
分类:其他好文   时间:2015-02-24 15:06:36    阅读次数:118
正数负数转换
正数 -- > 负数 1>取反2>+112源码0000 11001111 0011 取反1111 0100 +1负数-->正数1>-12>取反-31111 1101 源码1111 1100 -10000 0011 取反 ------- 3
分类:其他好文   时间:2015-02-24 15:04:25    阅读次数:127
XCode5无法设置Deployment Target的解决办法
使用XCode5创建新项目的时候发现无法修改Deployment Target,只能选择iOS7这是由于XCode5默认会选择在64位的环境下运行,在Build Settings中修改Architectures为Standard architectures(armv7, armv7s),回到Gene...
分类:其他好文   时间:2015-02-24 15:04:43    阅读次数:127
微软职位内部推荐-SW Engineer II for Cloud Service
微软近期Open的职位:Azure Big Data Cloud Services and Cosmos are key components of Microsoft’s big data strategy. We have exciting opportunities for engineers...
分类:其他好文   时间:2015-02-24 15:04:21    阅读次数:149
UVa 10837 (欧拉函数 搜索) A Research Problem
发现自己搜索真的很弱,也许做题太少了吧。代码大部分是参考别人的,=_=||题意:给出一个phi(n),求最小的n分析:回顾一下欧拉函数的公式:,注意这里的Pi是互不相同的素数,所以后面搜索的时候要进行标记。先找出所有的素数p,满足(p - 1)整除题目中所给的phi(n)然后暴搜。。素数打表打到1e...
分类:其他好文   时间:2015-02-24 15:06:39    阅读次数:169
验证格式
一下是常用的正则表达式,供大家参考:验证数字:^[0-9]*$验证n位的数字:^\d{n}$ 验证至少n位数字:^\d{n,}$验证m-n位的数字:^\d{m,n}$验证零和非零开头的数字:^(0|[1-9][0-9]*)$验证有两位小数的正实数:^[0-9]+(.[0-9]{2})?$验证有1-3...
分类:其他好文   时间:2015-02-24 15:05:33    阅读次数:136
二、类与对象(下)
2.4 类的属性 属性是一种特殊的“字段”。 先来看一个用于表示学生信息的类Student:class Student{ public String Name; //姓名 public DateTime Birthday; //生日 public int Age; //年龄} Stude...
分类:其他好文   时间:2015-02-24 15:04:39    阅读次数:119
loj1236(数学)
传送门:Pairs Forming LCM题意:题意:问符合 lcm(i,j)=n (1#include #include #include #include #include #include #include #include #include #include #include #includ...
分类:其他好文   时间:2015-02-24 15:03:11    阅读次数:130
loj1245(数学)
传送门:Harmonic Number (II)题意:求sum=n/1+n/2+n/3+...+n/n。(n#include #include #include #include #include #include #include #include #include #include #inclu...
分类:其他好文   时间:2015-02-24 15:02:50    阅读次数:176
Y2K Accounting Bug(贪心)
Y2K Accounting BugTime Limit:1000MSMemory Limit:65536KTotal Submissions:10945Accepted:5499DescriptionAccounting for Computer Machinists (ACM) has suff...
分类:其他好文   时间:2015-02-24 15:05:07    阅读次数:134
【转】计算几何模板
【转载注明出处@AOQNRMGYXLMV】#include #include #include #include using namespace std;//lrj计算几何模板struct Point{ double x, y; Point(double x=0, double y=0)...
分类:其他好文   时间:2015-02-24 15:03:00    阅读次数:131
6、listview(2)
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Data.SqlClient;using System.Drawing;using Sys...
分类:其他好文   时间:2015-02-24 15:03:07    阅读次数:102
SGU[117] Counting
Description描述Find amount of numbers for given sequence of integer numbers such that after raising them to theM-th power they will be divided byK.求出给定一...
分类:其他好文   时间:2015-02-24 15:02:35    阅读次数:149
一个典型的参数型跨站脚本漏洞
这个漏洞只能在IE下使用,FIREFOX会把URL链接参数中的”(双引号)转成编码%22,页面参数的输出也会变成%22,就不能闭合”(双引号)跨站。expression()是个不听话的角色,这里可以用一个小技巧来去掉expression烦人的死循环。运行当前URL的#注释符后的代码:
分类:其他好文   时间:2015-02-24 15:02:14    阅读次数:133
详解Paint的setShader(Shader shader)
一、概述setShader(Shadershader)中传入的自然是shader对象了,shader类是Android在图形变换中非常重要的一个类。Shader在三维软件中我们称之为着色器,其作用是来给图像着色。它有五个子类,像PathEffect一样,它的每个子类都实现了一种Shader。下面来看...
分类:其他好文   时间:2015-02-24 15:03:32    阅读次数:246
内核程序[驱动开发],第一步
网上看了好些文章,好像说这个内核程序和驱动开发,几乎好难入手,试了下其实没有那么难进入.网上大多是如何建立编译环境,一大堆的如何配置VS,让人觉得好复杂,难下手,也不晓得到底在配置些什么东西.其实不用那么复杂.VisualStudio应都有的吧,我的是VS2010VisualDDKBaiDu下载一个运..
分类:其他好文   时间:2015-02-24 14:01:41    阅读次数:116
pfsense在dmz中的几个关键设置
上图是一个典型dmz网络拓扑pf1,需要在system->firewall/nat->networkaddresstranslation中,设置natreflectionmodeforportforwards模式为:PureNAT打开上述设置,可以让内网直接用域名访问架在dmz里的服务器。pf2,我是将连接dmz的端口设置为wan,接内网为lan,然后关闭..
分类:其他好文   时间:2015-02-24 13:57:58    阅读次数:744
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!