<?php
$con=mysql_connect("localhost","root","") or die("failed to connect db");
mysql_select_db("lio")or die ("failed to select db");
$user=$_GET['user'];
$passwd=$_GET['passwd'];
$i="INSERT INTO...
分类:
移动开发 时间:
2014-12-07 23:15:46
阅读次数:
168
UIBezierPath和CGContext类中的方法详细...
分类:
其他好文 时间:
2014-12-07 23:15:57
阅读次数:
181
/*
*File : test.c
*Author : DavidLin
*Date : 2014-12-07pm
*Email : linpeng1577@163.com or linpeng1577@gmail.com
*world : the city of SZ, in China
*Ver ...
分类:
系统相关 时间:
2014-12-07 23:17:04
阅读次数:
195
maven 添加memcached.jar配置方法...
分类:
编程语言 时间:
2014-12-07 23:16:04
阅读次数:
250
需要工具:
apktool 下载
dex2jar 下载
jd-gui 下载
apktool 反编译得到的是布局和资源文件。
dex2jar 反编译得到的代码字节码,利用jd gui就可以查看到源代码。
1.apktool安装
1)下载apktool,及mac下apk-install-macosx
2)解压这两...
分类:
移动开发 时间:
2014-12-07 23:15:43
阅读次数:
286
最近在研究c#局部刷新重绘的功能,来提高用户体验,但是在OnPaint事件中接收到的e.ClipRectangle和我在其它方法中调用mainForm.Invalidate(cutOutRect, false);时传递的大小不一致,经过一番排查才发现,是Windows底层做了处理!!!!我们来看图1:上面是调用mainForm.Invalidate(cutOutRect, false);前输出的信...
分类:
其他好文 时间:
2014-12-07 23:14:53
阅读次数:
293
编译型:通过编译器编译成可执行文件
或者通过编译器生成多个目标文件,一个模块会对应一个目标文件,最后由链接器生成可执行文件、
一次性将所有代码转换成机器码
速度快
C++
解释型:程序运行前一刻,还只有源程序没有可执行程序,当运行到某一行时,由一个解释器的外壳将该内容转...
分类:
编程语言 时间:
2014-12-07 23:15:43
阅读次数:
192
简单工厂模式c#上简单例子
namespace simplefactory
{
public partial class Form1 : Form
{
private void button1_Click(object sender, EventArgs e)//用户层次
{
Operation operatio...
servlet doGet & doPost简单使用...
分类:
其他好文 时间:
2014-12-07 23:16:01
阅读次数:
169
本文通过分析cocos2dx提供的示例程序HelloCpp来分析cocos2dx的启动过程。 我们从HelloCpp.java开始:[java] view plaincopy在CODE上查看代码片派生到我的代码片01.package org.cocos2dx.hellocpp; 02. 03.import org.cocos2dx.lib.Cocos2dxActivity; 04. 05.impo...
分类:
移动开发 时间:
2014-12-07 23:16:58
阅读次数:
435
function f=WTF(I);
% compute the 128-D wavelet transform feature of image I
% Input:
% I: the input image
% Output:
% f:128-D feature
%%warning:normalization must be performed after all the features a...
分类:
其他好文 时间:
2014-12-07 23:14:00
阅读次数:
265
/*
*File : test.c
*Author : DavidLin
*Date : 2014-12-07pm
*Email : linpeng1577@163.com or linpeng1577@gmail.com
*world : the city of SZ, in China
*Ver...
分类:
系统相关 时间:
2014-12-07 23:13:56
阅读次数:
208
POJ 2195 & HDU 1533 Going Home(最小费用最大流)...
分类:
其他好文 时间:
2014-12-07 23:15:18
阅读次数:
327
HTML(HyperText Mark-up Language)是一种表示页面内容及样式的语言,它是事实上的web展示标准,被所有浏览器支持,也是它让你的页面可移植的出现在不同的系统和平台之上。
HTML结构
如下一段最简单的HTML代码:
HTML页面
应用记事本编写HT...
分类:
Web程序 时间:
2014-12-07 23:15:35
阅读次数:
653
从widow转到ubuntu环境,折腾了几天,遇到不少问题,现记录如下:
开发工具
1.anroid开发环境,eclipse jdk adt插件 或者 androidstudio。这个介绍的很多。
2.adb 64位兼容包 在终端中输入adb devices 提示sudo: adb: command not found。但是明明已经配置好android开发环境和路径。原因在于...
分类:
移动开发 时间:
2014-12-07 23:13:18
阅读次数:
187
In the lastduring, I am studying the basic about struts2.
At be ginning,I always am confused by the namespace of struts2 xml configuration file.
Cause, sometimes I shall read some examples...
分类:
其他好文 时间:
2014-12-07 23:13:36
阅读次数:
169
命令历史
以:和/开头的命令都有历史纪录,可以首先键入:或/然后按上下箭头来选择某个历史命令。
启动vim
在命令行窗口中输入以下命令即可
vim 直接启动vim
vim filename 打开vim并创建名为filename的文件
文件命令
打开单个文件
vim file
同时打开多个文件
vim file1 file2 file3 ...
在vim窗口中打开一个新...
分类:
系统相关 时间:
2014-12-07 23:12:53
阅读次数:
288