`
文章列表
参考: http://blog.csdn.net/tingya/article/details/2055011 
参考:http://myqianduan.diandian.com/css/1208110900   我们用firbug浏览别人网站时会发现设计者会在很多地方使用inline-block。我们都知道inline是声明div是内联对象,block是声明块对象,那么inline-block是什么意思,即内联又成块?接下来做个测试,让我们了解一下三者的区别和作用。 我们发现内联对象inline给它设置height和width是没有用的,致使它变宽变大的原因是内部元素的宽高+padding。观察inline对象的前后元素我们会发现Inline不单独占一行,其它元素会紧跟其后。 块对象bloc ...
参考: http://blog.csdn.net/guojin08/article/details/14525881 iOS私有头文件: https://github.com/kennytm/iphone-private-frameworks iOS 6.0模拟器的私有库路径: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator6.0.sdk/System/Library/PrivateFrameworks   真 ...

vim命令使用

    博客分类:
  • vim
空格替换为换行 :%s/ +/\r/gc    
CGContextRef context = UIGraphicsGetCurrentContext(); 设置绘图的上下文, 函数UIGraphicsGetCurrentContext一般在UIView的drawRect里调用。     - (void) drawRect:(CGRect)rect { CGContextRef context = UIGraphicsGetCurrentContext(); CGRect myFrame = self.bounds; CGContextSetLineWidth(context, ...

awk命令使用

输出把一个文件中最长的行的长度(test.log是文件名): awk 'BEGIN{ max_length = 1; } { line_length=length; if(max_length < line_length) max_length = line_length; } END{ print max_length; }' test.log  

PHP输入流php://input

    博客分类:
  • php
转自: http://blog.csdn.net/lxzo123/article/details/6701655   在使用xml-rpc的时候,server端获取client数据,主要是通过php输入流input,而不是$_POST数组。所以,这里主要探讨php输入流php://input   对一php://input介绍,PHP官方手册文档有一段话对它进行了很明确地概述。   “php://input allows you to read raw POST data. It is a less memory intensive alternative to $HTTP_RAW_POS ...

iOS网站收藏

code4app(iOS代码库): http://www.code4app.com/   Apple Open Sopurce (苹果开源项目): http://www.opensource.apple.com/source/    
转自:http://j2019.blog.51cto.com/1567276/1173180   一、修改/etc/default/grub.dsudo -icd /etc/grub.dls这时我们可以看到00_header     
转自: http://ju.outofmemory.cn/entry/19803   exit()函数 调用exit会让用户感觉程序崩溃了,不会有按Home键返回时的平滑过渡和动画效果;另外,使用exit可能会丢失数据,因为调用exit并不会调用-applicationWillTerminate:方法和UIApplicationDelegate方法; abort() abort() 函数会调用 -applicationWillTerminate:方法和UIApplicationDelegate方法. 能像按了 Home 键返回时的平滑过度
调用第三方接口,如果对方返回错误的时候,记录详细的日志,包括请求的详细信息,对方返回的数据。
<?php $s = '1.339'; $s1 = ((int)($s*100) / 100); print_r($s1);  
问题: 有四个线程1,2,3,4,线程1的功能就是输出1,线程2的功能就是输出2,以此类推.... 现在有四个文件.ABCD.初始都为空(pthread + C/C++ 谷歌笔试题)。 现要让四个文件呈如下格式: A:  1 2 3 4 1 2.... B:  2 3 4 1 2 3.... C:  3 4 1 2 3 4....   D:  4 1 2 3 4 1....   解法:     #include<stdio.h> #include<stdlib.h> #include<pthread.h> #include&l ...
C++代码如下:   #include<stdio.h> #include<stdlib.h> #include<pthread.h> #include<unistd.h> //线程的最大数量 const int THREAD_MAX_NUM = 100; pthread_t threads[THREAD_MAX_NUM]; //线程的编号 int thread_mark[THREAD_MAX_NUM]; //平均每个线程需要打印数字的个数 int avg_num; //线程数 int pthread_num = 1; ...
最近由于公司项目需要,我需要在Discuz的基础上做开发。我对Discuz并不是很熟悉,开发过程中遇到的最大的问题就是——对于一个http请求,很难确定这个请求都用到了哪些模板文件,因为Discuz并不是MVC模式的。于是我想到了找一个软件来查看一个http请求都读取了哪些文件。 一开始想到的解决方案是没法送一个http请求就去Discuz根目录下查找访问时间大于某个时间的文件 ,但好像没有相应的工具,于是放弃了这个想法。后来向几位老同事请教了下,知道了有Process Monitor这个东西。于是试了下,发现确实可以实现我想要的功能。 以下是用Process Monitor查看一个ht ...
Global site tag (gtag.js) - Google Analytics