码迷,mamicode.com
首页 >  
搜索关键字:git format    ( 45980个结果
PHP date()函数详解
date (PHP 4, PHP 5) date — 格式化一个本地时间/日期 说明 ? string date ( string $format [, int $timestamp ] ) 返回将整数 timestamp 按照给定的格式字串而产生的字符串。如果没有给出时间戳则使用本地当前时间。换句...
分类:Web程序   时间:2014-05-19 19:26:29    阅读次数:448
java 日期字符串
public class MyDateFormat { /** * 格式化时间 * @param date * @param format * @return string */ public static String dateToStr...
分类:编程语言   时间:2014-05-19 16:36:00    阅读次数:339
GIT基本概念和用法总结【转】
在日常使用GIT过程中,经常会出错,比如无意间丢失了未提交的数据,回退版本时丢失了工作目录,等等。经过思考发现,所有这些错误都是因为对GIT中一些基本的概念模糊而导致,因为对一些基本概念不清晰,导致对GIT每一条命令将会产生的结果不符合预期。下面我就梳理以下我经常碰到的问题相关的基本概念。1. Wo...
分类:其他好文   时间:2014-05-19 15:33:38    阅读次数:266
批处理脚本,git本地workspace一键推送到远端repo
1 @echo off 2 setlocal enabledelayedexpansion 3 git status||goto :eof 4 5 set "msg=quick push. %date% %time%" 6 if #%1==# (set /p "msg=commit messa...
分类:其他好文   时间:2014-05-19 15:14:16    阅读次数:402
JQuery -> 超级简单的下拉菜单
用jquery实现的一个超级简单的下拉菜单。 效果图 初始效果 鼠标悬浮效果 代码 nav a { text-decoration: none; } nav > ul > li { float: left; text-align: center; padding: 0 0.5em; } nav li ul.sub-menu { ...
分类:Web程序   时间:2014-05-18 10:48:11    阅读次数:522
github basic usage
GitHub and Git basic command tips...
分类:其他好文   时间:2014-05-18 09:03:35    阅读次数:255
LeetCode: Swap Nodes in Pairs [023]
【题目】 Given a linked list, swap every two adjacent nodes and return its head. For example, Given 1->2->3->4, you should return the list as 2->1->4->3. Your algorithm should use only constant space. You may not modify the values in the list, only nodes it...
分类:其他好文   时间:2014-05-18 08:37:57    阅读次数:370
LinearLayout详解二:从其父类View说起
如果大家不知道怎么下载View.class的源代码,或者说懒得去下载(因为源代码确实比较大,大概有10G)的话,教大家几个取巧的办法: 1.直接在google中输入“android view.java”即可。这种方法成功率非常高,一般android的比较重要的类都能搜到。 2.给大家提供一个人家用于放源码的的git:git@gitorious.org:rowboat/frameworks-base.git 大家自己去clone一下。(什么!你Y的居然连git都不会用!服了,好吧,请继续往下看)。 3登录到这...
分类:其他好文   时间:2014-05-18 08:32:48    阅读次数:751
开源项目AndroidUtil-采用Fragment实现TabHost
原文出自:方杰|http://fangjie.sinaapp.com/?p=141 转载请注明出处 学习Android也有一段时间了,感觉大部分的Android应用都有很多类似的组件,所以就打算做了这样一个开源项目,目的是整合一些Android开发常用的组件Demo,方便以后项目中直接拿来用。git地址:https://github.com/JayFang1993/AndroidUtil ...
分类:移动开发   时间:2014-05-18 06:06:04    阅读次数:395
UVA 133(循环链表)
C - The Dole Queue Time Limit:3000MS     Memory Limit:0KB     64bit IO Format:%lld & %llu Submit Status Description  The Dole Queue  In a serious attempt to down...
分类:其他好文   时间:2014-05-18 03:10:48    阅读次数:326
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!