leon@DGLIRUAN2 /F/linux/android/leon/workspace/AngoWidget (master)
$ git log
commit 2f847e3a858ecb2f843e7820cd8eaedf2ec7102d
Author: leon
Date: Mon Jul 14 23:38:58 2014 +0800
alarm worki...
分类:
其他好文 时间:
2014-07-15 12:28:00
阅读次数:
279
由题意推得结论:p+q-gcd(p,q);
/*
* hdu 1722--Cake
* date 2014/7/15
* state AC
*/
#include
#include
using namespace std;
/*
int gcd(int x,int y)
{
while(x!=y)
{
if(x>y)x=x-y;
else y...
分类:
其他好文 时间:
2014-07-15 10:32:39
阅读次数:
184
java读取.properties配置文件
这两天做java项目,用到属性文件,到网上查资料,好半天也没有找到一个满意的方法能让我读取到.properties文件中属性值,很是郁闷,网上讲的获取属性值大概有以下方法,以下三种方法逐渐优化,以达到最好的效果以下都以date.properties文件为例,该文件放在src目录下,文件内容为...
分类:
编程语言 时间:
2014-07-15 10:20:24
阅读次数:
206
USE [MainDb]GO/****** Object: StoredProcedure [dbo].[BackDataUpdate] Script Date: 07/15/2014 08:46:25 ******/SET ANSI_NULLS ONGOSET QUOTED_IDENTIF...
分类:
数据库 时间:
2014-07-15 09:45:39
阅读次数:
336
select to_char(sysdate,'yyyy-mm-dd hh24:mi:ss') from goods tinsert into goods (id,createdate) values ('232',to_date('2014-05-14 10:05:33','yyyy-mm-dd ...
分类:
数据库 时间:
2014-07-14 23:39:52
阅读次数:
219
14.5.13.4Insert Buffering Database applications often insert new rows in the ascending order of the primary key. In this case, due to the layoutof th....
分类:
其他好文 时间:
2014-07-14 22:02:27
阅读次数:
373
>暑假学习第一章:shell是什么?1shellShell是一个和Linux内核交互的解释性程序,我们在图形用户下通过shell终端仿真器可以和操作系统进行交互。2本章命令行date:显示时间cal:显示日历df:显示磁盘驱动器内存free:显示系统内存exit:退出终端第二章:导航2.1理解文件系...
分类:
系统相关 时间:
2014-07-14 21:39:39
阅读次数:
339
1、java、android中获取当前时间 this.sdf = new SimpleDateFormat("yyyy/MM/dd-hh:mm:ss", Locale.CHINA); String time = sdf.format(new Date(System.currentTimeMil...
分类:
其他好文 时间:
2014-07-14 19:49:56
阅读次数:
184
//这里以created字段为例子
function Hook_form_alter($form,$form_state,$form_id){
$form['created']['#type'] = 'date_popup';
$form['created']['#date_format'] = 'Y-m-d';
$form['created']['#size'] =...
分类:
其他好文 时间:
2014-07-14 17:29:48
阅读次数:
257
系统环境:ubuntu14.04 (并假设Apache2服务可以正常运行)1. 安装软件:sudo aptitude install trac python-mysqldb2. 创建数据库Trac可支持的数据库有:sqlite, postgresql及mysql等。默认的是sqlite,但这里选用的...
分类:
其他好文 时间:
2014-07-14 15:43:19
阅读次数:
235