skip to main | skip to sidebar

wagoon technology

博客归档

  • ►  2009 (3)
    • ►  三月 (1)
    • ►  二月 (2)
  • ▼  2008 (30)
    • ►  十一月 (2)
    • ►  十月 (5)
    • ►  九月 (16)
    • ▼  八月 (7)
      • setup of php environment (tested)
      • tui email
      • A real online fem service
      • Sun grid computer dervice for academic sociate
      • A sample company
      • 电脑就是"洗衣机"
      • test

参考

  • 天天美食网
  • 美剧BT下载网站
  • 日剧BT下载网站
  • 美国FoxNews新闻
  • 日本NHK新闻
  • 网上电台总汇
  • 日本风味食品加工技术
  • 野菜作り(日本)
  • 蔬菜种植方法(日本)
  • 蘑菇栽培网站
  • 农业节目视频网站
  • 以色列的微型桌面PC
  • 20-30$的 ThinPC (深圳)
  • 台湾PC电源供货商
  • 日本特种PC供货商
  • 日本精密铸造(注射粉末成形,失蜡金属铸造)
  • 蘑菇栽培网站
  • 日本精密模锻企业NiChiDai
  • DC/DC 电源(香港)
  • 日本家电产品市场研究报告(有料)
  • 中国印刷机械(上海西辉机电科技)
  • 开源ERP(恩信)
  • EBOOK (andy.ballard monster)
  • 免费电子书(英文)
  • Thin Client 配件(广东)
  • 中国小型PC生产厂家(佛山Omega)
  • 广东巨微电子(各种主板)
  • 深圳豪腾触摸液晶一体电脑
  • 超便宜主板(深圳奥特赛)
  • 深圳立人电脑小机箱
  • 国外mini,nano,pico itx价格查询
  • 厦门亿联,值得关注的voip企业
  • 国外计算机配件,整机价格查询
  • 台湾时盛电脑配件(东莞)
  • 电子商务国际贸易
  • 电器产品壳体生产厂家
  • 计算机机箱生产厂家(龙腾科技)
  • 川菜美食
  • Link to yunminyang
  • 中国制造网(供货渠道查询)
  • iok 四通兴国服务器配件(东莞)

2008年8月30日星期六

setup of php environment (tested)

Installing PHP5 and Apache on Ubuntu

If you are doing any kind of PHP development, you'll almost always be using Apache along with it. Here's the quick and easy way to get PHP up and running on your Ubuntu box.

First, you'll want to add the extra repositories to Ubuntu's sources.list file.

From a command shell, you will run the following commands:

sudo apt-get install apache2

sudo apt-get install php5

sudo apt-get install libapache2-mod-php5

sudo /etc/init.d/apache2 restart
发帖者 yunmin 时间: 22:44 没有评论:

2008年8月29日星期五

tui email

GNU/Linux下Gmail的mutt+msmtp+getmail解决方案
2007-04-02 22:59
- Outlook(win)->Foxmail(win)->Dreammail(win)->Evolution(linux)->mutt+msmtp+getmail(linux)
上面是我用电子邮件客户端的历程。至于为什么是这样,为什么到了最后居然选择了命令行界面的mutt,不了解Linux好处的人是不会理解的,但是我仍然不想多说,因为我不想把这篇文章变成Linux和CLI的赞美诗,清华大牛人王垠写过一篇《Mutt email 程序使用入门》,讲得比较详细,以下只是我对mutt+msmtp+getmail配置的笔记。

- mutt是邮件管理程序,msmtp是smtp发信程序,getmail是pop收信程序,使用vim编辑邮件,使用wvware把附件中的doc文档转换成html格式查看,使用lynx处理html邮件。发信程序还有一个更强大的叫postfix,但是由于太强大了,一般人用不着它的大部分功能,所以这里使用适合个人用户的msmtp.收信的程度最有名的当数fetchmail,但是似乎fetchmail有一些问题,所以有个牛人就写了 getmail来代替它。如果要实现像Gmail标签那样的功能,即对收到的邮件分门别类,还需要使用一个叫procmail的程序,但是我用不着,这里不介绍。

- 以Ubuntu为例,首先安装需要的程序:
-
sudo apt-get install mutt msmtp getmail4 wv lynx
建立邮件箱:
mkdir ~/Mail
mkdir -m 700 ~/Mail/inbox/{,tmp,new,cur}
cd ~/Mail
vim sent
vim postponed
vim inboxrc
以上三个vim命令建立三个文件,里面不要输入内容,打开后直接保存导出即可。

- 配置mutt:
-
vim ~/.muttrc
在其中加入以下内容(复制后粘贴,其中有些东西要自己设置,我在上面加了带有【】的中文注释):
#
# System configuration file for Mutt
#
#
# default list of header fields to weed when displaying
#
ignore "from " received content- mime-version status x-status message-id
ignore sender references return-path lines
ignore date delivered-to precedence errors-to in-reply-to user-agent
ignore x-loop x-sender x-mailer x-msmail-priority x-mimeole x-ms- x-priority
ignore x-accept-language x-authentication-warning thread- priority importance
ignore x-original-to domainkey-signature dkim-signature
#
# emacs-like bindings
bind editor "\e" kill-word
bind editor "\e" kill-word
#
# map delete-char to a sane value
bind editor delete-char
#
# some people actually like these settings
#set pager_stop
#bind pager previous-line
#bind pager next-line
#
# don't add the hostname to the From header
unset use_domain
# don't generate a From header
unset use_from
#
# Specifies how to sort messages in the index menu.
set sort=threads
#
# Exim does not remove Bcc headers
unset write_bcc
# Postfix and qmail use Delivered-To for detecting loops
unset bounce_delivered
#
# weed out binary-only announcements to -devel-changes
#macro index \CW T!~s\(.*source.*\)\nWn^T~A\n "Weed out binary-only announcements"
#
# imitate the old search-body function
macro index \eb "~b " "search in message bodies"
#
# simulate the old url menu
macro index,pager \cb " urlview" "call urlview to extract URLs out of a message"
macro attach,compose \cb " urlview" "call urlview to extract URLs out of a message"
#
# Show documentation when pressing F1
macro generic "!zcat /usr/share/doc/mutt/manual.txt.gz | sensible-pager\n" "Show Mutt documentation"
macro index "!zcat /usr/share/doc/mutt/manual.txt.gz | sensible-pager\n" "Show Mutt documentation"
macro pager "!zcat /usr/share/doc/mutt/manual.txt.gz | sensible-pager\n" "Show Mutt documentation"
#
# Use folders which match on \\.gz$ or \\.bz2$ as [gb]zipped folders:
open-hook \\.gz$ "gzip -cd %f > %t"
close-hook \\.gz$ "gzip -c %t > %f"
append-hook \\.gz$ "gzip -c %t >> %f"
open-hook \\.bz2$ "bzip2 -cd %f > %t"
close-hook \\.bz2$ "bzip2 -c %t > %f"
append-hook \\.bz2$ "bzip2 -c %t >> %f"
#
# show the incoming mailboxes list (just like "mutt -y") and back when pressing "y"
macro index,pager y "?" "show incoming mailboxes list"
bind browser y exit
#
# If Mutt is unable to determine your site's domain name correctly, you can
# set the default here.
#
# set hostname=cs.hmc.edu
#
# If your sendmail supports the -B8BITMIME flag, enable the following
#
# set use_8bitmime
#
##
## *** DEFAULT SETTINGS FOR THE ATTACHMENTS PATCH ***
##
#
##
## Please see the manual (section "attachments") for detailed
## documentation of the "attachments" command.
##
## Removing a pattern from a list removes that pattern literally. It
## does not remove any type matching the pattern.
##
## attachments +A */.*
## attachments +A image/jpeg
## unattachments +A */.*
##
## This leaves "attached" image/jpeg files on the allowed attachments
## list. It does not remove all items, as you might expect, because the
## second */.* is not a matching expression at this time.
##
## Remember: "unattachments" only undoes what "attachments" has done!
## It does not trigger any matching on actual messages.
#
## Qualify any MIME part with an "attachment" disposition, EXCEPT for
## text/x-vcard and application/pgp parts. (PGP parts are already known
## to mutt, and can be searched for with ~g, ~G, and ~k.)
##
## I've added x-pkcs7 to this, since it functions (for S/MIME)
## analogously to PGP signature attachments. S/MIME isn't supported
## in a stock mutt build, but we can still treat it specially here.
##
attachments +A */.*
attachments -A text/x-vcard application/pgp.*
attachments -A application/x-pkcs7-.*
#
## Discount all MIME parts with an "inline" disposition, unless they're
## text/plain. (Why inline a text/plain part unless it's external to the
## message flow?)
##
attachments +I text/plain
#
## These two lines make Mutt qualify MIME containers. (So, for example,
## a message/rfc822 forward will count as an attachment.) The first
## line is unnecessary if you already have "attach-allow */.*", of
## course. These are off by default! The MIME elements contained
## within a message/* or multipart/* are still examined, even if the
## containers themseves don't qualify.
##
#attachments +A message/.* multipart/.*
#attachments +I message/.* multipart/.*
#
## You probably don't really care to know about deleted attachments.
attachments -A message/external-body
attachments -I message/external-body
#
# colors
color normal white black
color attachment brightyellow black
color hdrdefault cyan black
color indicator black cyan
color markers brightred black
color quoted green black
color signature cyan black
color status brightgreen blue
color tilde blue black
color tree red black
#color header brightgreen black ^From:
#color header brightcyan black ^To:
#color header brightcyan black ^Reply-To:
#color header brightcyan black ^Cc:
#color header brightblue black ^Subject:
#color body brightred black [\-\.+_a-zA-Z0-9]+@[\-\.a-zA-Z0-9]+
#color body brightblue black (https?|ftp)://[\-\.,/%~_:?&=\#a-zA-Z0-9]+
#
# GnuPG configuration
set pgp_decode_command="gpg --status-fd=2 %?p?--passphrase-fd 0? --no-verbose --quiet --batch --output - %f"
set pgp_verify_command="gpg --status-fd=2 --no-verbose --quiet --batch --output - --verify %s %f"
set pgp_decrypt_command="gpg --status-fd=2 %?p?--passphrase-fd 0? --no-verbose --quiet --batch --output - %f"
set pgp_sign_command="gpg --no-verbose --batch --quiet --output - %?p?--passphrase-fd 0? --armor --detach-sign --textmode %?a?-u %a? %f"
set pgp_clearsign_command="gpg --no-verbose --batch --quiet --output - %?p?--passphrase-fd 0? --armor --textmode --clearsign %?a?-u %a? %f"
set pgp_encrypt_only_command="/usr/lib/mutt/pgpewrap gpg --batch --quiet --no-verbose --output - --encrypt --textmode --armor --always-trust -- -r %r -- %f"
set pgp_encrypt_sign_command="/usr/lib/mutt/pgpewrap gpg %?p?--passphrase-fd 0? --batch --quiet --no-verbose --textmode --output - --encrypt --sign %?a?-u %a? --armor --always-trust -- -r %r -- %f"
set pgp_import_command="gpg --no-verbose --import %f"
set pgp_export_command="gpg --no-verbose --export --armor %r"
set pgp_verify_key_command="gpg --verbose --batch --fingerprint --check-sigs %r"
set pgp_list_pubring_command="gpg --no-verbose --batch --quiet --with-colons --list-keys %r"
set pgp_list_secring_command="gpg --no-verbose --batch --quiet --with-colons --list-secret-keys %r"
set pgp_good_sign="^\\[GNUPG:\\] GOODSIG"
#
# S/MIME configuration
set smime_ca_location="~/.smime/ca-bundle.crt"
set smime_certificates="~/.smime/certificates"
set smime_keys="~/.smime/keys"
set smime_pk7out_command="openssl smime -verify -in %f -noverify -pk7out"
set smime_get_cert_command="openssl pkcs7 -print_certs -in %f"
set smime_get_signer_cert_command="openssl smime -verify -in %f -noverify -signer %c -out /dev/null"
set smime_get_cert_email_command="openssl x509 -in %f -noout -email"
set smime_import_cert_command="smime_keys add_cert %f"
set smime_encrypt_command="openssl smime -encrypt %a -outform DER -in %f %c"
set smime_sign_command="openssl smime -sign -signer %c -inkey %k -passin stdin -in %f -certfile %i -outform DER"
# This alternative command does not include the full certificates chain.
# Be sure to understand RFC 2315 section 9.1 before using it.
# set smime_sign_command="openssl smime -sign -signer %c -inkey %k -passin stdin -in %f -outform DER"
set smime_decrypt_command="openssl smime -decrypt -passin stdin -inform DER -in %f -inkey %k -recip %c"
set smime_verify_command="openssl smime -verify -inform DER -in %s %C -content %f"
set smime_verify_opaque_command="openssl smime -verify -inform DER -in %s %C"
#
set mixmaster="mixmaster-filter"
#
# See /usr/share/doc/mutt/README.Debian for details.
source /usr/lib/mutt/source-muttrc.d|
#
#以下是自定义项
#
#收信设置,使用fetchmail收信的时候将下面注释符号去掉半作相应修改,本次使用getmail故此处保持注释状态
#set pop_last=yes
#set pop_pass=【相应Gmail邮箱密码】
#set pop_user=【邮箱账号】@gmail.com
#set pop_host=pops://pop.gmail.com
#
#颜色设置
color normal brightblue default
color attachment blue default
color error red white
color status white blue
color hdrdefault magenta default
color indicator black cyan
#
#发信设置
set sendmail="/usr/bin/msmtp"
set use_from=yes
set from= 【邮箱账号】@gmail.com
set envelope_from=yes
#
#设置默认编辑器
set editor="vim"
#设置信箱
set mbox="~/Mail/inbox"
set mbox_type=maildir
set spoolfile="~/Mail/inboxrc"
set postponed="~/Mail/postponed"
set record="~/Mail/sent"
#
macro index G "!getmail\n" "Invoke getmail"
macro pager G "!getmail\n" "Invoke getmail"
#
# 让mutt监视下面几个邮箱,并随时报告新邮件
# mailboxes "=inbox"
# mailboxes "=USTCstudent"
# mailboxes "=USTCteacher"
# mailboxes "=ustcbbs
# mailboxes "=Gmail"
# set check_new = yes
# set timeout = 600
#
#set alternates=" usr@gmail.com"
## 这是一个格式字符串,用来控制你的index的列表显示。它的缺省定义是
## set index_format="%4C %Z %{%b %d} %-15.15L (%4l) %s"
##指定你有哪 些信箱文件。当你按 "c" 切换信箱时,再按 Tab 键,这些信箱就可供你选择
mailboxes Mailbox sent-mail
## 这是一个 bool 型变量。它表明你在回信时引用原文是否加入原文的邮件头。
set header=no
## 可以设置为 yes, no, ask-yes, 或者 ask-no.
## 这是说,当你按q退出时,是否提示你(ask-yes,ask-no),
## 还是直接就退出了(yes),还是根本不理你(no)。
#set quit=ask-yes
## 那些类型的附件是允许直接通过 .mailcap 浏览的?
#doc类型的附件通过wvware转成html 浏览
auto_view text/html application/msword
## 这也是一个提示性变量。它是确定当你退出时,是否提示你把信件
##从spool 移动到的mbox 文件。
set move=no
## 当 Mutt 用 thread 方式显示时,是否用纯 ascii 表示树状列表。
set ascii_chars=yes
## 回信时是否包含原文。
set include
## 回信的引文之前插入那个符号?
set indent_str="> "
## 设置你自己的邮件头。
my_hdr From: 【邮箱账号】@gmail.com
## 打分
## 新信件+4分,主题包含"通知"的+2,主题包含 "Circulation" +3, 已经标记
## 删除的 -5,上次没有读的 +1,包含 "believe"的 -10(垃圾广告!)。
score "~N" +4
score "~s 通知" +2
score "~s Circulation" +3
score "~D" -5
score "~O" +1
score "~s believe" -10
## 排序方式。
set sort=score
## 当用 thread 排序方式时,我们对各个 thread 的相对排序顺序。
set sort_aux=date
## 如果翻到最后,再按往下翻也不会翻到下一封信件
set pager_stop
## 如果设置,当你按 "r"
## 回信时,就不会再提示你输入回信地址和主题,直接进入编辑
##模式。
set fast_reply
## 当你按 "t" 或者 "D" 之类的标记操作时,是否自动把光标移动到下一封信件。
set resolve=yes
## 地址簿
source ~/.mutt.alias
## 当你在 index 里按 "a"
## 为来信者取别名时,使用哪一个别名文件保存这个别名。
set alias_file=/home/lans/.mutt.alias
## 你发出的邮件保存到那个信箱文件?比如可以像我这样每个月发出的信件放在不同的文件
#里。
set record="~/Mail/=sent-mail-`date +%Y-%m`"
## 你的终端支持哪一种编码的显示?这个必须和你的终端编码一样。
##注意这个如果设置不正确的话会导致在写邮件时出现一个"bad IDN"的错误信息
set charset="utf-8"
## send_charset
set send_charset="gb2312:utf-8:us-ascii:iso-8859-1"
## 外部程序退出时,是否要求用户按一个键才返回。这在察看某些shell命令输出时是比要>的,
## 否则它们一下就消失了。
set wait_key=yes
## 当你要把信件存到另一个信箱,而这个信箱已经存在时,是否提示附加?
set noconfirmappend
## 是否把邮件头也放在编辑器里可以修改?
set edit_headers=no
## 当你在用 pager 看信件时,在 index 留出多少行显示邮件列表?
set pager_index_lines=4
## 告诉 Mutt 你已经订阅了那些邮件列表(mailing-list).
## subscribe fvwm@fvwm.org
## mutt显示日期为中文
set locale="zh_CN"
## Chinaren 等服务器发出来的信件使用了 quoted-printable 的 subject,
## 而且设置编码为 "iso8859-1",这显然是错误的。
## 对付这个错误的办法是把 iso-8859-1 变成 gb2312 的别名
charset-hook ^iso-8859-1$ gb2312
## evolution 发过来的 subject 为 utf-8 编码的邮件标题乱码!
## 那就把不是 utf-8 的编码都映射到 gb2312
charset-hook !utf-8 gb2312

- 配置msmtp
-
cd ~
vim .msmtprc
加入以下内容:
defaults
tls on
account gmail
host smtp.gmail.com
from 【邮箱账号】@gmail.com
auth on
user 【邮箱账号】@gmail.com
password 【邮箱密码】
port 587
account default : gmail

- 配置getmail
-
mkdir ~/.getmail
cd ~/.getmail
vim getmailrc
加入以下内容:
[retriever]
type = SimplePOP3SSLRetriever
server = pop.gmail.com
port = 995
username = 【邮箱账号】@gmail.com
password = 【邮箱密码】
#
[destination]
type = Maildir
path = ~/Mail/inbox/
#
[options]
verbose = 0
delete = true
message_log = ~/.getmail/getmail.log

- 设置html邮件、doc附件的处理:
-
cd ~
vim .mailcap
加入以下内容:
application/msword; wvHtml --charset=gb2312 %s - | lynx --dump -stdin;nametemplate=%s.html; copiousoutput
text/html; lynx --dump %s; nametemplate=%s.html; copiousoutput

- 修改文件权限:
-
由于上面的几个配置文件中密码和用户名都是明码,如果被别人看到就完了,所以这里设置其权限为只有创建者本人可读写,其它人均不可读写:
cd ~
chmod 600 .muttrc
chmod 600 .msmtprc
cd .getmail
chmod 600 getmailrc

- 使用crontab定时自动收信(非必需,可选):
-
在终端机中输入:
crontab -e
每隔10分钟收一次信,只收未读的信件:
0,10,20,30,40,50 * * * * getmail -n

- mutt使用地址簿
-
用 alias 来实现一个地址簿。alias 命令的形式是这样的,举个例子:
alias ab Xx X
alias 是命令,ab 是别名,XxX 是一个标准 的 email 地址。这样,如果你在 index 里按 "m",在 To: 的提示下输入 "ab",就可 以发信给 XxX。
-
在 To: 的提示下按 Tab 就可以显示联系人列表,然后你可以移动光标选择联系人。
-
如果你有很多 alias 要写,最好把它们写到另外一个文件,比如叫 .mutt.alias. 然后 在 .muttrc 里加上:
source ~/.mutt.alias
在里面写诸如
alias music Music
alias video 科大影视
.........
-
你还可以设置一个变量:
set alias_file=~/.mutt.alias
这样你在 index 里按 "a",就可以把来信人加入到这个 alias 文件了。

- 本文参考:
中国科技大学 李雪白 《配置mutt做邮件客户端》
清华大学 王垠 《Mutt email 程序使用入门》
发帖者 yunmin 时间: 01:41 没有评论:

2008年8月24日星期日

A real online fem service

http://www.onlinefeasolver.com/

I am an independent FEA consultant using the open source Calculix FE code. The services I offer are:

1. General FEA structural analysis consulting on linear and non-linear problems
2. Topology optimization, i.e load path analysis to determine optimal placement of material in your designs to save weight
3. Online compute service to let analysts run their large FE models on my servers. Uploaded input decks need to be in the Abaqus input deck format
4. Software development to automate post-processing of your FEA results data for specialized applications

For consulting, I focus on the most common analysis types, i.e linear static, material plasticity, geometric non-linearity and contact. The history of FEA has shown that these analysis are generally all that is needed to understand 95% of most mechanical phenomena. In any case one should always begin an FEA analysis with simplicity and add complexity as needed. Therefore you can use my services to push more of your routine analysis upfront and thereby reduce the number of licenses you have to purchase for expensive commercial FEA solvers.

My topology optimization service provides you with videos of how material is distributed in your structure. You can watch some sample videos here. I wrote the entire script myself based on an evolutionary algorithm.

For the compute cluster , I provide full technical assistance to ensure your models will run and converge. Your input decks needs to be in the Abaqus format. Abaqus is the de facto standard for finite element input decks and most pre-processors are able to export an Abaqus input deck. I will communicate any issues I find and provide technical recommendations for how to resolve the issues. Futhurmore, I will leverage my experience with non-linear analysis to make sure your jobs converge quickly and provide meaningful results.

Please note that results obtained from CalculiX are in no way connected to Abaqus, which is a proprietary, general purpose finite element code developed and supported by Dassault Systemes.

I also can write software to automate the labor intensive tasks of post-processing your result data. Many analysts use Microsoft Excel to do their own calculations on results file. This can be quite time consuming and error prone . I would be glad to develop scripts written in either Python or Perl to automate your process. I can also develop web-based calculators and softwares as in my beam bending stress examples.

I am still in the pilot phase and am actively looking for analysts to try my services at no cost or obligation.
发帖者 yunmin 时间: 05:27 没有评论:

Sun grid computer dervice for academic sociate

Massive Compute Power, at $1/CPU-hr
Software as a Service Organizations HPC Forum Grid Computing in Business Financial Services: Network.com: $1/CPU-hr. Sun’s new Network.com delivers a massively powerful compute grid infrastructure and access to more than 20 high-performance computing (HPC) applications. With pay-per-use pricing at $1/CPU-hour, this unique service can change how research is conducted.

Sun's new Network.com delivers on-demand apps for HPC

On March 13, Sun announced Network.com and the Network.com Application Catalog. Sun Inner Circle asked Kris Thorleifsson, Sun's group marketing manager for Network.com, to explain the new services and what they mean for users, ISVs, and developers.

Inner Circle (IC): What is Network.com?

Thorleifsson: Network.com enables communities of scientists and academics in life sciences, education, manufacturing, and other fields to easily accelerate innovation, and get research done faster and cheaper. It's an HPC supercomputing resource that delivers immediate online access to popular ISV and open source applications used by researchers in their daily work and provides access to a powerful compute grid. The portal gives users everything they need to conduct complex computational tasks and analysis to help speed scientific discovery. Just select the application, bring your data, and get results fast!

IC: Can you give us a few examples of some applications that are available in the catalog today?

Thorleifsson: The Network.com Application Catalog is loaded with more than 20 HPC applications for life sciences, academic, and manufacturing users to try at minimal cost, such as SimBioSys' eHiTS, Mathspec's Rational Numbers, BLAST, FASTA, Glimmer, T-Coffee, GROMACS, fastDNAml, ElmerSolver, Impact, OFELI, Blender, CalculiX, to name a few. Sun is working with its ISV partners and has engaged with numerous open source communities to grow the list of available applications.
发帖者 yunmin 时间: 05:20 没有评论:

A sample company

http://www.bconverged.com/index.php

Services

Convergent Mechanical Solutions provides expert computer aided
engineering (CAE) software development, services and support to
corporate engineering and research organizations.
Products

ESAComp is analysis and design software for composite materials developed under the European Space Agency and distributed in North America by Convergent.



CalculiX is an open source finite element analysis
software suite with an explicit and implicit solver.
About

Convergent is a technical services company licensed
in the City of Seattle with clients in a dozen countries.
Contact

Please call or email for more information.
Login

This password protected area is for sharing data
and software with colleagues and clients.
发帖者 yunmin 时间: 05:12 没有评论:

2008年8月21日星期四

电脑就是"洗衣机"

我们买洗衣机,从来是个拿来就能用的东西,不需要再往里面安装软件。可我们买电脑则需要安装这样,那样的一大堆软件来实现我们的应用。
电脑何必非要搞得很通用,然后把每个人都训练成系统管理员。
用户在买的时候就想好要搞什么应用,然后在市场上订购满足要求的“机器”就可以了。系统是安装好的拿回来马上就使用,使用中也不需要自己去维护,直接让专业人员网上维护。你想,除开有特别DIY兴趣的人,谁会自己去改造,修理洗衣机呢。

电脑一定要把它当成洗衣机一样的电器来买卖,走软硬件集成服务的道路。
发帖者 yunmin 时间: 20:47 没有评论:

2008年8月19日星期二

test

Hello World



Your name:


Your age:



发帖者 yunmin 时间: 20:55 没有评论:
较新的博文 主页
订阅: 博文 (Atom)