Skip to content

别把商业模式当成葵花宝典(by 申音) - 思维的乐趣BLOG

来自别把商业模式当成葵花宝典(by 申音) - 思维的乐趣BLOG

不过。我总觉得,创业者对于商业模式的狂热追捧越来越走向了一个误区。此话怎讲?因为模式说到底,实际上是一种复杂商业逻辑的简化。而现在,很多创业者本末倒置了,急着要用一种简单逻辑驾驭复杂世界。换句话说,就是指望弄到一本葵花宝典,然后统治武林。

我是相信,先有商业实践后有成熟模式。这是一个不断试错和做减法的过程,一个从概念模糊到理念清晰的过程,一个面对复杂的商业环境和竞争性的市场,掌握一种你最顺手的方式来获取最大化利润的过程。

这一段打比方比较有趣,特别是关于联想和HP:

脱离了其产生背景学商业模式,只会像欧阳峰一样走火入魔,经脉逆行。好比葵花宝典,本来就是天阉所创,不是人人都可以学的,欲练此功,必先自宫,即使自宫,未必成功。

联想也好,HP也罢,学不了戴尔,都是因为下不了手自宫。眼下“轻公司”时髦,难道就个个把工厂关了,只搞微笑曲线的两尾巴。

Tagged

Using yum-fastestmirror to speed up your Fedora software package updates

The package manager, yum, on Fedora uses a mirror management infrastructure to help locate the geographically closest mirrors. This “geographically closest” mirror is supposed to give you the fastest connection - which unfortunately is usually not the case. For example, the connection between Mainland China and Taiwan is extremely slow despite it’s geographical neighborhood.

Therefore, the yum-fastestmirror plugin becomes very helpful. Quote from Fedora documentation

The fastest mirror plugin enhances the speed of updates by maintaining a local offline hostfile cache of the speed of the mirrors. It sorts the mirror list by speed and prioritizes the faster ones for package downloads.

Enter the command to install:
su -c 'yum install yum-fastestmirror'

One may exclude certain domains from even being listed at all by adding the following line to /etc/yum/pluginconf.d/fastestmirror.conf:
exclude=.tw, .jp

Then you’re up to the speed … Have fun!

Tagged ,

HOWTO: Use ethtool to configure checksum offload for NICs under Linux

What is checksum offloading

From http://www.wireshark.org/docs/wsug_html_chunked/ChAdvChecksums.html

The checksum calculation might be done by the network driver, protocol driver or even in hardware.

For example: The Ethernet transmitting hardware calculates the Ethernet CRC32 checksum and the receiving hardware validates this checksum. If the received checksum is wrong Wireshark won’t even see the packet, as the Ethernet hardware internally throws away the packet.

Higher level checksums are “traditionally” calculated by the protocol implementation and the completed packet is then handed over to the hardware.

Recent network hardware can perform advanced features such as IP checksum calculation, also known as checksum offloading. The network driver won’t calculate the checksum itself but will simply hand over an empty (zero or garbage filled) checksum field to the hardware.
Checksum offloading often causes confusion as the network packets to be transmitted are handed over to Wireshark before the checksums are actually calculated. Wireshark gets these “empty” checksums and displays them as invalid, even though the packets will contain valid checksums when they leave the network hardware later.

Checksum offloading can be confusing and having a lot of [invalid] messages on the screen can be quite annoying. As mentioned above, invalid checksums may lead to unreassembled packets, making the analysis of the packet data much harder.

You can do two things to avoid this checksum offloading problem:
* Turn off the checksum offloading in the network driver, if this option is available.
* Turn off checksum validation of the specific protocol in the Wireshark preferences.

How to turn off checksum offload?
Under linux, check the status of offload parameters for the interface (eth0):
ethtool -k eth0
Then turn off tx-checksumming by:
ethtool -K eth0 tx off
Refer to man page of ethtool for more.

Tagged ,

推荐:从制度角度反思聚源惨剧 - 薛兆丰 新制度主义时代

聚源的惨剧,不仅是某承建商的问题,不仅是某地方领导的问题。必须从制度角度反思。所谓制度,不是“有关部门早有规定并三令五申”之流的制度,而是深入思考整个教育事业通过何种机制、交给哪种性质的机构来推行的问题。

从制度角度反思聚源惨剧 : 薛兆丰 新制度主义时代

Useful resource: World PSTN Tone Database

Found this resource when searching for “stutter dial tone”. It contains the frequency and cadence definitions for the tones - could be quite useful if you are in VoIP business. Click to explore World PSTN Tone Database.

Tagged
Google