Configuration File (php.ini)
Path/usr/local/php/libLoaded Configuration File(none)Linux 把 dtruss 改成strace
就可以我的是mac的系统jackluo@JackLuodeMacBook-Pro:~ $...
分类:
Web程序 时间:
2014-05-16 07:23:21
阅读次数:
381
点击HOME键使应用进入后台时,iOS会自动对当前屏幕进行截屏处理,并保存成图片文件。在Mac中可以看到,这些截屏文件会被保存在下述路径中:/Library/Caches/Snapshots/(Bundle
identifier)/且文件名以"UIApplicationAutomaticSnapsh...
分类:
移动开发 时间:
2014-05-15 16:01:46
阅读次数:
370
/*
* hdu AC Me
* date 2014/5/13
* state AC
*/
#include
#include
#include
#include
using namespace std;
const int MAXN=100001;
char Arr[MAXN];
int cnt[26];
int main()
{
//cout << "Hello wor...
分类:
其他好文 时间:
2014-05-15 06:16:24
阅读次数:
247
以下内容系原创,转载请务必注明地址
在 Android 手机上使用 Terminal IDE 远程登录你的 Mac 可以让你随时随地远程对你的 Mac 进行操作,这个很爽,特别是当你躺在床上还能操作你在某个地方开着的 Mac 计算机的时候,其实依照这种方法也可以类似地远程登录Ubuntu,有兴趣的可以试试,简单几步就可以实现了:
首先,需要下载 Terminal IDE,废话不说,请...
分类:
移动开发 时间:
2014-05-15 05:23:36
阅读次数:
325
/*
* hdu How many prime numbers
* date 2014/5/13
* state AC
*/
#include
#include
#include
using namespace std;
bool isPrime(int x)
{
int sqr=sqrt(x*1.0);
for(int i=2;i<=sqr;i++)
{...
分类:
其他好文 时间:
2014-05-15 05:07:18
阅读次数:
261
/*
* hdu 最小公倍数
* date 2014/5/13
* state AC
*/
#include
using namespace std;
int gcd(int x,int y)
{
while(x!=y)
{
if(x>y)x=x-y;
else y=y-x;
}
return x;
}
int main()
...
分类:
其他好文 时间:
2014-05-14 14:29:59
阅读次数:
225
文本位置跳转快捷键:跳转到一行的开头:Command+左箭头跳转到一行的末尾:Command+右箭头跳转到当前单词的开头(适合英文、拼音):Option+左箭头跳转到当前单词的末尾(适合英文、拼音):Option+右箭头跳转到全部文本的开头:Command+上箭头跳转到全部文本的末尾:Command...
分类:
其他好文 时间:
2014-05-14 13:27:18
阅读次数:
305
系统:mac os x 10.9eclipse在eclipse 中建立一个project,
命名为Cin_txt,Cin_txt的内容testwanghelloworld以下是输入的代码import java.io.File;import
java.io.FileInputStream;import...
分类:
编程语言 时间:
2014-05-14 11:07:42
阅读次数:
341
MotivationWe can not talk about Object Oriented
Programming without considering the state of the objects. After all object
oriented programming is abo...
分类:
其他好文 时间:
2014-05-14 10:51:18
阅读次数:
354