`
文章列表

android体系结构

 android基本架构 Android其本质就是在标准的Linux系统上增加了Java虚拟机Dalvik,并在Dalvik虚拟机上搭建了一个JAVA的application framework,所有的应用程序都是基于JAVA的application framework之上。Android主要应用于ARM平台,但不仅限于ARM,通过编译控制,在X86、MAC等体系结构的机器上同样可以运行。   android分为四个层,从高层到低层分别是应用程序层、应用程序框架层、系统运行库层和linux核心层。蓝色的代表java程序,黄色的代码为运行JAVA程序而实现的虚拟机,绿色部分为C/C+ ...

git命令

git命令: man git例如:工作目录下有个zh目录,如果不想把它加入到Git管理中,则执行: echo "zh" > .gitignore git add . 有关gitignore 文件的诸多细节知识可阅读其使用手册:man gitignoregit pull:从其他的版本库(既可以是远程的也可以是本地的)将代码更新到本地,例如:'git pull origin master'就是将origin这个版本库的代码更新到本地的master主枝,该功能类似于SVN的updategit add:是 将当前更改或者新增的文件加入到Git的索引中,加入到Git的索引中就 ...
原文:http://blog.chinaunix.net/uid-26611973-id-3373977.html   软件需求:git-core, gitosis, openssh-server, openssh-client安装git和openssh:$ sudo apt-get install git-core$ sudo apt-get install openssh-server$ sudo apt-get install openssh-client首先check这些库是否已经安装$ dpkg -l|grep git-core$ dpkg -l|grep openssh-se ...
一、SVN安装1.安装包$ sudo apt-get install subversion2.添加svn管理用户及subversion组$ sudo adduser svnuser$ sudo addgroup subversion$ sudo addgroup svnuser subversion  #添加用户"svnuser"到"subversion"组3.创建项目目录$ sudo mkdir /svn$ cd /svn$ sudo mkdir repository$ sudo chown -R root:subversion repository$ ...
To load a .js or .css file dynamically, in a nutshell, it means using DOM methods to first create a swanky new "SCRIPT" or "LINK" element, assign it the appropriate attributes, and finally, use element.appendChild() to add the element to the desired location within the document t ...
注:页面上元素name属性和JavaScript引用的名称必须一致包括大小写否则会提示你一个错误信息 “引用的元素为空或者不是对象\\\\\”——————————————————————— 对象属性document.title //设置文档标题等价于HTML的title标签document.bgColor //设置页面背景色document.fgColor //设置前景色(文本颜色)document.linkColor //未点击过的链接颜色document.alinkColor //激活链接(焦点在此链接上)的颜色document.vlinkColor //已点击过的链接颜色documen ...

js代码收藏

    博客分类:
  • js
js对象转换成jquery对象:   jQuery(document).ready(function(){ var links = jQuery("#simple-menu li a"); for(var i=0;i<links.length;i++){ jQuery(links[i]).click(function(){ jQuery(".current").removeClass("current"); jQuery(this).addClass("curr ...

邮箱suggest

    博客分类:
  • js
<!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> <meta http-equiv="Content-Type" content="text/html; charse ...
安装: ruby script/plugin install git://github.com/kares/simple_captcha.git  安装之后,跟随下面的步骤配置插件: #### STEP 1 rails generate simple_captcha #### STEP 2 rake db:migrate #### STEP 3    将下面的代码添加到 config/routes.rb :  Keditor::Application.routes.draw do match '/simple_captcha/:action', :contro ...

测试ruby代码高亮

 
# encoding: utf-8 require 'digest/sha2' class User < ActiveRecord::Base validates :email, format: {with: /^([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})$/i, message: '请填写有效电子邮箱'}, :on => :create validates :password, format: {with: /^[a-zA-Z0-9~@#%&_\.\-\^\$\*\!\+\=]{6,16}$/,message: '必 ...

rails3 time zone

什么是Time Zone,就是时区,UTC或者是GMT     UTC = Coordinated Universal Time. 中文名称为协调世界时     GMT = Greenwich Mean Time. 中文名称为格林尼治时     新建一个rails项目,默认是utc时间。     可以运行ActiveSupport::TimeZone.all.map(&:name)查看所以时区。     在往数据库插入数据时,所有时间都早了8个小时     fix: 在application.rb中添加     #rails默认是utc,改成本地时间    config. ...
Creating the project and setting the Gemfile Edited: Just corrected the misspelling on the title "unobtrusive", sorry for that** Ps: I'm using the latest rails 3 beta version while coding** $ rails -v Rails 3.0.0.beta4 Creating the project: $ rails new ajax_on_rails -d mysql ...

jQuery操作checkbox选择

    博客分类:
  • js
<!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 runat="server">     <title></title>     < ...

rails render用法

render :action => "show_home_page", :layout=> false render :partial => "footer" render :template=> "templates" render :file => "#{RAILS_ROOT}/public/file.html" render :text => "This is rails render" render :json => {:name ...
原文: http://chloerei.com/2012/04/21/rails-3-2-ajax-guide/   Rails Ajax 的两种类型 在 Rails 里面处理 Ajax 大致可以分为两种: UJS:服务端返回 Javascript,客户端收到后直接执行 JSON API:服务端返回数据,客户端收到后本地处理再执行 Rails 自带的 UJS 机制在提供少量 AJAX 操作的时候很便利。如果你只想写 Javascript 原生的 Ajax,或者需要为客户端应用提供 API,那么应该了解 JSON API 方式。 UJS 先看一段代码,这是一个常见的回复表 ...
Global site tag (gtag.js) - Google Analytics