自从原来那家虚拟主机提供商更换了服务器以后,速度越来越慢,而且最近还老是提示出错…

刚好Search到这家提供商还不错,而且还是SSD的硬盘。试了一下不错~ 换!

这下速度快多了,hoho…

可以把之前没机会贴上来的照片啊等等的什么补全了~

 

回来快一个多月了吧,想想还是把这次奥兰多迪斯尼的攻略写一下。以纪念这一次难忘的旅程。

迪斯尼真不愧是小朋友的天堂,堪称梦幻之旅一点都不为过。建议如果有条件,一定要带小朋友去一次迪斯尼乐园。真是目不暇接,大开眼界啊!

DisneyWorld

奥兰多的迪斯尼乐园是全世界迪斯尼乐园中最大的。由四个园区组成,每个园区都有每个园区各自的特点。我们这次在迪斯尼玩了整整四天,每天都累个半死,第二天怎么都爬不起来。每天在迪斯尼的时候都说,不行,时间不够用。明早一定要挣扎爬起来赶早,但是结果每天都没有实现。每天都九点多了,才进入园区。感觉如果要每天玩完一个园,可以实现,但会很累、很累…… 这次为了实现玩遍里面的所有设置,脚上都走出了血泡。而LP呢,Costco新买的袜子都走通了~ 呵呵

Walter Disney World由下面四个园区组成:

Magic Kingdom Park(魔幻王国):最早建成的园区,迪斯尼的标致城堡就在此。基本来迪斯尼的话,都会到这逛一下的。但是这里的游玩项目主要都是针对小朋友的。

DSC03413

继续阅读

First verify that Tomcat is running on port 8080. Run the following command

# netstat -ntl

The output will look something like

Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address               Foreign Address             State
tcp        0      0 127.0.0.1:25                0.0.0.0:*                   LISTEN
tcp        0      0 0.0.0.0:22                  0.0.0.0:*                   LISTEN
tcp        0      0 ::ffff:127.0.0.1:8005       :::*                        LISTEN
tcp        0      0 :::8009                     :::*                        LISTEN
tcp        0      0 :::8080                     :::*                        LISTEN
tcp        0      0 :::22                       :::*                        LISTEN

Run the following command to redirect port 80 traffic to port 8080

# iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-port 8080

Run the folloing command to verify that redirect is working fine

# iptables -t nat -L

The output will look something like

Chain PREROUTING (policy ACCEPT)
target     prot opt source               destination
REDIRECT   tcp  --  anywhere             anywhere            tcp dpt:http redir ports 8080

Chain OUTPUT (policy ACCEPT)
target     prot opt source               destination

Chain POSTROUTING (policy ACCEPT)
target     prot opt source               destination

Run the following command to remove the routing

# iptables -t nat -D PREROUTING -p tcp --dport 80 -j REDIRECT --to-port 8080

 

FROM: Glass Onion Blog

你需要管理超负荷的信息量吗?一些简单小技巧可以帮助你,在工作中,个人以及社会生活中高效应对大量信息。现在就告诉你怎么做。你需要一些系统方式来帮助你让所有事情保持在正常轨道上。一旦你将一个可以信赖的系统安装到位,你可以松口气了。让我们一起看一下,十个简单高效小技巧,帮你做到。

1. Get the list habit.养成列表的习惯

Lists are essential to help you to manage your overloaded information. You probably use To Do lists all the time; however, lists come in many different forms. Examples include: checklists, planning lists, password lists, reading lists, reference lists, back-burner lists, and goal lists. All your information can be added to a list, or to several lists.

列表对于你管理超负荷信息来说,至关重要。你可能一直在使用“任务表”(To Do lists);然而,列表可以有很多种形式。比如说,核对列表,计划表,密码列表,阅读清单,参照表,无关紧要任务表和目标列表。你所要的信息都可以加到一个或者一些表上。

You can even create lists to keep track of lists. For example, you might have a list of lists for “work” and another for “home.” Lists can be text-based, or visual. If you’re a visual person, you’ll find a mind mapping program likeFreeMind useful.

你甚至可以创造一个列表,来让所有其他列表有序。比如说,你可以有一个“列表的列表”,一个用来工作,一个家用。表格可以以文字为主,也可以增加一些视觉信息。如果你是一个对图片信息敏感的人,你可以找一个心智绘图工具,像FreeMind就很管用。

I use Evernote to manage my lists. You can use Evernote anywhere, on many difference devices. Its “table of contents” feature is wonderful for lists. With this feature, you can select a number of notes which contain lists and you can create a table of contents note for them all with a couple of clicks. Just drag your list notes to the shortcut bar for easy access.

我使用 Evernote来管理我的列表。你可以随时随地使用 Evernote,在许多不同的设备上都可以使用。它的“目录”这一特征功能对列表来说非常棒。有了这个功能,你可以选择一些关键词,链接这些表格,然后你只需要点击几下,就可以给这些关键词创建一个目录。只要把你的列表关键词拽到你的快捷栏上,你就可以方便使用了。继续阅读

Today in this article we are going to discuss about some tools and commands that might answer your questions like name of your motherboard’s chipset, NIC type, etc. Some of the tools are in built into any Linux system and others need to be downloaded.

Example 1: lspci command

This standard Linux utility shows what your systems have got internally. The command is combination of ls, the standard command to list files and PCI that is for the peripheral connection. You can also expect your results to include AGP and onboard components like your USB chipset.

The command is much helpful in diagnosing bugs related to PCI devices.Using -t option of lspci command you can see PCI layout in a tree format.继续阅读