header("Content-type: text/html; charset=utf-8");// 创建数据库连接$con = mysql_connect('localhost', 'root', 'root') or die('Could not connect: ' . mysql_erro...
分类:
其他好文 时间:
2014-07-22 22:56:55
阅读次数:
216
服务器端using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Net;using System.Net.S...
分类:
其他好文 时间:
2014-07-22 22:56:34
阅读次数:
160
说起编辑器,可能大部分人要推荐的是Vim和Emacs,本人用过Vim,功能确实强大,但是不是很习惯,之前一直有朋友推荐SUblime Text 2这款编辑器,然后这段时间就试了一下,就深深地喜欢上这款编辑器了,对于类似的编辑器,我用过notepad2、notepad++、 Editplus、Ultr...
分类:
其他好文 时间:
2014-07-16 16:57:14
阅读次数:
219
Search and Replace
Sublime Text features two main types of search:
Search - Single FileSearch - Multiple Files
We’ll examine them in turn, but first let’s talk about a powerful tool for searc...
分类:
其他好文 时间:
2014-07-16 16:18:52
阅读次数:
312
$('#fillNum').keyup(function(){ if(isNaN($('#fillNum').val())){ $(this).val(''); } })
分类:
其他好文 时间:
2014-07-16 14:18:09
阅读次数:
183
在创建项目DbContext时,重写DbContext.OnModelCreating()方法;然后通过如下方法指定精度1 protected override void OnModelCreating(DbModelBuilder modelBuilder) 2 { 3 modelBuil...
分类:
其他好文 时间:
2014-07-16 14:13:43
阅读次数:
215
如果需要同步远程仓库的分支,或者说是远程仓库有新的分支了,你需要查看,可以使用fetch来获取远程仓库的更新信息。1、右键项目text->Team->Remote->Fetch From...2、上图中默认配置不变,Next>3、上图中是默认获取全部分支的更新情况,如只需获取指定分支的更新情况,按下...
分类:
其他好文 时间:
2014-07-16 13:39:51
阅读次数:
215
package com.utils;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import java.util.GregorianCalendar;
import java.util.TimeZo...
分类:
编程语言 时间:
2014-07-16 13:05:12
阅读次数:
1492
常用,但是常忘,我又不是写css的,所以记下来:
先设置一下限制的宽度,
display:block;
white-space:nowrap;
overflow:hidden;
text-overflow:ellipsis;...
分类:
Web程序 时间:
2014-07-16 13:00:05
阅读次数:
226
异步客户端存储示例:using System;using System.Net;using System.Net.Sockets;using System.Threading;using System.Text;// State object for receiving data from remo...
分类:
其他好文 时间:
2014-07-16 12:25:32
阅读次数:
375