- 浏览: 52491 次
- 来自: 上海
最新评论
-
bestlovetoad:
Pylons笔记(二) -
waveeee:
又转回xp了。用虚拟机安装服务器bsd。 就是网络太球了!!! ...
linux eclipse出错-failed to load the jni shared -
qinq4312:
最好不要完全禁用.可以用命令:
chcon -t execme ...
linux eclipse出错-failed to load the jni shared -
linvar:
果然有此事,SELINUX主要是用来干嘛的,完全disable ...
linux eclipse出错-failed to load the jni shared
文章列表
1 ) Issue following command to find out current jdk version in apt-get
apt-cache search jdk
2 ) Install java JDK and JRE with apt-get install
apt-get install sun-java6-jdk sun-java6-jre
3 ) Ubuntu will auto download necessary file from web for installation.
Do you want to continue [Y/n]? y
Get:1 ...
appointment: this demo ran in ubuntu, and Rails 2.2.2
the demo comes from agile web development with rails 3
script>>some linux script
mysql>some db command
---------------------------------------------------------
Add a Dash of Ajax
---------------------------------------------------- ...
appointment: this demo ran in ubuntu, and Rails 2.2.2
the demo comes from agile web development with rails 3
script>>some linux script
mysql>some db command
---------------------------------------------------------
Cart Creation --important
--------------------------------------------- ...
appointment: this demo ran in ubuntu, and Rails 2.2.2
the demo comes from agile web development with rails 3
script>>some linux script
mysql>some db command
----------------------------------
Catalog Display
-seeing what the application looks like from the buyer's point view
--------------- ...
appointment: this demo ran in ubuntu, and Rails 2.2.2
the demo comes from agile web development with rails 3
script>>some linux script
mysql>some db command
----------------------------------
step 1: create project
script>>rails --database=mysql depot
step 2: create db
script>> ...
一步一步学Ruby(九):Ruby正则表达式(上)
http://www.cnblogs.com/cnblogsfans/archive/2009/02/02/1382745.html
一步一步学Ruby(十):Ruby正则表达式(下)
http://www.cnblogs.com/cnblogsfans/archive/2009/02/03/1383505.html
Spidr 是一个Ruby 的网页爬虫库,可以将整个网站、多个网站、某个链接完全抓取到本地。
http://opensource.csdn.net/p/spidr
网页爬虫汇总,值得收藏
http://apps.hi.baidu.com/share/detail/105705
wiki
http://wiki.blueidea.com/index.php?title=%E7%88%AC%E8%99%AB&diff=6679&oldid=prev
超简单的Web爬虫程序(转贴)&网页爬虫
http://www.lydia-diamond.com/pachong ...
http://www.cnblogs.com/rchen/archive/2006/05/05/392275.html
今天看到一个网页,又因为在家里用电话线上网,一直在线阅读很麻烦。所以就写了个简单的程序把网页抓下来离线阅读,省点电话费:)
这个程序因为主页面链接到的页面都在同一个目录下,结构很简单,只有一层。因此写了一些硬编码做链接地址的分析。
代码如下:
#!/usr/bin/env python
# -*- coding: GBK -*-
import urllib
from sgmllib import SGMLParser
class URLLister(SGMLParse ...
http://www.dnbcw.com/biancheng/dreamweaver/flrt75315.html
简介:这是网页爬虫程序开发经验谈的详细页面,介绍了和dreamweaver,网页爬虫有关的知识,加入收藏请按键盘ctrl+D,谢谢大家的观看!要查看更多有关信息,请点击此处
现在是网络的 ...
http://www.killswitchcollective.com/articles/65_google_maps_on_rails
The Google Maps API is without a doubt one of the most popular APIs available on the web today. It offers webmasters the ability to add mapping functionality, similar to maps.google.com, to their websites. All of Google Maps functi ...
This post is after about a month long hibernation from my blog.
I made my mind up to listen songs as i usually do (it contributes to my hobby). In fact, i was suffering with a headburst headache, so i thought songs might be the stress buster and good entertainer too. What striked my mind was why cou ...
http://grigio.org/textmate_gedit_few_steps
Textmate-like Gedit in few steps
UPDATE: A !! new version !! of this guide is avalaible.
UPDATE: This guide was for gedit 2.18.x, please upgrade to gedit 2.20.x to have an easier color scheme managing. Textmate is really a great text-editor (almost an IDE ...
Install SQLite3 in Ubuntu
http://theplana.wordpress.com/2007/05/11/install-sqlite3-on-ubuntu/
1. Install Sqlite3
sudo apt-get install sqlite3 libsqlite3-dev
sudo gem install sqlite3-ruby
2. To create a data base, we only need to create a empty file.
touch database_nam ...
http://www.howtogeek.com/howto/ubuntu/install-mysql-server-5-on-ubuntu/
Install MySQL Server 5 on Ubuntu
Installing MySQL 5 Server on Ubuntu is a quick and easy process. It almost feels like it should be more difficult.
Open a terminal window, and use the following command:
sudo apt-get instal ...
http://www.ibm.com/developerworks/cn/opensource/os-cn-rubysbl/
Symbol 是什么
Ruby 是一个强大的面向对象脚本语言(本文所用 Ruby 版本为1.8.6),在 Ruby 中 Symbol 表示“名字”,比如字符串的名字,标识符的名字。
创建一个 Symbol 对象的方法是在名字或者字符串前面加上冒号:
创建 symbol 对象
:foo
:test
:”abc”
:”I am a boy”
你可能会问,字符串就是字符串,干吗还有字符串的名字?这是因为在 Ruby 中字符 ...