- 浏览: 116134 次
- 性别:
- 来自: 深圳
最新评论
-
coosummer:
推荐使用http://buttoncssgenerator.c ...
CSS按钮制作 -
HUYIZIZHEN:
yaoyanzhu 写道你的这个代码有问题!请详述!
js实现百度登陆时的弹窗效果 -
yaoyanzhu:
你的这个代码有问题!
js实现百度登陆时的弹窗效果
文章列表
ubuntu安装终极zsh
安装终极Shell zsh,拥有更强的补全功能(常用工具的参数补全)
sudo apt-get install zsh
#引入增强插件,支持git,rails等补全,可选多种外观皮肤
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | sh
#zsh作为默认shell,重启后生效
chsh -s /bin/zsh
http://hi.baidu.com/weforhappy/item/5d6495e82928550f65db0099
Please follow up steps as below. It can work, and verified.
System–>Administration–>language support,在install/remove lanuages中选择中文安装,安装时间较长,忍耐。。。,keyboard input method system, 选择ibus, 安装完成后,进入System–>Preferences–>ibus preferences–>input method–>select an input method–>chinese,然 ...
struts.xml 编码采用 :<constant name="struts.i18n.encoding" value="UTF-8"/>
android端采用默认UFT-8编码。
终极方案为:大一统字符编码为 UTF-8 。
ubuntu Linux 打开临时命令窗口Terminal 快捷键 Ctrl+Alt+T
http://www.linuxsight.com/blog/3377
转载至:http://www.cnblogs.com/chenlhuaf/archive/2011/05/01/gson_test.html
发现了google的gson,因为之前对于protocolbuf有一些了解,带着一些好奇心,我开始使用了gson。
经过比较,gson和其他现有java json类库最大的不同时gson需要序列化得实体类不需要使用annotation来标识需要序列化得字段,同时gson又可以通过使用annotation来灵活配置需要序列化的字段。
下面是一个简单的例子:
public class Person {
private String name ...
<?php
//包含这个类文件
require_once ('email.class.php');
//就是邮箱的密码
$stmppass='xxxxx';
//这里面的一个true是表示使用身份验证,否则不使用身份验证.实例化这个类
$smtp = new smtp("smtp.163.com","25",true,"邮箱地址",$stmppass);
$smtp->debug =true;//是否显示发送的调试信息
$smtp->sendmail("xxxxxx", ...
window下安装php_curl扩展支持
1.找到php.ini
修改extension=php_curl.dll 把前面的分号去掉;
注意phpinfo()信息中php.ini 的path
ubuntu linux 下php_curl扩展支持
1.在web服务器目录( Ubuntu下的通常为 /var/www )新建test.php文件
2.编辑文件,键入下面一行代码:phpinfo();
3.保存文件
4.打开浏览器,浏览该网页。(例如:http://localhost/test.php)
5.搜索"curl",看看是否已经安装了curl。没搜到的 ...
ubuntu vsftp服务器配置
FTP服务器是平时应用最为广泛的服务之一。VSFTP是Very Secure FTP的缩写,意指非常安全的FTP服务。VSFTP功能强大,通过结合本地系统的用户认证模块及其多功能的配置项目,可以快速有效的
FTP服务器是平时应用最为广泛的服务之一。VSFTP是Very Secure FTP的缩写,意指非常安全的FTP服务。VSFTP功能强大,通过结合本地系统的用户认证模块及其多功能的配置项目,可以快速有效的搭建强大的多用户FTP服务。
首先我们考虑搭建FTP服务需要关注的都有哪些方面?比如我们最经常关注的有:
1、如何添加FTP用户?
2、如何临时 ...
WAMP中如何修改mysql默认空密码
WAMP安装好后,mysql教程密码是为空的,那么要如何修改呢?其实很简单,通过几条指令就行了,下面我就一步步来操作。
首先,通过WAMP打开mysql控制台。
提示输入密码,因为现在是空,所以直接按回车。
然后输入“use mysql”,意思是使用mysql这个数据库教程,提示“Database changed”就行。
然后输入要修改的密码的sql语句“update user set password=PASSWORD('hooray') where user='root';”,注意,sql语句结尾的分号不能少,提示什么什么 ...
冒泡排序:
package com.zlpy.bubblesort;
/*
* 冒泡排序算法
* */
public class BubbleSort {
public void bubbleSort(int[] r){
print(r);
System.out.println();
for(int i=0;i<r.length-1;i++){
for(int j=0;j<r.length-1-i;j++){
if(r[j]>r[j+1]){
int temp=r[j];
r[j]=r[j+1] ...
测试代码:
package com.zlpy.quicksort;
public class MainClass {
/**
* @param args
*/
public static void main(String[] args) {
int[] r={48,62,35,77,43,55,14,98,24};
//排序前输出
QuickSort.print(r);
sort(r,0,r.length-1);
//排序后输出
QuickSort.print(r);
}
public stati ...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>show window</title>
<style>
html,body{font-s ...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>页面中弹出小窗口,页面背景直接变半透明-ityoudao.com</title>
<style>
...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title><a href="/Web/Wysj/Html_JS/" class="innerlin ...