- 浏览: 115924 次
- 性别:
- 来自: 东营
最新评论
-
sunshine_bean:
太感谢了
svnserve权限文件authz配置的常见问题及解答 -
yjdgtg:
找了半天,谢谢分享。
解决ExtJS Combobox在form提交显示值问题 -
lvhjean:
发个贴不容易啊。还要做小测验。正题:问下。你的extjs-co ...
解决ExtJS Combobox在form提交显示值问题 -
surpass_li:
终于找到解决的办法了,谢谢分享.这个问题困挠我好久了
解决ExtJS Combobox在form提交显示值问题 -
442917934:
...
javadoc的使用
文章列表
cordova 中获取当前app版本
- 博客分类:
- cordova
当前版本需要通过插件获取:https://github.com/whiteoctober/cordova-plugin-app-version
angularjs带校验登录窗口
- 博客分类:
- angular
使用angular, bootstrap,ui-bootstrap的登录窗口:
<div>
<div>
<form class="form-horizontal" role="form" method="post" ng-submit="hello()" name="xForm">
<div class="form-group has-feedback"
...
yeoman 构建的angular项目中需要引入ui-bootstrap
使用命令 bower search ui-bootstrap得到以下结果:
Search results:
angular-ui-bootstrap-bower git://github.com/angular-ui/bootstrap-bower
angular-ui-bootstrap git://github.com/angular-ui/bootstrap.git
jquery ...
Angular Expressions
Angular表达式
【原文】https://code.angularjs.org/1.2.23/docs/guide/expression
【翻译者】kowen@live.cn
https://code.angularjs.org/1.2.23/docs/guide/expression 写道
Angular expressions are JavaScript-like code snippets that are usually placed in bindings such as {{ expression }}.For example ...
理解Angular中的数据绑定
【原文】:https://docs.angularjs.org/guide/databinding
【翻译者】:kowen@live.cn
https://docs.angularjs.org/guide/databinding 写道
Data-binding in Angular apps is the automatic synchronization of data between the model and view components. The way that Angular implements data-binding lets ...
默认的ssh端口是22,通常远程git是通过ssh端口进行访问的,所以服务器修改了ssh默认端口或者经过防火墙端口映射之后,git clone gituser@server:project.git命令就不能用了。解决的方法如下:
git clone ssh://gituser@server:PORT/project.git
【转载请注明原文链接:http://kowen.iteye.com/blog/2101784】
经过多天的摸索,终于在ubuntu上配置完成了gitosis,写下来分享:
一、安装环境和软件
ubuntu 14.04 server
openssh-server
git-core
gitosis
git
二、安装准备
1.服务器安装 ...
git服务器搭建过程
原文地址:http://blog.csdn.net/ice520301/article/details/6142503
需求
硬件需求:一台Ubuntu或者debian电脑(虚拟机),能通过网络访问到。
软件需求:git-core, gitosis, openssh-server, openssh-client, Apache2(Gitweb)
安装配置git服务器
安装git和openssh:
a@server:~$ sudo apt-get install git-core openssh-server openssh-cli ...
Android Studio 0.6.0
Windows: http://dl.google.com/dl/android/studio/ide-zips/0.6.0/android-studio-ide-135.1212210-windows.zip (159 MB)
Mac: http://dl.google.com/dl/android/studio/ide-zips/0.6.0/android-studio-ide-135.1212210-mac.zip (158 MB)
Linux: http://dl.google.com/dl/android/studio/ide- ...
在SDK Manager下Tools->Options打开了SDK Manager的Settings,
选中“Force https://… sources to be fetched using http://…”,强制使用http协议。
修改hosts文件,添加
#google_android更新
203.208.46.146 dl.google.com
203.208.46.146 dl-ssl.google.com
跨域ajax访问,启动chrome用:chrome.exe --disable-web-security
IKVM 在.net上调用java
- 博客分类:
- IKVM
项目网站:
http://www.ikvm.net/
http://sourceforge.net/apps/mediawiki/ikvm/index.php
下载地址:
http://sourceforge.net/projects/ikvm/files/
一、 打开http://java.sun.com/javase/downloads/?intcmp=1281
找到JDK 6 Update 13 下载jdk-6u13-linux-i586-rpm.bin
二、以root身份登录Linux
把下载的jdk-6u13-linux-i586-rpm.bin 放到linux的任意目录下
执行 chmod 755 jdk-6u13-linux-i586-rpm.bin
接着执行 ./jdk-6u13-linux-i586-rpm.bin
出现协议对话框,输入Y,按回车即可。
安 ...
- 2009-11-30 16:03
- 浏览 1197
- 评论(0)
1.设置Mysql5 默认编码为UTF-8
Linux 编辑/etc/my.cnf ,在[mysql]段加入default_character_set=utf8
windows 编辑my.ini 在[mysql]段加入default_character_set=utf8
2.在Hibernate连接串中加入字符集参数 useUnicode=true&characterEncoding=UTF-8
例如:
<property name="connection.url">
jdbc:mysql://localhost:3306/test?useU ...
- 2009-10-22 23:35
- 浏览 1267
- 评论(0)