<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Jimey’s Life &#38;&#38; Jimey’s World &#187; Internet</title>
	<atom:link href="http://jimey.com/category/c/internet/feed" rel="self" type="application/rss+xml" />
	<link>http://jimey.com</link>
	<description>Learning something new everyday</description>
	<lastBuildDate>Thu, 05 Aug 2010 08:03:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>MocoSpace Architecture &#8211; 3 Billion Mobile Page Views a Month</title>
		<link>http://jimey.com/2010/05/05/mocospace-architecture-3-billion-mobile-page-views-a-month.html</link>
		<comments>http://jimey.com/2010/05/05/mocospace-architecture-3-billion-mobile-page-views-a-month.html#comments</comments>
		<pubDate>Wed, 05 May 2010 05:58:24 +0000</pubDate>
		<dc:creator>jimey</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[MocoSpace]]></category>
		<category><![CDATA[S3]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://jimey.com/2010/05/05/mocospace-architecture-3-billion-mobile-page-views-a-month.html</guid>
		<description><![CDATA[原文转自 http://highscalability.com/blog/2010/5/3/mocospace-architecture-3-billion-mobile-page-views-a-month.html  &#160;  This is a guest post by Jamie Hall, Co-founder &#38; CTO of MocoSpace, describing the architecture for their mobile social network. This is a timely architecture to learn from a..... ]]></description>
			<content:encoded><![CDATA[<p>原文转自 <a title="http://highscalability.com/blog/2010/5/3/mocospace-architecture-3-billion-mobile-page-views-a-month.html" href="http://highscalability.com/blog/2010/5/3/mocospace-architecture-3-billion-mobile-page-views-a-month.html">http://highscalability.com/blog/2010/5/3/mocospace-architecture-3-billion-mobile-page-views-a-month.html</a></p>
<p>&#160;</p>
<p>This is a guest post by Jamie Hall, Co-founder &amp; CTO of <a href="http://www.mocospace.com/">MocoSpace</a>, describing the architecture for their mobile social network. This is a timely architecture to learn from as it combines several hot trends: it is very large, mobile, and social. What they think is especially cool about their system is: how it optimizes for device/browser fragmentation on the mobile Web; their multi-tiered, read/write, local/distributed caching system; selecting PostgreSQL over MySQL as a relational DB that can scale.</p>
<p>MocoSpace is a mobile social network, with 12 million members and 3 billion page views a month, which makes it one of the most highly trafficked mobile Websites in the US. Members access the site mainly from their mobile phone Web browser, ranging from high end smartphones to lower end devices, as well as the Web. Activities on the site include customizing profiles, chat, instant messaging, music, sharing photos &amp; videos, games, eCards and blogs. The monetization strategy is focused on advertising, on both the mobile and Websites, as well as a virtual currency system and a handful of premium feature upgrades.</p>
<h4>Stats</h4>
<ol>
<li>3 billion page views a month </li>
<li>Top 4 most trafficked mobile website after MySpace, Facebook and Google (http://www.groundtruth.com/mobile-is-mobile) </li>
<li>75% mobile Web, 25% Web </li>
<li>12 million members </li>
<li>6 million unique visitors a month </li>
<li>100k concurrent users </li>
<li>12 million photo uploads a month </li>
<li>2 million emails received a day, 90% spam, 2.5 million sent a day </li>
<li>Team of 8 developers, 2 QA, 1 sysadmin </li>
</ol>
<h4>Platform</h4>
<ol>
<li>CentOS + Red Hat </li>
<li>Resin application server — Java Servlets, JavaServer Pages, Comet </li>
<li>PostgreSQL </li>
<li>Memcached </li>
<li>ActiveMQ&#8217;s job + message queue, in Red Hat cluster for high availability </li>
<li>Squid &#8211; static content caching, tried Varnish but had stability issues </li>
<li>JQuery + Ajax </li>
<li>S3 for user photo &amp; video storage (8 TB) and EC2 for photo processing </li>
<li>F5 BigIP load balancers &#8211; sticky sessions, gzip compression on all pages </li>
<li>Akamai CDN &#8211; 2 TB a day, 250 million requests a day </li>
<li>Monitoring &#8211; Nagios for alerts, Zabbix for trending </li>
<li>EMC SAN &#8211; high IO performance for databases by RAIDing (RAID 10) lots of disks, replacing with high performance Fusion-io solid-state flash ioDrives, much more cost effective </li>
<li>PowerMTA for mail delivery, Barracuda spam firewalls </li>
<li>Subversion source control, Hudson for continuous integration </li>
<li>FFMPEG for Mobile to Web and Web to mobile video transcoding </li>
<li>Selenium for browser test case automation </li>
<li>Web tier
<ol>
<li>5x Dell 1950, 2x dual core, 16G RAM </li>
<li>5x Dell 6950/R905, 4x dual core, 32G RAM </li>
</ol>
</li>
<li>Database tier
<ol>
<li>2x Sun Fire X4600 M2 Server, 8x quad core, 256G RAM </li>
<li>2x Dell 6950, 4x dual core, 64G RAM </li>
</ol>
</li>
</ol>
<h4>Architecture</h4>
<ol>
<li>All pages are dynamic, with user data and customizations as well as many browser and device specific optimizations. Browser and device fragmentation issues are much greater on mobile than on the Web. Many optimizations, adaptations required based on browser capabilities, limited support for CSS/JavaScript, screen size, etc. Mobile Web traffic is often served via network proxies (gateways), with poor support for Cookies, making session management and user identification a challenge. </li>
<li>A big challenge is handling the device/browser fragmentation on the mobile Web &#8211; optimizing for a huge range of device capabilities (everything from iPhones with touchscreens to 5 year old Motorola Razrs), screen sizes, lack of / inconsistent Web standards compliance, etc. We abstract out our presentation layer so we can serve pages to all mobile devices from the same code base, and maintain a large device capabilities database (containing things like screen size, supported file types, maximum allowed page sizes, etc) which is used to drive generation of our pages. The database contains capability details for hundreds of devices and mobile browser types. </li>
<li>Database is sharded based on a user key, with a master lookup table mapping users to shards. We rolled our own query and aggregation layer, allowing us to query and join data across shards, though this is not used frequently. With sharding we sacrifice some consistency, but that&#8217;s Ok as long as you&#8217;re not running a bank. We perform data consistency checks offline, in batches, with the goal being eventual consistency. Large tables are partitioned into smaller sub tables for more efficient access, reducing time tables are locked for updates as well as operational maintenance activities. Log shipping used for warm standbys. </li>
<li>A multi-tiered caching system is used, with data cached locally within the application servers as well as distributed via Memcached. When making an update we don&#8217;t just invalidate the cache and then re-populate after reading again from the database, rather we update Memcached with the new data and save another trip to the database. When updating the cache an invalidation directive is sent via the messaging queue to the local caches on each of the application servers. </li>
<li>A distributed message queue is used for distributed server communication, everything from sending messages in realtime between users to system messages such as local cache invalidation directives. </li>
<li>Dedicated server for building and traversing social graph entirely in memory, used to generate friend recommendations, etc. </li>
<li>Load balancer used for rolling deploys of new versions of the site without affecting performance/traffic. </li>
<li>Release every 2 weeks. Longer release cycles = exponential complexity, more difficult to troubleshoot and rollback. Development team responsible for deploying to and managing production systems ¿ ¿you built it, you manage it¿. </li>
<li>Kickstart used to automate server builds from bare metal. Puppet is used to configure a server to a specific personality i.e. Webserver, database server, cache server etc, as well as to push updated policies to running nodes. </li>
</ol>
<h4>Lessons Learned</h4>
<ol>
<li><strong>Make your boxes sweat</strong>. Don&#8217;t be afraid of high system load as long as response times are acceptable. We pack as many as five application server instances on a single box, each running on a different port. Scale up to the high end of commodity hardware before scaling out. Can pick up used or refurbished powerful 4U boxes for cheap. </li>
<li><strong>Understand where your bottlenecks are in each tier</strong>. Are you CPU or IO (disk, network) bound? Database is almost always IO (disk) bound. Once the database doesn&#8217;t fit in RAM you hit a wall. </li>
<li><strong>Profile the database religiously</strong>. Obsess when it comes to optimizing the database. Scaling Web tier is cheap and easy, database tier is much harder and expensive. Know the top queries on your system, both by execution time and frequency. Track and benchmark top queries with each release, need to catch and address performance issues with the database early. We use the pgFouine log analyzer and new PostgreSQL pg_stat_statements utility for generating profiling snapshots in real-time. </li>
<li><strong>Design to disable</strong>. Be able to configure and turn off anything you release instantly, without requiring a code change or deployment. Load and stress testing are important but nothing like testing with live, production traffic via incremental, phased rollouts. </li>
<li><strong>Communicate synchronously only when absolutely necessary</strong>. When one component or service fails it shouldn&#8217;t bring down other parts of the system. Do everything you can in the background or as a separate thread or process, don&#8217;t make the user wait. Update the database in batches wherever possible. Any system making requests outside the network need aggressive monitoring, timeout settings, and failure handling / retries. For example, we found S3 latency and failure rates can be significant, so we queue failed calls and retry later. </li>
<li><strong>Think about monitoring during design, not after</strong>. Every component should produce performance, health, throughput, etc data. Set up alerts when these exceed thresholds. Consolidated graphs showing metrics across all instances, rather than just per instance, are particularly helpful for identifying issues and trends at a glance and should be reviewed daily — if normal operating behavior isn&#8217;t well understood it&#8217;s impossible to identify and respond to what isn&#8217;t. We tried many monitoring systems &#8211; Cacti, Ganglia, Hyperic, Zabbix, Nagios, as well as some custom built solutions. Whichever you use the most important thing is to be comfortable with it, otherwise you won&#8217;t use it enough. It should be easy, using templates, etc to quickly monitor new boxes and services as you throw them up. </li>
<li><strong>Distributed sessions can be a lot of overhead</strong>. Go stateless when you can, but when you can&#8217;t consider sticky sessions. If the server fails the user loses their state and may need to re-login, but that&#8217;s rare and acceptable depending on what you need to do. </li>
<li><strong>Monitor and beware of full/major garbage collection events in Java</strong>, which can lock up the whole JVM for up to 30 seconds. We use Concurrent Mark Sweep (CMS) garbage collector, which introduces some additional system overhead, but have been able to eliminate full garbage collections. </li>
<li>When a site gets large enough it becomes a magnet for spammers and hackers, both on site and from outside via email, etc. Captcha and IP monitoring are not enough. Must <strong>invest aggressively in detection and containment systems</strong>, internal tools to detect suspicious user behavior and alert and/or attempt to automatically contain. </li>
<li><strong>Soft delete whenever possible</strong>. Mark data for later deletion, rather than deleting immediately. Deletion can be costly, so queue up for after hours, plus if someone makes a mistake and deletes something they shouldn¿t have it¿s easy to rollback. </li>
<li><strong>N+1 design</strong>. Never less than two of anything. </li>
</ol>
<p>I&#8217;d really like to thank Jamie for taking the time write this experience report. It&#8217;s a really useful contribution for others to learn from. If you would like to share the architecture for your fablous system, please <a href="http://highscalability.com/blog/2010/contact/">contact me</a> and we&#8217;ll get started.</p>
<p>&#160;</p>
<p>^^^^^^^^^^^^^^^^^^^^^^</p>
<p>很实际的经验分享,值得被转载下.尤其是各个平台的搭配与使用目的,很清晰明确,看来Amazon的S3应用是越来越广泛了.目前我发现的不仅仅是twitter的头像icon的存储,又加上这个MocoSpace了.</p>
<h3  class="related_post_title">相关博文</h3><ul class="related_post"><li>2010-04-22 -- <a href="http://jimey.com/2010/04/22/several-articles-on-twitter-hadoop-cassandra-pig-flockdbu002639s-slide.html" title="几篇关于twitter,hadoop,Cassandra,Pig,FlockDB的slide">几篇关于twitter,hadoop,Cassandra,Pig,FlockDB的slide</a> (0)</li><li>2010-04-03 -- <a href="http://jimey.com/2010/04/03/marketing-in-twitter.html" title="Marketing in Twitter">Marketing in Twitter</a> (0)</li><li>2010-04-01 -- <a href="http://jimey.com/2010/04/01/foolu002639s-day.html" title="愚人节">愚人节</a> (2)</li><li>2010-03-30 -- <a href="http://jimey.com/2010/03/30/the-garden-of-eden-subtitle-blog-station-uses-the-approach.html" title="伊甸园字幕博客站利用办法">伊甸园字幕博客站利用办法</a> (2)</li><li>2010-03-24 -- <a href="http://jimey.com/2010/03/24/twittersleepingtime.html" title="TwitterSleepingtime">TwitterSleepingtime</a> (0)</li><li>2009-12-26 -- <a href="http://jimey.com/2009/12/26/nateu002639s-twitter-business-model.html" title="NATE的twitter商业模式">NATE的twitter商业模式</a> (0)</li><li>2009-12-25 -- <a href="http://jimey.com/2009/12/25/twitter-search-result-u0026gt-language-filter.html" title="twitter search result -&gt; language filter">twitter search result -&gt; language filter</a> (0)</li><li>2009-12-18 -- <a href="http://jimey.com/2009/12/18/twitter-rss-reminder.html" title="twitter rss 提醒">twitter rss 提醒</a> (0)</li><li>2009-12-18 -- <a href="http://jimey.com/2009/12/18/feedburner-to-be-more-social.html" title="feedburner &#8211; To be more social">feedburner &#8211; To be more social</a> (0)</li><li>2009-11-05 -- <a href="http://jimey.com/2009/11/05/flickr-pro-account-to-use-experience.html" title="Flickr Pro帐号使用经历">Flickr Pro帐号使用经历</a> (1)</li><li>2009-10-31 -- <a href="http://jimey.com/2009/10/31/to-continue-to-micro-blog-to-continue-to-sync-messages.html" title="继续微博客，继续同步消息">继续微博客，继续同步消息</a> (2)</li><li>2009-08-17 -- <a href="http://jimey.com/2009/08/17/too-long-and-i-did-not-write-a-blog-camera-u0026amp-monday.html" title="太久没写博客了&amp;周一照相">太久没写博客了&amp;周一照相</a> (4)</li><li>2009-08-05 -- <a href="http://jimey.com/2009/08/05/zt-looking-ahead-summed-up-his-career-over-the-past-10-years-programmers-to-give-the-programmer-little-brother-little-sister-had-some-of-the-concluding-advice.html" title="[ZT]展望未来，总结过去10年的程序员生涯，给程序员小弟弟小妹妹们的一些总结性忠告">[ZT]展望未来，总结过去10年的程序员生涯，给程序员小弟弟小妹妹们的一些总结性忠告</a> (1)</li><li>2009-05-06 -- <a href="http://jimey.com/2009/05/06/recent-did-not-how-to-write-blog-nonsense-also-has-been-much-less.html" title="最近没怎么写博客，废话也少了很多">最近没怎么写博客，废话也少了很多</a> (3)</li><li>2009-04-17 -- <a href="http://jimey.com/2009/04/17/south-koreau002639s-version-of-the-twitter-%eb%af%b8%ed%88%ac-%ed%85%8c%ec%9d%b4-me2day-second.html" title="韩国版的twitter 미투테이(me2day) （第二篇）">韩国版的twitter 미투테이(me2day) （第二篇）</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://jimey.com/2010/05/05/mocospace-architecture-3-billion-mobile-page-views-a-month.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>几篇关于twitter,hadoop,Cassandra,Pig,FlockDB的slide</title>
		<link>http://jimey.com/2010/04/22/several-articles-on-twitter-hadoop-cassandra-pig-flockdbu002639s-slide.html</link>
		<comments>http://jimey.com/2010/04/22/several-articles-on-twitter-hadoop-cassandra-pig-flockdbu002639s-slide.html#comments</comments>
		<pubDate>Thu, 22 Apr 2010 07:02:02 +0000</pubDate>
		<dc:creator>jimey</dc:creator>
				<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Big Data]]></category>
		<category><![CDATA[Cassandra]]></category>
		<category><![CDATA[distributed]]></category>
		<category><![CDATA[FlockDB]]></category>
		<category><![CDATA[hadoop]]></category>
		<category><![CDATA[HBase]]></category>
		<category><![CDATA[Pig]]></category>
		<category><![CDATA[real-time search]]></category>
		<category><![CDATA[SlideShare]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://jimey.com/2010/04/22/%e5%87%a0%e7%af%87%e5%85%b3%e4%ba%8etwitterhadoopcassandrapigflockdb%e7%9a%84slide.html</guid>
		<description><![CDATA[http://www.slideshare.net/kevinweil/nosql-at-twitter-nosql-eu-2010  http://www.slideshare.net/ryansking/scaling-twitter-with-cassandra  http://www.slideshare.net/nkallen/q-con-3770885  Big Data in Real-Time at Twitter  http://www.slideshare.net/al3x/building-distributed-systems-in-scala  &#160;  主要..... ]]></description>
			<content:encoded><![CDATA[<p><a title="http://www.slideshare.net/kevinweil/nosql-at-twitter-nosql-eu-2010" href="http://www.slideshare.net/kevinweil/nosql-at-twitter-nosql-eu-2010">http://www.slideshare.net/kevinweil/nosql-at-twitter-nosql-eu-2010</a></p>
<p><a title="http://www.slideshare.net/ryansking/scaling-twitter-with-cassandra" href="http://www.slideshare.net/ryansking/scaling-twitter-with-cassandra">http://www.slideshare.net/ryansking/scaling-twitter-with-cassandra</a></p>
<p><a title="http://www.slideshare.net/nkallen/q-con-3770885" href="http://www.slideshare.net/nkallen/q-con-3770885">http://www.slideshare.net/nkallen/q-con-3770885</a></p>
<p><a href="http://jimey.com/tag/big-data" class="st_tag internal_tag" rel="tag" title="Posts tagged with Big Data">Big Data</a> in Real-Time at Twitter</p>
<p><a title="http://www.slideshare.net/al3x/building-distributed-systems-in-scala" href="http://www.slideshare.net/al3x/building-distributed-systems-in-scala">http://www.slideshare.net/al3x/building-distributed-systems-in-scala</a></p>
<p>&#160;</p>
<p>主要分析了功能上需求与分散系统采用所能完成的目的的合理搭配.</p>
<p>个人觉得是很不错的几篇slide有助于对twitter的一个基本了解,当然是背后构架的基本了解,各个功能与服务是通过什么来实现以及达到一个怎么样的高度</p>
<p>具体内容各位还是看slide吧,谁看谁知道.</p>
<p>&#160;</p>
<p>^^^^^^^^^^^^</p>
<p>再记下来本书名叫</p>
<p>Programming Scala (O’Reilly 2009)</p>
<h3  class="related_post_title">相关博文</h3><ul class="related_post"><li>2010-04-03 -- <a href="http://jimey.com/2010/04/03/marketing-in-twitter.html" title="Marketing in Twitter">Marketing in Twitter</a> (0)</li><li>2009-03-26 -- <a href="http://jimey.com/2009/03/26/midnight.html" title="半夜">半夜</a> (0)</li><li>2009-03-23 -- <a href="http://jimey.com/2009/03/23/information-retrieval-course-2-weeks-to-a-summary-of.html" title="Information Retrieval 课程2周来的总结">Information Retrieval 课程2周来的总结</a> (0)</li><li>2009-03-09 -- <a href="http://jimey.com/2009/03/09/last-week-record-u0026amp-made-real-time-search-look-forward-to.html" title="上周记录&amp;国产real-time search期待">上周记录&amp;国产real-time search期待</a> (2)</li><li>2009-02-01 -- <a href="http://jimey.com/2009/02/01/wanted-to-terms-u0026amp.html" title="很想写点什么">很想写点什么</a> (0)</li><li>2009-01-21 -- <a href="http://jimey.com/2009/01/21/sorry-google-you-missed-the-real-time-web.html" title="Sorry Google, You Missed the Real-Time Web!">Sorry Google, You Missed the Real-Time Web!</a> (0)</li><li>2009-01-21 -- <a href="http://jimey.com/2009/01/21/frienddeck-a-friendfeed-search-tool.html" title="FriendDeck: A FriendFeed Search Tool">FriendDeck: A FriendFeed Search Tool</a> (0)</li><li>2008-11-18 -- <a href="http://jimey.com/2008/11/18/cloud-computing-on-the-next-week-to-discuss-the-curriculum-some-of-the-ideas.html" title="关于下下周cloud computing讨论课程的一些想法">关于下下周cloud computing讨论课程的一些想法</a> (0)</li><li>2008-11-11 -- <a href="http://jimey.com/2008/11/11/hadoop-hbase-performance-evaluation.html" title="Hadoop HBase Performance Evaluation">Hadoop HBase Performance Evaluation</a> (0)</li><li>2008-11-10 -- <a href="http://jimey.com/2008/11/10/another-week-passed-and-concluded.html" title="又一周过去了，总结">又一周过去了，总结</a> (0)</li><li>2010-05-06 -- <a href="http://jimey.com/2010/05/06/ubuntu10-04-compiled-hadoop-version-eclipse-plugin-jar-and-hadoop-0-20-3-dev-eclipse-plugin-jar-download.html" title="Ubuntu10.04 编译hadoop-${version}-eclipse- plugin.jar and hadoop-0.20.3-dev-eclipse-plugin.jar">Ubuntu10.04 编译hadoop-${version}-eclipse- plugin.jar and hadoop-0.20.3-dev-eclipse-plugin.jar</a> (0)</li><li>2010-05-05 -- <a href="http://jimey.com/2010/05/05/mocospace-architecture-3-billion-mobile-page-views-a-month.html" title="MocoSpace Architecture &#8211; 3 Billion Mobile Page Views a Month">MocoSpace Architecture &#8211; 3 Billion Mobile Page Views a Month</a> (0)</li><li>2010-04-01 -- <a href="http://jimey.com/2010/04/01/foolu002639s-day.html" title="愚人节">愚人节</a> (2)</li><li>2010-03-30 -- <a href="http://jimey.com/2010/03/30/the-garden-of-eden-subtitle-blog-station-uses-the-approach.html" title="伊甸园字幕博客站利用办法">伊甸园字幕博客站利用办法</a> (2)</li><li>2010-03-24 -- <a href="http://jimey.com/2010/03/24/twittersleepingtime.html" title="TwitterSleepingtime">TwitterSleepingtime</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://jimey.com/2010/04/22/several-articles-on-twitter-hadoop-cassandra-pig-flockdbu002639s-slide.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Marketing in Twitter</title>
		<link>http://jimey.com/2010/04/03/marketing-in-twitter.html</link>
		<comments>http://jimey.com/2010/04/03/marketing-in-twitter.html#comments</comments>
		<pubDate>Fri, 02 Apr 2010 18:56:04 +0000</pubDate>
		<dc:creator>jimey</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Echofon]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[SlideShare]]></category>
		<category><![CDATA[SXSW]]></category>
		<category><![CDATA[Tweet]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[分析]]></category>
		<category><![CDATA[惊讶]]></category>
		<category><![CDATA[诡异]]></category>
		<category><![CDATA[语义]]></category>
		<category><![CDATA[震撼]]></category>

		<guid isPermaLink="false">http://jimey.com/2010/04/03/marketing-in-twitter.html</guid>
		<description><![CDATA[之前对这方面也算有所了解,但是今天真真正正的被我撞到了,确实很惊讶,很震撼,有点迷茫有点觉得技术的力量是强大的,当然这都是我单反面猜测的结果.  我下午在twitter发了一条这个消息  哪位对#SXSW 2010这个会议有了解呢?能否大概介绍下今年都有啥闪光的? http://sxsw.com about 9 hours ago via Echofon  然后就刚刚...收到..... ]]></description>
			<content:encoded><![CDATA[<p>之前对这方面也算有所了解,但是今天真真正正的被我撞到了,确实很惊讶,很震撼,有点迷茫有点觉得技术的力量是强大的,当然这都是我单反面猜测的结果.</p>
<p>我下午在twitter发了一条这个消息</p>
<p>哪位对<a href="http://twitter.com/search?q=%23SXSW">#SXSW</a> 2010这个会议有了解呢?能否大概介绍下今年都有啥闪光的? <a href="http://sxsw.com">http://sxsw.com</a> <a href="http://twitter.com/jimey/status/11472364962">about 9 hours ago </a>via <a href="http://echofon.com/">Echofon</a></p>
<p>然后就刚刚&#8230;收到了slideshare的email</p>
<p>Dear jimeyren,   <br />We know not everyone can make it out to Austin for <a href="http://jimey.com/tag/sxsw" class="st_tag internal_tag" rel="tag" title="Posts tagged with SXSW">SXSW</a>, so we&#8217;ve compiled as many <a href="http://jimey.com/tag/sxsw" class="st_tag internal_tag" rel="tag" title="Posts tagged with SXSW">SXSW</a> presentations as possible. Hope you enjoy!    <br />Cheers,    <br />SlideShare Team</p>
<p>&#160;</p>
<p>&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;</p>
<p>我不能说这是巧合了.只能怀疑slideshare肯定语义分析了我今天发的tweets了,要不然不可能知道我想要找<a href="http://jimey.com/tag/sxsw" class="st_tag internal_tag" rel="tag" title="Posts tagged with SXSW">SXSW</a>的资料啊,竟然给我发email提醒.忒诡异了</p>
<h3  class="related_post_title">相关博文</h3><ul class="related_post"><li>2010-04-22 -- <a href="http://jimey.com/2010/04/22/several-articles-on-twitter-hadoop-cassandra-pig-flockdbu002639s-slide.html" title="几篇关于twitter,hadoop,Cassandra,Pig,FlockDB的slide">几篇关于twitter,hadoop,Cassandra,Pig,FlockDB的slide</a> (0)</li><li>2009-12-26 -- <a href="http://jimey.com/2009/12/26/nateu002639s-twitter-business-model.html" title="NATE的twitter商业模式">NATE的twitter商业模式</a> (0)</li><li>2010-06-29 -- <a href="http://jimey.com/2010/06/29/%e4%b8%b4%e7%9d%a1%e5%89%8d%e5%8f%88%e8%a7%89%e5%be%97%e8%a6%81%e5%86%99%e7%82%b9%e4%bb%80%e4%b9%88.html" title="临睡前,又觉得要写点什么">临睡前,又觉得要写点什么</a> (0)</li><li>2010-05-05 -- <a href="http://jimey.com/2010/05/05/mocospace-architecture-3-billion-mobile-page-views-a-month.html" title="MocoSpace Architecture &#8211; 3 Billion Mobile Page Views a Month">MocoSpace Architecture &#8211; 3 Billion Mobile Page Views a Month</a> (0)</li><li>2010-04-01 -- <a href="http://jimey.com/2010/04/01/foolu002639s-day.html" title="愚人节">愚人节</a> (2)</li><li>2010-03-30 -- <a href="http://jimey.com/2010/03/30/the-garden-of-eden-subtitle-blog-station-uses-the-approach.html" title="伊甸园字幕博客站利用办法">伊甸园字幕博客站利用办法</a> (2)</li><li>2010-03-29 -- <a href="http://jimey.com/2010/03/29/the-subversion-of-traditional.html" title="传统的颠覆">传统的颠覆</a> (6)</li><li>2010-03-24 -- <a href="http://jimey.com/2010/03/24/twittersleepingtime.html" title="TwitterSleepingtime">TwitterSleepingtime</a> (0)</li><li>2009-12-25 -- <a href="http://jimey.com/2009/12/25/christmas-activities-laboratory-of-day-trips-special-offers.html" title="圣诞节活动：实验室一日游,特价优惠">圣诞节活动：实验室一日游,特价优惠</a> (0)</li><li>2009-12-25 -- <a href="http://jimey.com/2009/12/25/twitter-search-result-u0026gt-language-filter.html" title="twitter search result -&gt; language filter">twitter search result -&gt; language filter</a> (0)</li><li>2009-12-18 -- <a href="http://jimey.com/2009/12/18/twitter-rss-reminder.html" title="twitter rss 提醒">twitter rss 提醒</a> (0)</li><li>2009-12-18 -- <a href="http://jimey.com/2009/12/18/feedburner-to-be-more-social.html" title="feedburner &#8211; To be more social">feedburner &#8211; To be more social</a> (0)</li><li>2009-11-05 -- <a href="http://jimey.com/2009/11/05/flickr-pro-account-to-use-experience.html" title="Flickr Pro帐号使用经历">Flickr Pro帐号使用经历</a> (1)</li><li>2009-10-31 -- <a href="http://jimey.com/2009/10/31/to-continue-to-micro-blog-to-continue-to-sync-messages.html" title="继续微博客，继续同步消息">继续微博客，继续同步消息</a> (2)</li><li>2009-08-17 -- <a href="http://jimey.com/2009/08/17/too-long-and-i-did-not-write-a-blog-camera-u0026amp-monday.html" title="太久没写博客了&amp;周一照相">太久没写博客了&amp;周一照相</a> (4)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://jimey.com/2010/04/03/marketing-in-twitter.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>修复Lifestream时区设定</title>
		<link>http://jimey.com/2010/03/29/lifestream-repair-time-zone-settings.html</link>
		<comments>http://jimey.com/2010/03/29/lifestream-repair-time-zone-settings.html#comments</comments>
		<pubDate>Mon, 29 Mar 2010 11:53:09 +0000</pubDate>
		<dc:creator>jimey</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[GMT]]></category>
		<category><![CDATA[lifestream]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[timestamp]]></category>
		<category><![CDATA[timezone]]></category>
		<category><![CDATA[UTC]]></category>

		<guid isPermaLink="false">http://jimey.com/2010/03/29/%e4%bf%ae%e5%a4%8dlifestream%e6%97%b6%e5%8c%ba%e8%ae%be%e5%ae%9a.html</guid>
		<description><![CDATA[LifeStream作者为 David Cramer &#124; 访问插件主页  俺这是9时区设置,8时区的话,请自行修改   主要需要修改5个地方, today&#160; yesterday&#160; 以及下面3个timestam... ]]></description>
			<content:encoded><![CDATA[<p>LifeStream作者为 <a href="http://www.davidcramer.net">David Cramer </a>| <a href="http://www.enthropia.com/labs/wp-lifestream/">访问插件主页</a></p>
<p>俺这是9时区设置,8时区的话,请自行修改</p>
<p>修改lifestream\themes\default\main.inc.php</p>
<p>主要需要修改5个地方, today  yesterday  以及下面3个timestamp</p>
<p>[code lang="php"]</p>
<p>&lt;?php<br />
$day = '';<br />
if (count($events))<br />
{<br />
 $today = date('m d Y', time() - 54000);<br />
 $yesterday = date('m d Y', time() -140400);<br />
 if ($has_paging)<br />
 {<br />
 if ($has_prev_page) {<br />
 echo '&lt;p&gt;&lt;a href=&quot;' . $lifestream-&gt;get_previous_page_url($page) .</p>
<p>'&quot;&gt;Newer Entries&lt;/a&gt;&lt;/p&gt;';<br />
 }<br />
 }<br />
 ?&gt;<br />
 &lt;table&gt;<br />
 &lt;?php<br />
 foreach ($events as $event)<br />
 {<br />
 $timestamp = $event-&gt;get_date();<br />
 if ($today == date('m d Y', $timestamp -32400)) $this_day = $lifestream-&gt;__('Today');<br />
 else if ($yesterday == date('m d Y', $timestamp-32400)) $this_day = $lifestream-&gt;__('Yesterday');<br />
 else $this_day = $lifestream-&gt;__(ucfirst(htmlentities(date($lifestream-&gt;get_option('day_format'),</p>
<p>$timestamp-82400))));<br />
 if ($day != $this_day)<br />
 {<br />
 ?&gt;<br />
 &lt;tr&gt;<br />
 &lt;th colspan=&quot;2&quot;&gt;<br />
 &lt;h2&gt;&lt;?php echo $this_day; ?&gt;&lt;/h2&gt;<br />
 &lt;/th&gt;<br />
 &lt;/tr&gt;<br />
 &lt;?php<br />
 $day = $this_day;<br />
}<br />
..............<br />
[/code]</p>
<h3  class="related_post_title">相关博文</h3><ul class="related_post"><li>2009-11-04 -- <a href="http://jimey.com/2009/11/04/9-years-a-number-of-pp.html" title="9年间的一些pp">9年间的一些pp</a> (8)</li><li>2009-10-22 -- <a href="http://jimey.com/2009/10/22/to-edit-your-blog-code-changed-10-hours-naveru002639s-airview.html" title="修改博客代码改了10个小时+Naver的airview">修改博客代码改了10个小时+Naver的airview</a> (0)</li><li>2009-10-21 -- <a href="http://jimey.com/2009/10/21/wordpress-lifestream-plugin.html" title="WordPress Lifestream 插件">WordPress Lifestream 插件</a> (0)</li><li>2009-01-21 -- <a href="http://jimey.com/2009/01/21/weekend-project-host-your-own-web-services.html" title="Weekend Project: Host Your Own Web Services">Weekend Project: Host Your Own Web Services</a> (0)</li><li>2008-12-11 -- <a href="http://jimey.com/2008/12/11/u0026quot10-11u0026quot.html" title="&lt;10号11号&gt;">&lt;10号11号&gt;</a> (0)</li><li>2008-10-22 -- <a href="http://jimey.com/2008/10/22/schedule-hodgepodge-of-things-that-the-north-south.html" title="杂七杂八的日程计划东西南北">杂七杂八的日程计划东西南北</a> (4)</li><li>2008-09-20 -- <a href="http://jimey.com/2008/09/20/the-concept-of-a-new-lifestream.html" title="一个新的lifestream概念">一个新的lifestream概念</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://jimey.com/2010/03/29/lifestream-repair-time-zone-settings.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>纯idea 时间流+空间流</title>
		<link>http://jimey.com/2010/03/29/idea-of-pure-space-time-stream-flow.html</link>
		<comments>http://jimey.com/2010/03/29/idea-of-pure-space-time-stream-flow.html#comments</comments>
		<pubDate>Mon, 29 Mar 2010 06:16:28 +0000</pubDate>
		<dc:creator>jimey</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Other]]></category>
		<category><![CDATA[foursquare]]></category>
		<category><![CDATA[GPS]]></category>
		<category><![CDATA[SNS]]></category>
		<category><![CDATA[Spaceline]]></category>
		<category><![CDATA[Timeline]]></category>
		<category><![CDATA[产品]]></category>

		<guid isPermaLink="false">http://jimey.com/2010/03/29/%e7%ba%afidea-%e6%97%b6%e9%97%b4%e6%b5%81%e7%a9%ba%e9%97%b4%e6%b5%81.html</guid>
		<description><![CDATA[有foursquare这样的空间流应用  具体可以查看http://foursquare.com/  不知道能否有个timeline+spaceline 的应用?  即:记录每天24小时,在什么地方待了多久,在什么地方待了多久 如此记录下每天的行程  虽然对于个人隐私来讲,这些数据不便公开,但是就好比车载gps一样,来一个人载gps记录下自己每天的行程  犹如目前已有的记录自..... ]]></description>
			<content:encoded><![CDATA[<p>有foursquare这样的空间流应用</p>
<p>具体可以查看<a title="http://foursquare.com/" href="http://foursquare.com/">http://foursquare.com/</a></p>
<p>不知道能否有个<a href="http://jimey.com/tag/timeline" class="st_tag internal_tag" rel="tag" title="Posts tagged with Timeline">timeline</a>+spaceline 的应用?</p>
<p>即:记录每天24小时,在什么地方待了多久,在什么地方待了多久 如此记录下每天的行程</p>
<p>虽然对于个人隐私来讲,这些数据不便公开,但是就好比车载<a href="http://jimey.com/tag/gps" class="st_tag internal_tag" rel="tag" title="Posts tagged with GPS">gps</a>一样,来一个人载<a href="http://jimey.com/tag/gps" class="st_tag internal_tag" rel="tag" title="Posts tagged with GPS">gps</a>记录下自己每天的行程</p>
<p>犹如目前已有的记录自己每天做什么事情的录像记录模式一样,其实待今后退休,闲暇的时候均可以翻出来回忆</p>
<p>随着越来越繁忙的生活,越来越没办法闲暇来记录自己的点点滴滴的时候 在如此越来越开放如此越来越没隐私的社会,也许将会有如此产品推出吧?</p>
<h3  class="related_post_title">相关博文</h3><ul class="related_post"><li>2010-03-10 -- <a href="http://jimey.com/2010/03/10/snow-great-snow.html" title="雪,很大的雪">雪,很大的雪</a> (3)</li><li>2009-12-26 -- <a href="http://jimey.com/2009/12/26/nateu002639s-twitter-business-model.html" title="NATE的twitter商业模式">NATE的twitter商业模式</a> (0)</li><li>2008-09-04 -- <a href="http://jimey.com/2008/09/04/cloud-computing-first-class-discussion-online-and-offline-counter-productive-anonymous.html" title="Cloud Computing第一节课讨论：网上和网下的反作用：匿名性">Cloud Computing第一节课讨论：网上和网下的反作用：匿名性</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://jimey.com/2010/03/29/idea-of-pure-space-time-stream-flow.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>NATE的twitter商业模式</title>
		<link>http://jimey.com/2009/12/26/nateu002639s-twitter-business-model.html</link>
		<comments>http://jimey.com/2009/12/26/nateu002639s-twitter-business-model.html#comments</comments>
		<pubDate>Sat, 26 Dec 2009 09:45:25 +0000</pubDate>
		<dc:creator>jimey</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[hantweet]]></category>
		<category><![CDATA[KT]]></category>
		<category><![CDATA[LGT]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Nate]]></category>
		<category><![CDATA[NateOn]]></category>
		<category><![CDATA[SKT]]></category>
		<category><![CDATA[SNS]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://jimey.com/2009/12/26/nate%e7%9a%84twitter%e5%95%86%e4%b8%9a%e6%a8%a1%e5%bc%8f.html</guid>
		<description><![CDATA[NATE就好比中国国内的移动梦网  韩国最大的手机通信商SK开设的服务  之前一直不知道  http://twitter.com/natetweeting  今天在twitter上收到RT才发现  @tweeting_event: [트위팅 고객님이라면 모두 받으세요!] 스타벅스까페라떼 100%당첨 + 이 글을 RT하면 Sony VAIO 넷북,햅틱 아몰레드폰까지~ http://j.mp/4TbI97  基本上..... ]]></description>
			<content:encoded><![CDATA[<p>NATE就好比中国国内的移动梦网</p>
<p>韩国最大的手机通信商SK开设的服务</p>
<p>之前一直不知道</p>
<p><a title="http://twitter.com/natetweeting" href="http://twitter.com/natetweeting">http://twitter.com/natetweeting</a></p>
<p>今天在twitter上收到RT才发现</p>
<p>@<a href="http://twitter.com/tweeting_event">tweeting_event</a>: [트위팅 고객님이라면 모두 받으세요!] 스타벅스까페라떼 100%당첨 + 이 글을 RT하면 Sony VAIO 넷북,햅틱 아몰레드폰까지~ <a href="http://j.mp/4TbI97">http://j.mp/4TbI97</a></p>
<p>基本上就是勾引人加入NATE提供的twitter服务，然后给点小奖励与优惠</p>
<p>加入了以后</p>
<p>有一个月300条免费往手机上发送的功能，就是读取你twitter上的消息发送给你</p>
<p>1.全部好友</p>
<p>2.部分好友</p>
<p>3.关闭好友</p>
<p>4.只发@自己的</p>
<p>5.发送时间段设置</p>
<p>6.暂时关闭这个功能</p>
<p>&#160;</p>
<p>当然也给了一个号码可以往twitter上发</p>
<p>*1234 这个号码即可</p>
<p>&#160;</p>
<p>另外</p>
<p><a href="http://hantweet.com/">http://hantweet.com/</a></p>
<p>看来这个服务要……被取代了。不过LGT和<a href="http://jimey.com/tag/kt" class="st_tag internal_tag" rel="tag" title="Posts tagged with KT">KT</a>还可以用这个服务应该</p>
<p>……………………………………………………………………</p>
<p>SKT NATE目前不足之处</p>
<p>1.twitter 认证采用id &amp; pw, 没采用目前流行的Oauth方式……</p>
<p>2.还没在twitter上申请自己的API地址…默认还是API方式，这个比较丑…</p>
<p>&#160;</p>
<p>优势：</p>
<p>1.目前一个月300条免费发送到手机上，发送的消息都是abstract,如果想看全文，需要在手机登录NATE，那都是要给钱的……流量费啊流量费……钱就是这么赚出来了</p>
<p>2.hantweet 如果要收消息，也是要给钱的，</p>
<p>包月制：</p>
<ul>
<li>4900원/월</li>
<li>월 최대 200건까지 한트윗의 답글과 DM을 전달해줍니다</li>
</ul>
<p>&#160;</p>
<ul>
<li>9900원/월</li>
<li>월 최대 500건까지 한트윗의 답글과 DM을 전달해줍니다. </li>
</ul>
<p>按条：</p>
<ul>
<li>3300원 </li>
<li>토큰 100개를 구입합니다. </li>
</ul>
<p>100条3300&#160; 200条6600&#160; 300条9900这样</p>
<p>……………………………………………………………………………………</p>
<h3  class="related_post_title">相关博文</h3><ul class="related_post"><li>2010-04-03 -- <a href="http://jimey.com/2010/04/03/marketing-in-twitter.html" title="Marketing in Twitter">Marketing in Twitter</a> (0)</li><li>2009-03-07 -- <a href="http://jimey.com/2009/03/07/life-hanging-net.html" title="挂网人生">挂网人生</a> (2)</li><li>2010-06-30 -- <a href="http://jimey.com/2010/06/30/%e9%9f%a9%e5%9b%bdskt%e6%89%8b%e6%9c%ba%e6%8d%a2%e5%90%8d.html" title="韩国SKT手机换名">韩国SKT手机换名</a> (0)</li><li>2010-05-05 -- <a href="http://jimey.com/2010/05/05/mocospace-architecture-3-billion-mobile-page-views-a-month.html" title="MocoSpace Architecture &#8211; 3 Billion Mobile Page Views a Month">MocoSpace Architecture &#8211; 3 Billion Mobile Page Views a Month</a> (0)</li><li>2010-04-22 -- <a href="http://jimey.com/2010/04/22/several-articles-on-twitter-hadoop-cassandra-pig-flockdbu002639s-slide.html" title="几篇关于twitter,hadoop,Cassandra,Pig,FlockDB的slide">几篇关于twitter,hadoop,Cassandra,Pig,FlockDB的slide</a> (0)</li><li>2010-04-01 -- <a href="http://jimey.com/2010/04/01/foolu002639s-day.html" title="愚人节">愚人节</a> (2)</li><li>2010-03-30 -- <a href="http://jimey.com/2010/03/30/the-garden-of-eden-subtitle-blog-station-uses-the-approach.html" title="伊甸园字幕博客站利用办法">伊甸园字幕博客站利用办法</a> (2)</li><li>2010-03-29 -- <a href="http://jimey.com/2010/03/29/idea-of-pure-space-time-stream-flow.html" title="纯idea 时间流+空间流">纯idea 时间流+空间流</a> (1)</li><li>2010-03-24 -- <a href="http://jimey.com/2010/03/24/twittersleepingtime.html" title="TwitterSleepingtime">TwitterSleepingtime</a> (0)</li><li>2009-12-25 -- <a href="http://jimey.com/2009/12/25/twitter-search-result-u0026gt-language-filter.html" title="twitter search result -&gt; language filter">twitter search result -&gt; language filter</a> (0)</li><li>2009-12-18 -- <a href="http://jimey.com/2009/12/18/twitter-rss-reminder.html" title="twitter rss 提醒">twitter rss 提醒</a> (0)</li><li>2009-12-18 -- <a href="http://jimey.com/2009/12/18/feedburner-to-be-more-social.html" title="feedburner &#8211; To be more social">feedburner &#8211; To be more social</a> (0)</li><li>2009-11-08 -- <a href="http://jimey.com/2009/11/08/nate-on-a-new-feature-or-i-had-not-found-the-function.html" title="NATE ON 某新功能?or 我以前没发现的功能">NATE ON 某新功能?or 我以前没发现的功能</a> (1)</li><li>2009-11-05 -- <a href="http://jimey.com/2009/11/05/flickr-pro-account-to-use-experience.html" title="Flickr Pro帐号使用经历">Flickr Pro帐号使用经历</a> (1)</li><li>2009-10-31 -- <a href="http://jimey.com/2009/10/31/to-continue-to-micro-blog-to-continue-to-sync-messages.html" title="继续微博客，继续同步消息">继续微博客，继续同步消息</a> (2)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://jimey.com/2009/12/26/nateu002639s-twitter-business-model.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>twitter search result -&gt; language filter</title>
		<link>http://jimey.com/2009/12/25/twitter-search-result-u0026gt-language-filter.html</link>
		<comments>http://jimey.com/2009/12/25/twitter-search-result-u0026gt-language-filter.html#comments</comments>
		<pubDate>Thu, 24 Dec 2009 18:45:35 +0000</pubDate>
		<dc:creator>jimey</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[filter]]></category>
		<category><![CDATA[language]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://jimey.com/2009/12/25/twitter-search-result-language-filter.html</guid>
		<description><![CDATA[   &#160;  没中文，没韩语  泰国语都有- -&#160; 难道twitter有泰国的员工... ]]></description>
			<content:encoded><![CDATA[<p><img src="http://farm3.static.flickr.com/2609/4211675592_13d2a2a73a_o.jpg" /> </p>
<p>&#160;</p>
<p>没中文，没韩语</p>
<p>泰国语都有- -&#160; 难道twitter有泰国的员工？</p>
<h3  class="related_post_title">相关博文</h3><ul class="related_post"><li>2009-03-23 -- <a href="http://jimey.com/2009/03/23/information-retrieval-course-2-weeks-to-a-summary-of.html" title="Information Retrieval 课程2周来的总结">Information Retrieval 课程2周来的总结</a> (0)</li><li>2009-01-21 -- <a href="http://jimey.com/2009/01/21/sorry-google-you-missed-the-real-time-web.html" title="Sorry Google, You Missed the Real-Time Web!">Sorry Google, You Missed the Real-Time Web!</a> (0)</li><li>2008-12-14 -- <a href="http://jimey.com/2008/12/14/this-is-a-two-day-subscription-rss-feedback.html" title="这两天订阅的RSS的一个信息反馈">这两天订阅的RSS的一个信息反馈</a> (0)</li><li>2010-05-05 -- <a href="http://jimey.com/2010/05/05/mocospace-architecture-3-billion-mobile-page-views-a-month.html" title="MocoSpace Architecture &#8211; 3 Billion Mobile Page Views a Month">MocoSpace Architecture &#8211; 3 Billion Mobile Page Views a Month</a> (0)</li><li>2010-04-22 -- <a href="http://jimey.com/2010/04/22/several-articles-on-twitter-hadoop-cassandra-pig-flockdbu002639s-slide.html" title="几篇关于twitter,hadoop,Cassandra,Pig,FlockDB的slide">几篇关于twitter,hadoop,Cassandra,Pig,FlockDB的slide</a> (0)</li><li>2010-04-03 -- <a href="http://jimey.com/2010/04/03/marketing-in-twitter.html" title="Marketing in Twitter">Marketing in Twitter</a> (0)</li><li>2010-04-01 -- <a href="http://jimey.com/2010/04/01/foolu002639s-day.html" title="愚人节">愚人节</a> (2)</li><li>2010-03-30 -- <a href="http://jimey.com/2010/03/30/the-garden-of-eden-subtitle-blog-station-uses-the-approach.html" title="伊甸园字幕博客站利用办法">伊甸园字幕博客站利用办法</a> (2)</li><li>2010-03-24 -- <a href="http://jimey.com/2010/03/24/twittersleepingtime.html" title="TwitterSleepingtime">TwitterSleepingtime</a> (0)</li><li>2009-12-26 -- <a href="http://jimey.com/2009/12/26/nateu002639s-twitter-business-model.html" title="NATE的twitter商业模式">NATE的twitter商业模式</a> (0)</li><li>2009-12-18 -- <a href="http://jimey.com/2009/12/18/twitter-rss-reminder.html" title="twitter rss 提醒">twitter rss 提醒</a> (0)</li><li>2009-12-18 -- <a href="http://jimey.com/2009/12/18/feedburner-to-be-more-social.html" title="feedburner &#8211; To be more social">feedburner &#8211; To be more social</a> (0)</li><li>2009-11-13 -- <a href="http://jimey.com/2009/11/13/firefox-ubiquity-use-scholar-and-shooter-of-the-two-search-commands.html" title="Firefox.Ubiquity 用的scholar和shooter的2个搜索的命令">Firefox.Ubiquity 用的scholar和shooter的2个搜索的命令</a> (0)</li><li>2009-11-05 -- <a href="http://jimey.com/2009/11/05/flickr-pro-account-to-use-experience.html" title="Flickr Pro帐号使用经历">Flickr Pro帐号使用经历</a> (1)</li><li>2009-10-31 -- <a href="http://jimey.com/2009/10/31/to-continue-to-micro-blog-to-continue-to-sync-messages.html" title="继续微博客，继续同步消息">继续微博客，继续同步消息</a> (2)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://jimey.com/2009/12/25/twitter-search-result-u0026gt-language-filter.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>twitter rss 提醒</title>
		<link>http://jimey.com/2009/12/18/twitter-rss-reminder.html</link>
		<comments>http://jimey.com/2009/12/18/twitter-rss-reminder.html#comments</comments>
		<pubDate>Fri, 18 Dec 2009 12:23:04 +0000</pubDate>
		<dc:creator>jimey</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[feedburner]]></category>
		<category><![CDATA[monitor]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Twitterfead]]></category>
		<category><![CDATA[提醒]]></category>

		<guid isPermaLink="false">http://jimey.com/2009/12/18/twitter-rss-%e6%8f%90%e9%86%92.html</guid>
		<description><![CDATA[今天话比较多，所以博客发的也比较多 - - 希望不会骚扰到太多人  这篇内容是关于，如何利用twitter来做monitor  基本上本人目前都是用twitter来监控，比如我的博客评论，比如我msn live空间的评论，比如某些人在网上的一些行为，只要有rss，就可以用twitter来干这个监控！  之前我是用twitterfeed的，不过这2天全部改成feed..... ]]></description>
			<content:encoded><![CDATA[<p>今天话比较多，所以博客发的也比较多 &#8211; - 希望不会骚扰到太多人</p>
<p>这篇内容是关于，如何利用twitter来做monitor</p>
<p>基本上本人目前都是用twitter来监控，比如我的博客评论，比如我msn live空间的评论，比如某些人在网上的一些行为，只要有rss，就可以用twitter来干这个监控！</p>
<p>之前我是用twitterfeed的，不过这2天全部改成feedburner了，大同小异</p>
<p>在这里我只说方法</p>
<p>&#160;</p>
<p>比如：我的博客评论</p>
<p>我是另外申请了个twitter的小号来做监控，抓取我博客评论的rss来自动发消息到twitter上，但是发消息的时候，加一个 @jimey的前缀 ，这样我在看我主号jimey的@的时候，就可以看到消息了。这样不会错过消息。</p>
<p>其他类似都可以采用如此办法</p>
<h3  class="related_post_title">相关博文</h3><ul class="related_post"><li>2009-12-18 -- <a href="http://jimey.com/2009/12/18/feedburner-to-be-more-social.html" title="feedburner &#8211; To be more social">feedburner &#8211; To be more social</a> (0)</li><li>2010-03-30 -- <a href="http://jimey.com/2010/03/30/the-garden-of-eden-subtitle-blog-station-uses-the-approach.html" title="伊甸园字幕博客站利用办法">伊甸园字幕博客站利用办法</a> (2)</li><li>2009-10-31 -- <a href="http://jimey.com/2009/10/31/to-continue-to-micro-blog-to-continue-to-sync-messages.html" title="继续微博客，继续同步消息">继续微博客，继续同步消息</a> (2)</li><li>2009-03-27 -- <a href="http://jimey.com/2009/03/27/comments-to-open-real-time-twitter-to-remind-self-propelled.html" title="评论开启实时twitter自推提醒">评论开启实时twitter自推提醒</a> (0)</li><li>2009-03-16 -- <a href="http://jimey.com/2009/03/16/web-2-0-era-sfile-development-outlook.html" title="web 2.0时代的sfile发展展望">web 2.0时代的sfile发展展望</a> (0)</li><li>2009-02-01 -- <a href="http://jimey.com/2009/02/01/wanted-to-terms-u0026amp.html" title="很想写点什么">很想写点什么</a> (0)</li><li>2010-05-05 -- <a href="http://jimey.com/2010/05/05/mocospace-architecture-3-billion-mobile-page-views-a-month.html" title="MocoSpace Architecture &#8211; 3 Billion Mobile Page Views a Month">MocoSpace Architecture &#8211; 3 Billion Mobile Page Views a Month</a> (0)</li><li>2010-04-22 -- <a href="http://jimey.com/2010/04/22/several-articles-on-twitter-hadoop-cassandra-pig-flockdbu002639s-slide.html" title="几篇关于twitter,hadoop,Cassandra,Pig,FlockDB的slide">几篇关于twitter,hadoop,Cassandra,Pig,FlockDB的slide</a> (0)</li><li>2010-04-03 -- <a href="http://jimey.com/2010/04/03/marketing-in-twitter.html" title="Marketing in Twitter">Marketing in Twitter</a> (0)</li><li>2010-04-01 -- <a href="http://jimey.com/2010/04/01/foolu002639s-day.html" title="愚人节">愚人节</a> (2)</li><li>2010-03-24 -- <a href="http://jimey.com/2010/03/24/twittersleepingtime.html" title="TwitterSleepingtime">TwitterSleepingtime</a> (0)</li><li>2009-12-26 -- <a href="http://jimey.com/2009/12/26/nateu002639s-twitter-business-model.html" title="NATE的twitter商业模式">NATE的twitter商业模式</a> (0)</li><li>2009-12-25 -- <a href="http://jimey.com/2009/12/25/twitter-search-result-u0026gt-language-filter.html" title="twitter search result -&gt; language filter">twitter search result -&gt; language filter</a> (0)</li><li>2009-11-12 -- <a href="http://jimey.com/2009/11/12/utorrent-support-the-garden-of-eden-bt-software-bt-download-station-resources-u0026quotautomaticu0026quot-download-tutorial.html" title="bt软件uTorrent支持伊甸园bt下载站资源&ldquo;全自动&rdquo;下载教程">bt软件uTorrent支持伊甸园bt下载站资源&ldquo;全自动&rdquo;下载教程</a> (0)</li><li>2009-11-05 -- <a href="http://jimey.com/2009/11/05/flickr-pro-account-to-use-experience.html" title="Flickr Pro帐号使用经历">Flickr Pro帐号使用经历</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://jimey.com/2009/12/18/twitter-rss-reminder.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>feedburner &#8211; To be more social</title>
		<link>http://jimey.com/2009/12/18/feedburner-to-be-more-social.html</link>
		<comments>http://jimey.com/2009/12/18/feedburner-to-be-more-social.html#comments</comments>
		<pubDate>Fri, 18 Dec 2009 12:09:12 +0000</pubDate>
		<dc:creator>jimey</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[feedburner]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[pubsubhubbub]]></category>
		<category><![CDATA[Rss2twitter]]></category>
		<category><![CDATA[short url]]></category>
		<category><![CDATA[Social]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Twitterfead]]></category>
		<category><![CDATA[web analysis]]></category>

		<guid isPermaLink="false">http://jimey.com/2009/12/18/feedburner-to-be-more-social.html</guid>
		<description><![CDATA[数据为王，google又一次胜利了  收购了feedburner，等于拿到了源  而这次，12.14 feedburner宣布支持在twitter上同步rss更新的时候，也就是提供与twitterfeed rss2twitter 等一些网站功能完全一致的服务的时候  我就知道google 又要胜利了  由于当时已经是韩国时间12.15了 我要准备去首尔，所以没怎么来得及测试  只是匆匆的..... ]]></description>
			<content:encoded><![CDATA[<p>数据为王，google又一次胜利了</p>
<p>收购了feedburner，等于拿到了源</p>
<p>而这次，12.14 feedburner宣布支持在twitter上同步rss更新的时候，也就是提供与twitterfeed rss2twitter 等一些网站功能完全一致的服务的时候</p>
<p>我就知道google 又要胜利了</p>
<p>由于当时已经是韩国时间12.15了 我要准备去首尔，所以没怎么来得及测试</p>
<p>只是匆匆的把其中一个博客评论监控的功能加了一下，就闪人了</p>
<p>后来17号在首尔看到，这个feedburner的发布twitter功能，要比twitterfeed快2个小时。这个时候我才真真正正的明白，google的服务器力量是强大的</p>
<p>当然<a href="http://jimey.com/tag/pubsubhubbub" class="st_tag internal_tag" rel="tag" title="Posts tagged with pubsubhubbub">pubsubhubbub</a> 这项google原创的技术google自己在自己的服务上应用起来也是得心应手的</p>
<p>而google新开启的短域名服务<a href="http://goo.gl">http://goo.gl</a>&#160; 则也是完全的市场布局</p>
<p>&#160;</p>
<p>feedburner的高效服务，会把大家从twitterfeed或者rss2twitter的应用上拉走 造成的后果</p>
<p>1.feedburner用户的增加</p>
<p>2.很多原生的rss本来在twitterfeed, rss2twitter上是可以直接用的，而这里就不得不先要burn下才可以使用了，增加了google收集的信息量</p>
<p>3.短域名服务<a href="http://goo.gl">http://goo.gl</a> 对于连接点击的跟踪，从而也可以更加好的进行 web analysis</p>
<p>&#160;</p>
<p>把数据都掌握在自己手中，依然是google的一贯风格，而广大消费者，面对着这高速的服务，基本上无间隔就会post到twitter上的高效，都会忍不住转到feedburner来。这也许是大家双赢的结局。而最终悲惨出局的，还是twitterfeed和rss2twitter等这些小型服务提供商。。</p>
<h3  class="related_post_title">相关博文</h3><ul class="related_post"><li>2009-12-18 -- <a href="http://jimey.com/2009/12/18/twitter-rss-reminder.html" title="twitter rss 提醒">twitter rss 提醒</a> (0)</li><li>2010-03-30 -- <a href="http://jimey.com/2010/03/30/the-garden-of-eden-subtitle-blog-station-uses-the-approach.html" title="伊甸园字幕博客站利用办法">伊甸园字幕博客站利用办法</a> (2)</li><li>2009-10-31 -- <a href="http://jimey.com/2009/10/31/to-continue-to-micro-blog-to-continue-to-sync-messages.html" title="继续微博客，继续同步消息">继续微博客，继续同步消息</a> (2)</li><li>2009-10-23 -- <a href="http://jimey.com/2009/10/23/read-the-paper-scaling-online-social-networks-without-pains.html" title="阅读paper:Scaling Online Social Networks without Pains">阅读paper:Scaling Online Social Networks without Pains</a> (0)</li><li>2009-03-16 -- <a href="http://jimey.com/2009/03/16/web-2-0-era-sfile-development-outlook.html" title="web 2.0时代的sfile发展展望">web 2.0时代的sfile发展展望</a> (0)</li><li>2008-12-14 -- <a href="http://jimey.com/2008/12/14/this-is-a-two-day-subscription-rss-feedback.html" title="这两天订阅的RSS的一个信息反馈">这两天订阅的RSS的一个信息反馈</a> (0)</li><li>2010-05-05 -- <a href="http://jimey.com/2010/05/05/mocospace-architecture-3-billion-mobile-page-views-a-month.html" title="MocoSpace Architecture &#8211; 3 Billion Mobile Page Views a Month">MocoSpace Architecture &#8211; 3 Billion Mobile Page Views a Month</a> (0)</li><li>2010-04-22 -- <a href="http://jimey.com/2010/04/22/several-articles-on-twitter-hadoop-cassandra-pig-flockdbu002639s-slide.html" title="几篇关于twitter,hadoop,Cassandra,Pig,FlockDB的slide">几篇关于twitter,hadoop,Cassandra,Pig,FlockDB的slide</a> (0)</li><li>2010-04-03 -- <a href="http://jimey.com/2010/04/03/marketing-in-twitter.html" title="Marketing in Twitter">Marketing in Twitter</a> (0)</li><li>2010-04-01 -- <a href="http://jimey.com/2010/04/01/foolu002639s-day.html" title="愚人节">愚人节</a> (2)</li><li>2010-03-24 -- <a href="http://jimey.com/2010/03/24/twittersleepingtime.html" title="TwitterSleepingtime">TwitterSleepingtime</a> (0)</li><li>2009-12-26 -- <a href="http://jimey.com/2009/12/26/nateu002639s-twitter-business-model.html" title="NATE的twitter商业模式">NATE的twitter商业模式</a> (0)</li><li>2009-12-25 -- <a href="http://jimey.com/2009/12/25/twitter-search-result-u0026gt-language-filter.html" title="twitter search result -&gt; language filter">twitter search result -&gt; language filter</a> (0)</li><li>2009-11-05 -- <a href="http://jimey.com/2009/11/05/flickr-pro-account-to-use-experience.html" title="Flickr Pro帐号使用经历">Flickr Pro帐号使用经历</a> (1)</li><li>2009-10-09 -- <a href="http://jimey.com/2009/10/09/compiled-hadoop-version-eclipse-plugin-jar-and-hadoop-0-20-1-eclipse-plugin-jar-download.html" title="编译hadoop-${version}-eclipse-plugin.jar and hadoop-0.20.1-eclipse-plugin.jar download">编译hadoop-${version}-eclipse-plugin.jar and hadoop-0.20.1-eclipse-plugin.jar download</a> (3)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://jimey.com/2009/12/18/feedburner-to-be-more-social.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ytet upload user guide</title>
		<link>http://jimey.com/2009/11/17/ytet-upload-user-guide.html</link>
		<comments>http://jimey.com/2009/11/17/ytet-upload-user-guide.html#comments</comments>
		<pubDate>Tue, 17 Nov 2009 13:32:51 +0000</pubDate>
		<dc:creator>jimey</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[Sub]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[ytet]]></category>

		<guid isPermaLink="false">http://jimey.com/2009/11/17/ytet-upload-user-guide.html</guid>
		<description><![CDATA[首先，注册之后，然后把用户名QQ给我，我开通发文权限    &#160;  开通后登陆，显示出的页面，其他部分可以不用理，主要点那个add new 即可  &#160;    需要关注几个部分  部分1.标题  部分2是附件上传  部分3是内容，这里就随便填了  部分4是tag标签，如果可能，尽量多填写一些，各个关键词用英文逗号分开  部分5是分类，一..... ]]></description>
			<content:encoded><![CDATA[<p>首先，注册之后，然后把用户名QQ给我，我开通发文权限</p>
<p><a title="4" href="http://www.flickr.com/photos/46438329@N00/4111521273/"><img border="0" alt="4" src="http://static.flickr.com/2783/4111521273_99046eaf2d.jpg" /></a></p>
<p>&#160;</p>
<p>开通后登陆，显示出的页面，其他部分可以不用理，主要点那个add new 即可</p>
<p>&#160;</p>
<p><a title="5" href="http://www.flickr.com/photos/46438329@N00/4111521459/"><img border="0" alt="5" src="http://farm3.static.flickr.com/2784/4111521459_7b3b3db97b.jpg" /></a></p>
<p>需要关注几个部分</p>
<p>部分1.标题</p>
<p>部分2是附件上传</p>
<p>部分3是内容，这里就随便填了</p>
<p>部分4是tag标签，如果可能，尽量多填写一些，各个关键词用英文逗号分开</p>
<p>部分5是分类，一般来讲，什么剧目归到什么剧目名下，如果没该剧目的分类，请添加，添加的时候注意该剧目名的父类</p>
<p>比如24 的父类是0-9</p>
<p>American Idol 的父类是A-F</p>
<p>&#160;</p>
<p>然后完成以上5项目之后，点6即可完成一次发布，个中最难的是上传附件的2部分</p>
<p>下面具体来讲解这个2的使用</p>
<p>&#160;</p>
<p>点那个向下的箭头</p>
<p>&#160;</p>
<p><a title="2" href="http://www.flickr.com/photos/46438329@N00/4111489995/"><img border="0" alt="2" src="http://static.flickr.com/2761/4111489995_018a7e3280.jpg" /></a></p>
<p>即可出来这个画面</p>
<p>首先是附件的标题，即该字幕文件名是什么，这里不推荐使用@ #这些字符，所以我们之前的字幕命名方式</p>
<p><a href="mailto:xxx.group@YTET">xxx.group@YTET</a> 这样的方式现在不推荐，因为这个@有可能导致字符换算丢失路径</p>
<p>&#160;</p>
<p> 其他项目可以不用填</p>
<p><a title="2.1" href="http://www.flickr.com/photos/46438329@N00/4112256152/"><img border="0" alt="2.1" src="http://static.flickr.com/2597/4112256152_f0e63b9c40.jpg" /></a></p>
<p>往下拉滚轴，可以找到这个Upload File的选项，即上传文件选择了，相信这地方大家基本上都操作过，我就不细说了</p>
<p>唯一需要注意的是&#160; 这里文件需要用.zip的方式&#160; 而不再推荐我们字幕组常用的.rar的方式，这点也是比较…麻烦的地方</p>
<p>具体zip的方式如果生成，可参看博客 <a href="http://jimey.com/2009/11/17/use-winrar-to-zip-something.html">use winrar to zip something</a>&#160; <a title="http://jimey.com/2009/11/17/use-winrar-to-zip-something.html" href="http://jimey.com/2009/11/17/use-winrar-to-zip-something.html">http://jimey.com/2009/11/17/use-winrar-to-zip-something.html</a></p>
<p>&#160;</p>
<p> 添加完文件之后，就最下面那个深蓝色按钮按了即可 </p>
<p>&#160;</p>
<p>接着会到下面这幅图</p>
<p>&#160;</p>
<p>如果有时候也许会看不到这副图，那么就跳过这副图，看下一步骤教程</p>
<p><a title="2.2" href="http://www.flickr.com/photos/46438329@N00/4111489863/"><img border="0" alt="2.2" src="http://static.flickr.com/2676/4111489863_3435194534.jpg" /></a></p>
<p>&#160;</p>
<p>这里，直接按这个Insert into Post 就会把刚刚上传的字幕附件给粘贴到刚刚要post的文章里面去了。</p>
<p>&#160;</p>
<p><a title="3" href="http://www.flickr.com/photos/46438329@N00/4112256544/"><img border="0" alt="3" src="http://static.flickr.com/2574/4112256544_ec90599722.jpg" /></a></p>
<p>如果没那个上面那个图，得把框拉到最上面，选择View Doadloads 会有一排文件列表，选择你要insert的文件即可</p>
<h3  class="related_post_title">相关博文</h3><ul class="related_post"><li>2009-11-17 -- <a href="http://jimey.com/2009/11/17/caption-blog-station-and-the-garden-of-eden-garden-of-eden-drama-wikipedia-desks-set-up-the-united-states-shows.html" title="伊甸园字幕博客站和伊甸园美剧百科站成立说明">伊甸园字幕博客站和伊甸园美剧百科站成立说明</a> (2)</li><li>2009-10-23 -- <a href="http://jimey.com/2009/10/23/feedsky-feed-plug-in-plug-in-will-lead-to-failure-of-task-execution-wp-booking.html" title="Feedsky Feed 插件插件会导致wp的预订任务执行失败">Feedsky Feed 插件插件会导致wp的预订任务执行失败</a> (0)</li><li>2009-10-21 -- <a href="http://jimey.com/2009/10/21/wordpress-lifestream-plugin.html" title="WordPress Lifestream 插件">WordPress Lifestream 插件</a> (0)</li><li>2009-03-24 -- <a href="http://jimey.com/2009/03/24/wordpress-plugin.html" title="Wordpress插件">Wordpress插件</a> (0)</li><li>2009-03-18 -- <a href="http://jimey.com/2009/03/18/glftpd-and-zipscript-install-guide.html" title="glftpd and zipscript install guide">glftpd and zipscript install guide</a> (0)</li><li>2009-03-16 -- <a href="http://jimey.com/2009/03/16/web-2-0-era-sfile-development-outlook.html" title="web 2.0时代的sfile发展展望">web 2.0时代的sfile发展展望</a> (0)</li><li>2008-12-30 -- <a href="http://jimey.com/2008/12/30/wordpress-changed-a-blog-hosting.html" title="WordPress换了个博客主机">WordPress换了个博客主机</a> (0)</li><li>2008-12-22 -- <a href="http://jimey.com/2008/12/22/picasau002639s-wordpress-plug-in-problem.html" title="Picasa的wordpress插件问题">Picasa的wordpress插件问题</a> (0)</li><li>2008-12-13 -- <a href="http://jimey.com/2008/12/13/sat-matter-of-non-decent.html" title="周六的不正经事">周六的不正经事</a> (0)</li><li>2008-09-18 -- <a href="http://jimey.com/2008/09/18/windows-live-writer-vs-wordpress.html" title="Windows Live Writer vs. Wordpress">Windows Live Writer vs. Wordpress</a> (0)</li><li>2008-09-13 -- <a href="http://jimey.com/2008/09/13/added-three-new-plug-ins.html" title="新加了3个插件">新加了3个插件</a> (10)</li><li>2008-09-13 -- <a href="http://jimey.com/2008/09/13/wordpress-plug-ins-sync-with-msn-live-space.html" title="Wordpress与MSN Live Space同步插件">Wordpress与MSN Live Space同步插件</a> (2)</li><li>2008-08-27 -- <a href="http://jimey.com/2008/08/27/installation-complexlife.html" title="安装ComplexLife">安装ComplexLife</a> (1)</li><li>2008-08-24 -- <a href="http://jimey.com/2008/08/24/this-wordpress-engaged-in-the-three-days.html" title="搞了3天这个WordPress">搞了3天这个WordPress</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://jimey.com/2009/11/17/ytet-upload-user-guide.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>use winrar to zip something</title>
		<link>http://jimey.com/2009/11/17/use-winrar-to-zip-something.html</link>
		<comments>http://jimey.com/2009/11/17/use-winrar-to-zip-something.html#comments</comments>
		<pubDate>Tue, 17 Nov 2009 12:59:32 +0000</pubDate>
		<dc:creator>jimey</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[how]]></category>
		<category><![CDATA[winrar]]></category>
		<category><![CDATA[zip]]></category>

		<guid isPermaLink="false">http://jimey.com/2009/11/17/use-winrar-to-zip-something.html</guid>
		<description><![CDATA[  选要打包的文件  &#160;    然后是弹出的框的设... ]]></description>
			<content:encoded><![CDATA[<p><a title="1" href="http://www.flickr.com/photos/46438329@N00/4111491137/"><img border="0" alt="1" src="http://static.flickr.com/2530/4111491137_a206eee367.jpg" /></a></p>
<p>选要打包的文件</p>
<p>&#160;</p>
<p><a title="2" href="http://www.flickr.com/photos/46438329@N00/4111491259/"><img border="0" alt="2" src="http://static.flickr.com/2793/4111491259_3456491485.jpg" /></a></p>
<p>然后是弹出的框的设置</p>
<h3  class="related_post_title">相关博文</h3><ul class="related_post"><li>2009-03-18 -- <a href="http://jimey.com/2009/03/18/custom-my-winrar-to-extract-the-files-on-demand-and-should.html" title="定制我的WinRAR 让文件解压按需而宜">定制我的WinRAR 让文件解压按需而宜</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://jimey.com/2009/11/17/use-winrar-to-zip-something.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>伊甸园字幕博客站和伊甸园美剧百科站成立说明</title>
		<link>http://jimey.com/2009/11/17/caption-blog-station-and-the-garden-of-eden-garden-of-eden-drama-wikipedia-desks-set-up-the-united-states-shows.html</link>
		<comments>http://jimey.com/2009/11/17/caption-blog-station-and-the-garden-of-eden-garden-of-eden-drama-wikipedia-desks-set-up-the-united-states-shows.html#comments</comments>
		<pubDate>Tue, 17 Nov 2009 05:14:47 +0000</pubDate>
		<dc:creator>jimey</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[放心情]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[好处]]></category>
		<category><![CDATA[媒体]]></category>
		<category><![CDATA[字幕]]></category>
		<category><![CDATA[字幕站]]></category>
		<category><![CDATA[官方]]></category>
		<category><![CDATA[权限]]></category>
		<category><![CDATA[用途]]></category>
		<category><![CDATA[维基]]></category>
		<category><![CDATA[缺点]]></category>
		<category><![CDATA[美剧百科]]></category>
		<category><![CDATA[问题]]></category>

		<guid isPermaLink="false">http://jimey.com/2009/11/17/%e4%bc%8a%e7%94%b8%e5%9b%ad%e5%ad%97%e5%b9%95%e5%8d%9a%e5%ae%a2%e7%ab%99%e5%92%8c%e4%bc%8a%e7%94%b8%e5%9b%ad%e7%be%8e%e5%89%a7%e7%99%be%e7%a7%91%e7%ab%99%e6%88%90%e7%ab%8b%e8%af%b4%e6%98%8e.html</guid>
		<description><![CDATA[^^^^^^^^^^^^^续^^^^^^^^^^^^^^^^^^^   由于长期以来伊甸园没有自己的字幕站，不得不挂靠在射手上，在高峰时期射手字幕站挂机也有发生导致我们无法下载字幕，所以从那时候起想一个办法，就是用ftp更新字幕，把做好的字幕都放到ftp作为我们备用，由于ftp使用的局限性，无法搜索，只能按字幕文件夹名找，效率不高。    半年前..... ]]></description>
			<content:encoded><![CDATA[<p>^^^^^^^^^^^^^续^^^^^^^^^^^^^^^^^^^   <br />由于长期以来伊甸园没有自己的字幕站，不得不挂靠在射手上，在高峰时期射手字幕站挂机也有发生导致我们无法下载字幕，所以从那时候起想一个办法，就是用<a href="http://jimey.com/tag/ftp" class="st_tag internal_tag" rel="tag" title="Posts tagged with ftp">ftp</a>更新字幕，把做好的字幕都放到<a href="http://jimey.com/tag/ftp" class="st_tag internal_tag" rel="tag" title="Posts tagged with ftp">ftp</a>作为我们备用，由于<a href="http://jimey.com/tag/ftp" class="st_tag internal_tag" rel="tag" title="Posts tagged with ftp">ftp</a>使用的局限性，无法搜索，只能按字幕文件夹名找，效率不高。    <br />半年前我有一个想法，就是用wordpress博客程序来做我们的字幕站，每一篇博客文章来作为我们的一个字幕更新帖用    <br />字幕组每个成员可以申请一个id，该id可以获得发字幕修改文件等权限，另外可以给字幕组组长更高的，修改字幕附件，修改帖子内容等权限    <br />当初在论坛帖了这个想法，响应的同学也有，只是一直没人来做，半年之后，也就是今天，在跟卡口以及干活的沟通之下，终于把这个想法给实现了。</p>
<p>^^^^^^^^^^^^^用途^^^^^^^^^^^^^^^^^^^    <br />1、初期我只是想拿来做单纯的字幕站    <br />2、后来我觉得其实也可以用来作为我们官方的博客站，比如宣传下字幕组内部的八卦，奇闻轶事、字幕组下季度的做剧目的计划、一些技术性的文章等等    <br />3、再到后来我觉得，我们可以利用这个博客站来做一个媒体工作，比如针对每个剧的点评，可以接收会员和成员的投稿，选择优秀的文章帖到我们的博客分享出去    <br />4、跟论坛的结合，各分版版主可以每周，或者几周，来一个本分版内的精华帖推荐，在博客发布</p>
<p>^^^^^^^^^^^^^^好处^^^^^^^^^^^^^^^^^^    <br />1、在续中已经解释了，有自己的字幕站的好处。另外由于博客有rss订阅功能，这样可以更加友好的往外推广，更加方便各会员获取字幕信息，从论坛单纯的pull方式，到现在的push方式，由于人的懒惰性的存在，目前push才是更加适合发展。 结合twitter等微博，可以把字幕更加广泛的散播出去    <br />2、官方博客站，目前很多大的公司，政府，组织都有在做自己的博客，开放性的发展是当今网络发展的一个元素之一，可以拉近与会员的关系    <br />3、关于媒体工作，这个也是一个目前论坛其实可以做，但是效果不够好的一个事情，在论坛做，由于是pull的方式，有人可能会漏掉，大量的贴会把这些贴埋没。而在博客发的话，push的方式，利用rss可以给所有订阅读者看到，由于是精选剧评，不会被埋没    <br />4、跟论坛的结合，其实也是跟论坛互动的结果，在论坛宣传博客，在博客宣传论坛，论坛人多，宣传博客会有效果，而博客的push方式，会让我们推荐的精华被更多订阅读者看到，增加论坛精华帖的阅读量    <br />5、搜索功能强大，不会给会员带来找不到字幕的麻烦，利用博客的搜索，tag 标签功能，Categories分类功能，可以很方便很快捷的给会员找到自己需要的字幕    <br />当然，我个人还是最喜欢用 Categories 分类 ，可以分3层，又可以做到我们论坛最喜欢的，按数字和字母A-Z的方式，来把剧名按名一个一个的排列下来，效果如下所示    <br />Categories </p>
<ul>
<li>0-9
<ul>
<li><u>24</u></li>
<li>30 Rocks</li>
</ul>
</li>
</ul>
<blockquote><p>另外关于这个地方的rss订阅&#160; 0-9这个目项可以有个RSS订阅，&#160; 24可以有个RSS订阅只显示24的内容更新&#160;&#160; 30 Rocks可以有个RSS订阅来只显示30 Rocks的内容更新</p>
<p>而 0-9的RSS显示24和30 Rocks 内容的更新</p>
<p>(这个地方看不懂就算了 -_-!!) 主要是用来给一些同学比如，有人喜欢24，不喜欢30 Rocks， 有人喜欢24 又喜欢30Rocks 有人喜欢30 Rocks 不喜欢24 这样的情况下怎么解决RSS订阅的问题</p>
</blockquote>
<p><em>&#160;</em></p>
<p>^^^^^^^^^^^^^^如何用^^^^^^^^^^^^^^^^^^^   <br />1、字幕的更新需要各位工作人员的支持和协助    <br />2、官方的博客站，字幕组内部的事情需要字幕组内部来协调，我这只是提个建议    <br />3、媒体工作，这个我主要是在豆瓣看到一些兄弟贴过一些美剧的剧评，所以才想到这条    <br />4、这个也需要各位美剧分坛版主来协调</p>
<p>&#160;</p>
<p>^^^^^^^^^^^^^目前的缺点和问题^^^^^^^^^^^^^^     <br />1、操作的问题，需要首先添加字幕文件，然后再插入文件到博客文章中    <br />2、字幕文件格式，不支持.rar打包，只支持.zip的打包方式&#160;&#160; 由于linux系统对rar支持的不够好，所以才不得不使用.zip的方式</p>
<p>&#160;</p>
<p>……………………………………………………………………………………………………………………………………………………………………</p>
<p>再来美剧百科站     <br />由于论坛的美剧百科板块，过于依靠版主，只有版主才能更新帖子，劳动量过大，且无法发动广大劳动人民的积极性，所以我们采用维基百科，人人都可以编辑的方式来建立了这样一个美剧百科    <br />这个是初衷，具体内容该如何建立，还需要跟广大童鞋门讨论之后再决定，目前只是平台已经搞定。</p>
<p>……………………………………………………………………………………………………………………………………………………………………</p>
<h3  class="related_post_title">相关博文</h3><ul class="related_post"><li>2008-11-18 -- <a href="http://jimey.com/2008/11/18/cloud-computing-on-the-next-week-to-discuss-the-curriculum-some-of-the-ideas.html" title="关于下下周cloud computing讨论课程的一些想法">关于下下周cloud computing讨论课程的一些想法</a> (0)</li><li>2010-07-10 -- <a href="http://jimey.com/2010/07/10/%e4%b8%8a%e7%8f%ad%e4%b8%80%e5%91%a8%e4%ba%86.html" title="上班一周了">上班一周了</a> (2)</li><li>2010-06-20 -- <a href="http://jimey.com/2010/06/20/self-denial.html" title="克己">克己</a> (0)</li><li>2010-03-30 -- <a href="http://jimey.com/2010/03/30/the-garden-of-eden-subtitle-blog-station-uses-the-approach.html" title="伊甸园字幕博客站利用办法">伊甸园字幕博客站利用办法</a> (2)</li><li>2010-01-05 -- <a href="http://jimey.com/2010/01/05/choose.html" title="选择">选择</a> (7)</li><li>2009-11-17 -- <a href="http://jimey.com/2009/11/17/ytet-upload-user-guide.html" title="ytet upload user guide">ytet upload user guide</a> (5)</li><li>2009-10-23 -- <a href="http://jimey.com/2009/10/23/feedsky-feed-plug-in-plug-in-will-lead-to-failure-of-task-execution-wp-booking.html" title="Feedsky Feed 插件插件会导致wp的预订任务执行失败">Feedsky Feed 插件插件会导致wp的预订任务执行失败</a> (0)</li><li>2009-10-21 -- <a href="http://jimey.com/2009/10/21/wordpress-lifestream-plugin.html" title="WordPress Lifestream 插件">WordPress Lifestream 插件</a> (0)</li><li>2009-03-27 -- <a href="http://jimey.com/2009/03/27/automatically-detect-100-percent-folder-and-delete-the-sub-extracting-rar-file-bat.html" title="自动检测文件夹内100%解压rar分包并且删除文件的bat">自动检测文件夹内100%解压rar分包并且删除文件的bat</a> (0)</li><li>2009-03-24 -- <a href="http://jimey.com/2009/03/24/wordpress-plugin.html" title="Wordpress插件">Wordpress插件</a> (0)</li><li>2009-03-16 -- <a href="http://jimey.com/2009/03/16/web-2-0-era-sfile-development-outlook.html" title="web 2.0时代的sfile发展展望">web 2.0时代的sfile发展展望</a> (0)</li><li>2008-12-30 -- <a href="http://jimey.com/2008/12/30/wordpress-changed-a-blog-hosting.html" title="WordPress换了个博客主机">WordPress换了个博客主机</a> (0)</li><li>2008-12-22 -- <a href="http://jimey.com/2008/12/22/picasau002639s-wordpress-plug-in-problem.html" title="Picasa的wordpress插件问题">Picasa的wordpress插件问题</a> (0)</li><li>2008-12-13 -- <a href="http://jimey.com/2008/12/13/sat-matter-of-non-decent.html" title="周六的不正经事">周六的不正经事</a> (0)</li><li>2008-09-18 -- <a href="http://jimey.com/2008/09/18/windows-live-writer-vs-wordpress.html" title="Windows Live Writer vs. Wordpress">Windows Live Writer vs. Wordpress</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://jimey.com/2009/11/17/caption-blog-station-and-the-garden-of-eden-garden-of-eden-drama-wikipedia-desks-set-up-the-united-states-shows.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Firefox.Ubiquity 用的scholar和shooter的2个搜索的命令</title>
		<link>http://jimey.com/2009/11/13/firefox-ubiquity-use-scholar-and-shooter-of-the-two-search-commands.html</link>
		<comments>http://jimey.com/2009/11/13/firefox-ubiquity-use-scholar-and-shooter-of-the-two-search-commands.html#comments</comments>
		<pubDate>Fri, 13 Nov 2009 10:53:53 +0000</pubDate>
		<dc:creator>jimey</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[FireFox]]></category>
		<category><![CDATA[scholar]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[shooter]]></category>
		<category><![CDATA[Ubiquity]]></category>

		<guid isPermaLink="false">http://jimey.com/2009/11/13/firefox-ubiquity-%e7%94%a8%e7%9a%84scholar%e5%92%8cshooter%e7%9a%842%e4%b8%aa%e6%90%9c%e7%b4%a2%e7%9a%84%e5%91%bd%e4%bb%a4.html</guid>
		<description><![CDATA[CmdUtils.CreateCommand({ &#160; names: [&#34;scholar&#34;], &#160; arguments: [ {role: 'object', nountype: noun_arb_text, label: 'search_string'}], &#160; description: &#34;show results in new tabs.&#34;, &#160; preview: &#34;Searches for google&#8217;scholar.&#34;, &#160; icon: &#34;http://www.google.com/favicon.ico&#34;, &#160; execute: function(searchterms) { &#160;&#160;&#160; var finalterms = encodeURIComponent(searchterms.object.text); &#160;&#160;&#160; Utils.openUrlInBrowser(&#34;www.go... ]]></description>
			<content:encoded><![CDATA[<blockquote><p>CmdUtils.CreateCommand({     <br />&#160; names: [&quot;<a href="http://jimey.com/tag/scholar" class="st_tag internal_tag" rel="tag" title="Posts tagged with scholar">scholar</a>&quot;],      <br />&#160; arguments: [ {role: 'object', nountype: noun_arb_text, label: 'search_string'}],      <br />&#160; description: &quot;show results in new tabs.&quot;,      <br />&#160; preview: &quot;Searches for google&#8217;<a href="http://jimey.com/tag/scholar" class="st_tag internal_tag" rel="tag" title="Posts tagged with scholar">scholar</a>.&quot;,      <br />&#160; icon: &quot;<a href="http://www.google.com/favicon.ico&quot;">http://www.google.com/favicon.ico&quot;</a>,      <br />&#160; execute: function(searchterms) {      <br />&#160;&#160;&#160; var finalterms = encodeURIComponent(searchterms.object.text);      <br />&#160;&#160;&#160; Utils.openUrlInBrowser(&quot;www.google.com/<a href="http://jimey.com/tag/scholar" class="st_tag internal_tag" rel="tag" title="Posts tagged with scholar">scholar</a>?q=&quot; + finalterms);      <br />&#160; }      <br />})      <br />CmdUtils.CreateCommand({      <br />&#160; names: [&quot;shooter&quot;],      <br />&#160; arguments: [ {role: 'object', nountype: noun_arb_text, label: 'search_string'}],      <br />&#160; description: &quot;Searches subs in new tabs.&quot;,      <br />&#160; preview: &quot;Searches for subs on shooter.cn.&quot;,      <br />&#160; execute: function(searchterms) {      <br />&#160;&#160;&#160; var finalterms = encodeURIComponent(searchterms.object.text);      <br />&#160;&#160;&#160; Utils.openUrlInBrowser(&quot;<a href="http://www.shooter.cn/search/Sub:&quot;">http://www.shooter.cn/search/Sub:&quot;</a> + finalterms + &quot;/?x=0&amp;y=0&amp;&quot;);      <br />&#160; }      <br />})</p>
</blockquote>
<p>照着一个搜索种子的改的</p>
<p>适用于 Ubiquity 0.5.4!</p>
<h3  class="related_post_title">相关博文</h3><ul class="related_post"><li>2009-03-30 -- <a href="http://jimey.com/2009/03/30/currently-in-use-firefox-ubiquity-command.html" title="目前在用的Firefox的Ubiquity Command">目前在用的Firefox的Ubiquity Command</a> (0)</li><li>2009-12-25 -- <a href="http://jimey.com/2009/12/25/twitter-search-result-u0026gt-language-filter.html" title="twitter search result -&gt; language filter">twitter search result -&gt; language filter</a> (0)</li><li>2009-07-13 -- <a href="http://jimey.com/2009/07/13/south-korea-to-see-youkuu002639s-ssh-proxy-ip-address.html" title="韩国ip看youku之ssh代理解决">韩国ip看youku之ssh代理解决</a> (0)</li><li>2009-07-02 -- <a href="http://jimey.com/2009/07/02/you-are-all-geek-mody.html" title="你们都是Geek么？">你们都是Geek么？</a> (0)</li><li>2009-04-16 -- <a href="http://jimey.com/2009/04/16/local-search.html" title="Local Search">Local Search</a> (0)</li><li>2009-03-23 -- <a href="http://jimey.com/2009/03/23/information-retrieval-course-2-weeks-to-a-summary-of.html" title="Information Retrieval 课程2周来的总结">Information Retrieval 课程2周来的总结</a> (0)</li><li>2009-03-07 -- <a href="http://jimey.com/2009/03/07/chatzilla-the-irc-plugin-firefox.html" title="firefox的irc插件chatzilla">firefox的irc插件chatzilla</a> (0)</li><li>2009-03-07 -- <a href="http://jimey.com/2009/03/07/life-hanging-net.html" title="挂网人生">挂网人生</a> (2)</li><li>2009-02-28 -- <a href="http://jimey.com/2009/02/28/yahoo-search-boss.html" title="Yahoo! Search BOSS">Yahoo! Search BOSS</a> (0)</li><li>2009-01-21 -- <a href="http://jimey.com/2009/01/21/sorry-google-you-missed-the-real-time-web.html" title="Sorry Google, You Missed the Real-Time Web!">Sorry Google, You Missed the Real-Time Web!</a> (0)</li><li>2009-01-05 -- <a href="http://jimey.com/2009/01/05/ikunori-technology-news.html" title="几则科技新闻">几则科技新闻</a> (0)</li><li>2008-12-14 -- <a href="http://jimey.com/2008/12/14/this-is-a-two-day-subscription-rss-feedback.html" title="这两天订阅的RSS的一个信息反馈">这两天订阅的RSS的一个信息反馈</a> (0)</li><li>2008-11-25 -- <a href="http://jimey.com/2008/11/25/with-regard-to-internet-search-based-on-linear-logic-papers.html" title="关于Internet Search Based on Linear Logic论文">关于Internet Search Based on Linear Logic论文</a> (0)</li><li>2008-11-16 -- <a href="http://jimey.com/2008/11/16/middle-of-the-night-to-sleep.html" title="半夜睡觉">半夜睡觉</a> (4)</li><li>2008-09-30 -- <a href="http://jimey.com/2008/09/30/firefox-universal-uploader.html" title="Firefox Universal Uploader">Firefox Universal Uploader</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://jimey.com/2009/11/13/firefox-ubiquity-use-scholar-and-shooter-of-the-two-search-commands.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>bt软件uTorrent支持伊甸园bt下载站资源&#8220;全自动&#8221;下载教程</title>
		<link>http://jimey.com/2009/11/13/utorrent-support-the-garden-of-eden-bt-software-bt-download-station-resources-u0026quotautomaticu0026quot-download-tutorial.html</link>
		<comments>http://jimey.com/2009/11/13/utorrent-support-the-garden-of-eden-bt-software-bt-download-station-resources-u0026quotautomaticu0026quot-download-tutorial.html#comments</comments>
		<pubDate>Fri, 13 Nov 2009 07:57:43 +0000</pubDate>
		<dc:creator>jimey</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[放心情]]></category>
		<category><![CDATA[utorrent]]></category>
		<category><![CDATA[YDY]]></category>
		<category><![CDATA[美剧]]></category>

		<guid isPermaLink="false">http://jimey.com/2009/11/13/bt%e8%bd%af%e4%bb%b6utorrent%e6%94%af%e6%8c%81%e4%bc%8a%e7%94%b8%e5%9b%adbt%e4%b8%8b%e8%bd%bd%e7%ab%99%e8%b5%84%e6%ba%90%e5%85%a8%e8%87%aa%e5%8a%a8%e4%b8%8b%e8%bd%bd%e6%95%99%e7%a8%8b.html</guid>
		<description><![CDATA[本教程的好处和优点   1. 全自动下载自己想要的剧模式    可以全自动下载设置好自己想要的剧 ，完全不用去盯着发布站看。你想要的片子一被发布，就可以自动开始bt下载。    2. 手动下载模式    可以采用这样订阅的方式，就不用登陆bt.sfileydy.com看更新，在bt软件这里看有啥剧目更新即可&#160;&#160;&#160;&#160; 根据自己..... ]]></description>
			<content:encoded><![CDATA[<p>本教程的好处和优点   <br />1. 全自动下载自己想要的剧模式    <br />可以全自动下载设置好自己想要的剧 ，完全不用去盯着发布站看。你想要的片子一被发布，就可以自动开始bt下载。    <br />2. 手动下载模式    <br />可以采用这样订阅的方式，就不用登陆bt.sfileydy.com看更新，在bt软件这里看有啥剧目更新即可&#160;&#160;&#160;&#160; 根据自己所需手动下载    <br />…………………………………………………以下为所需软件和链接…………………………………………………………………………………………………    <br />伊甸园bt下载站连接    <br /><a href="http://bt.sfileydy.com/">http://bt.sfileydy.com/</a>    <br />伊甸园bt下载站的rss链接    <br /><a href="http://feed.feedsky.com/btsfileydy">http://feed.feedsky.com/btsfileydy</a>    <br />bt软件uTorrent下载链接    <br /><a href="http://www.utorrent.com/downloads">http://www.utorrent.com/downloads</a>    <br />该下载链接中还有个语言包Language pack 下载     <br />如果你想用中文版的uTorrent的话 推荐下载语言包    <br />把uTorrent的语言包拷贝到%AppData%\uTorrent目录    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 打开%AppData%\uTorrent目录的办法 &#8212;&#8212;&gt; 开始 -&gt;运行-&gt;&#160; 在框里面输入 %AppData%\uTorrent&#160; 按回车键 即可打开目录    <br />…………………………………以上为软件下载和需要的链接………………………………………………………    <br />…………………………………以下为图示教程……………………………………………………………………………    <br />……………………………………前期准备工作，在uTorrent添加伊甸园bt发布站rss订&#160; 阅………………………………………………………………………………</p>
<p>&#160;</p>
<p>&#160;</p>
<p>具体图示内容</p>
<p>&#160;</p>
<p>还是去论坛看吧 <a title="http://bbs.sfileydy.com/viewthread.php?tid=305477&amp;page=1&amp;extra=#pid11307810" href="http://bbs.sfileydy.com/viewthread.php?tid=305477&amp;page=1&amp;extra=#pid11307810">http://bbs.sfileydy.com/viewthread.php?tid=305477&amp;page=1&amp;extra=#pid11307810</a></p>
<h3  class="related_post_title">相关博文</h3><ul class="related_post"><li>2010-06-29 -- <a href="http://jimey.com/2010/06/29/%e4%b8%b4%e7%9d%a1%e5%89%8d%e5%8f%88%e8%a7%89%e5%be%97%e8%a6%81%e5%86%99%e7%82%b9%e4%bb%80%e4%b9%88.html" title="临睡前,又觉得要写点什么">临睡前,又觉得要写点什么</a> (0)</li><li>2010-03-30 -- <a href="http://jimey.com/2010/03/30/the-garden-of-eden-subtitle-blog-station-uses-the-approach.html" title="伊甸园字幕博客站利用办法">伊甸园字幕博客站利用办法</a> (2)</li><li>2010-01-06 -- <a href="http://jimey.com/2010/01/06/twists-and-turns-i-finally-have-to-go-home.html" title="几经波折我终于又要回家了">几经波折我终于又要回家了</a> (3)</li><li>2009-11-12 -- <a href="http://jimey.com/2009/11/12/utorrent-support-the-garden-of-eden-bt-software-bt-download-station-resources-u0026quotautomaticu0026quot-download-tutorial.html" title="bt软件uTorrent支持伊甸园bt下载站资源&ldquo;全自动&rdquo;下载教程">bt软件uTorrent支持伊甸园bt下载站资源&ldquo;全自动&rdquo;下载教程</a> (0)</li><li>2009-04-14 -- <a href="http://jimey.com/2009/04/14/tuesday-destined-to-the-days-of-entertainment.html" title="周二，注定是娱乐的日子">周二，注定是娱乐的日子</a> (2)</li><li>2009-04-02 -- <a href="http://jimey.com/2009/04/02/zt-occasionally-look-at-24-i-admit-that-i-have-been-so-affected-and-to-this-end-the-problem-for.html" title="[ZT]偶然看24：我承认我被影响了，并为此而纠结着">[ZT]偶然看24：我承认我被影响了，并为此而纠结着</a> (0)</li><li>2009-03-31 -- <a href="http://jimey.com/2009/03/31/spent-a-long-time-to-finish-auto.html" title="花了半天的时间写完auto">花了半天的时间写完auto</a> (2)</li><li>2009-01-15 -- <a href="http://jimey.com/2009/01/15/continue.html" title="继续">继续</a> (4)</li><li>2009-01-12 -- <a href="http://jimey.com/2009/01/12/1-11-small-singles-day.html" title="1.11小光棍节">1.11小光棍节</a> (0)</li><li>2009-01-08 -- <a href="http://jimey.com/2009/01/08/with-regard-to-entertainment-content-in-january.html" title="关于1月娱乐性内容">关于1月娱乐性内容</a> (0)</li><li>2008-12-10 -- <a href="http://jimey.com/2008/12/10/time-will-change-everything.html" title="时间会改变一切">时间会改变一切</a> (0)</li><li>2008-11-25 -- <a href="http://jimey.com/2008/11/25/24-summary.html" title="24: Summary">24: Summary</a> (2)</li><li>2008-10-10 -- <a href="http://jimey.com/2008/10/10/csi-s09-crime-scene-investigation-di-jiuji.html" title="CSI.S09犯罪现场调查第九季">CSI.S09犯罪现场调查第九季</a> (6)</li><li>2008-09-01 -- <a href="http://jimey.com/2008/09/01/america-will-soon-play-the-new-season-kicked-off-tomorrow-then-escaped-again-season-started.html" title="美剧新一季又即将拉开序幕，明天又一季越狱又要开始了">美剧新一季又即将拉开序幕，明天又一季越狱又要开始了</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://jimey.com/2009/11/13/utorrent-support-the-garden-of-eden-bt-software-bt-download-station-resources-u0026quotautomaticu0026quot-download-tutorial.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>bt软件uTorrent支持伊甸园bt下载站资源&#8220;全自动&#8221;下载教程</title>
		<link>http://jimey.com/2009/11/12/utorrent-support-the-garden-of-eden-bt-software-bt-download-station-resources-u0026quotautomaticu0026quot-download-tutorial.html</link>
		<comments>http://jimey.com/2009/11/12/utorrent-support-the-garden-of-eden-bt-software-bt-download-station-resources-u0026quotautomaticu0026quot-download-tutorial.html#comments</comments>
		<pubDate>Thu, 12 Nov 2009 11:05:14 +0000</pubDate>
		<dc:creator>jimey</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[bt]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[utorrent]]></category>
		<category><![CDATA[伊甸园]]></category>

		<guid isPermaLink="false">http://jimey.com/2009/11/12/%e6%b5%8b%e8%af%95123.html</guid>
		<description><![CDATA[&#160; 伊甸园bt下载站连接   http://bt.sfileydy.com/    伊甸园bt下载站的rss链接    http://feed.feedsky.com/btsfileydy    bt软件uTorrent下载链接    http://www.utorrent.com/downloads    该下载链接中还有个语言包Language pack 下载     如果你想用中文版的uTorrent的话 推荐下载语言包    把uTorrent的语言包拷贝..... ]]></description>
			<content:encoded><![CDATA[<p>&#160;
<p>伊甸园bt下载站连接   <br /><a href="http://bt.sfileydy.com/">http://bt.sfileydy.com/</a>    <br />伊甸园bt下载站的rss链接    <br /><a href="http://feed.feedsky.com/btsfileydy">http://feed.feedsky.com/btsfileydy</a>    <br />bt软件uTorrent下载链接    <br /><a href="http://www.utorrent.com/downloads">http://www.utorrent.com/downloads</a>    <br />该下载链接中还有个语言包Language pack 下载     <br />如果你想用中文版的uTorrent的话 推荐下载语言包    <br />把uTorrent的语言包拷贝到%AppData%\uTorrent目录    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 打开%AppData%\uTorrent目录的办法 &#8212;&#8212;&gt; 开始 -&gt;运行-&gt;&#160; 在框里面输入 %AppData%\uTorrent&#160; 按回车键 即可打开目录    <br />…………………………………以上为软件下载和需要的链接……………………………………………………………    <br />…………………………………以下为图示教程…………………………………………………………………………………………</p>
<p><a title="1" href="http://www.flickr.com/photos/46438329@N00/4097334137/"><img border="0" alt="1" src="http://static.flickr.com/2739/4097334137_b6874543ff.jpg" /></a></p>
<p>&#160;</p>
<p><a title="2" href="http://www.flickr.com/photos/46438329@N00/4098090360/"><img border="0" alt="2" src="http://static.flickr.com/2673/4098090360_c3cf229dfc.jpg" /></a></p>
<p>&#160;</p>
<p><a title="3" href="http://www.flickr.com/photos/46438329@N00/4098090434/"><img border="0" alt="3" src="http://static.flickr.com/2766/4098090434_0265209101.jpg" /></a></p>
<p>&#160;</p>
<p>&#160;</p>
<p><a title="5" href="http://www.flickr.com/photos/46438329@N00/4097334549/"><img border="0" alt="5" src="http://static.flickr.com/2507/4097334549_dfa0ab484d.jpg" /></a></p>
<p>&#160;</p>
<p>&#160;</p>
<p><a title="6" href="http://www.flickr.com/photos/46438329@N00/4098090752/"><img border="0" alt="6" src="http://static.flickr.com/2713/4098090752_1427bc5dde.jpg" /></a></p>
<p>&#160;</p>
<p>&#160;</p>
<p><a title="7" href="http://www.flickr.com/photos/46438329@N00/4097334751/"><img border="0" alt="7" src="http://static.flickr.com/2587/4097334751_b9eb2eef0e.jpg" /></a>.</p>
<p>把下载时保存目录设置好，这样所有下载的内容都会下载那个文件夹，另外那个手动添加时显示对话框，可以不要选</p>
<p>&#160;</p>
<p><a title="4" href="http://www.flickr.com/photos/46438329@N00/4097334457/"><img border="0" alt="4" src="http://static.flickr.com/2761/4097334457_446b6bef0d.jpg" /></a></p>
<p>&#160;</p>
<p>然后在 那个订阅下面的伊甸园美剧bt下载区那点右键选择编辑订阅</p>
<p>&#160;</p>
<p><a title="8" href="http://www.flickr.com/photos/46438329@N00/4097334839/"><img border="0" alt="8" src="http://static.flickr.com/2641/4097334839_4c9ed89814.jpg" /></a></p>
<p>选择自动下载即可   <br />…………………………………提示和问题…………………………………………………………    <br />1. 可以采用这样订阅的方式，就不用登陆bt.sfileydy.com看更新，在bt软件这里看有啥剧目更新即可    <br />根据自己所需手动下载    <br />2. 可以自动下载     <br />这个自动下载目前暂时还不能实现uTorrent的智能过滤，所以导致的后果就是bt发布页发布的所有美剧全部都会下载 -_-!!    <br />关于这个智能过滤，我们将继续研究解决办法，会在不久的一段时间内解决掉这个问题，这样开着bt软件挂着不用管，如果你想要的那个剧在bt发布站发布，那么就会被自动下载    <br />比如，你要上班，你要出行，你要上课，即使人不在电脑旁边，你的电脑也可以自动帮你下载好你想要的剧集    <br />3.关于下载完毕自动做种和以及自动停止做种，可以在设置 中看到    <br />分享率设置百分比或者做种多少分钟以后&#160;&#160; 自动暂停种子上传    <br />当然 还是鼓励大家多多上传为好，只是这些自动设置功能，会更加节约我们的时间</p>
<p><a title="9" href="http://www.flickr.com/photos/46438329@N00/4097334961/"><img border="0" alt="9" src="http://static.flickr.com/2465/4097334961_12e3c7f8ed.jpg" /></a></p>
<h3  class="related_post_title">相关博文</h3><ul class="related_post"><li>2010-03-30 -- <a href="http://jimey.com/2010/03/30/the-garden-of-eden-subtitle-blog-station-uses-the-approach.html" title="伊甸园字幕博客站利用办法">伊甸园字幕博客站利用办法</a> (2)</li><li>2010-01-06 -- <a href="http://jimey.com/2010/01/06/twists-and-turns-i-finally-have-to-go-home.html" title="几经波折我终于又要回家了">几经波折我终于又要回家了</a> (3)</li><li>2009-12-18 -- <a href="http://jimey.com/2009/12/18/twitter-rss-reminder.html" title="twitter rss 提醒">twitter rss 提醒</a> (0)</li><li>2009-11-13 -- <a href="http://jimey.com/2009/11/13/utorrent-support-the-garden-of-eden-bt-software-bt-download-station-resources-u0026quotautomaticu0026quot-download-tutorial.html" title="bt软件uTorrent支持伊甸园bt下载站资源&ldquo;全自动&rdquo;下载教程">bt软件uTorrent支持伊甸园bt下载站资源&ldquo;全自动&rdquo;下载教程</a> (0)</li><li>2009-03-31 -- <a href="http://jimey.com/2009/03/31/spent-a-long-time-to-finish-auto.html" title="花了半天的时间写完auto">花了半天的时间写完auto</a> (2)</li><li>2009-03-27 -- <a href="http://jimey.com/2009/03/27/comments-to-open-real-time-twitter-to-remind-self-propelled.html" title="评论开启实时twitter自推提醒">评论开启实时twitter自推提醒</a> (0)</li><li>2009-03-27 -- <a href="http://jimey.com/2009/03/27/get-rid-of-live-mail-for-gmail-offline.html" title="干掉live mail换gmail offline">干掉live mail换gmail offline</a> (4)</li><li>2009-03-17 -- <a href="http://jimey.com/2009/03/17/out-back-collecting-rubbish.html" title="出门回来，捡垃圾">出门回来，捡垃圾</a> (0)</li><li>2009-02-14 -- <a href="http://jimey.com/2009/02/14/written-on-valentineu002639s-day.html" title="写在情人节这天">写在情人节这天</a> (0)</li><li>2009-02-01 -- <a href="http://jimey.com/2009/02/01/wanted-to-terms-u0026amp.html" title="很想写点什么">很想写点什么</a> (0)</li><li>2008-12-16 -- <a href="http://jimey.com/2008/12/16/idea-is-sometimes-forced-out-of.html" title="idea有时候是逼出来的">idea有时候是逼出来的</a> (0)</li><li>2008-11-18 -- <a href="http://jimey.com/2008/11/18/cloud-computing-on-the-next-week-to-discuss-the-curriculum-some-of-the-ideas.html" title="关于下下周cloud computing讨论课程的一些想法">关于下下周cloud computing讨论课程的一些想法</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://jimey.com/2009/11/12/utorrent-support-the-garden-of-eden-bt-software-bt-download-station-resources-u0026quotautomaticu0026quot-download-tutorial.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>又收到google wave 30个邀请</title>
		<link>http://jimey.com/2009/11/10/also-received-invitations-google-wave-30.html</link>
		<comments>http://jimey.com/2009/11/10/also-received-invitations-google-wave-30.html#comments</comments>
		<pubDate>Tue, 10 Nov 2009 12:40:05 +0000</pubDate>
		<dc:creator>jimey</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Google Wave]]></category>
		<category><![CDATA[邀请]]></category>

		<guid isPermaLink="false">http://jimey.com/2009/11/10/%e5%8f%88%e6%94%b6%e5%88%b0google-wave-30%e4%b8%aa%e9%82%80%e8%af%b7.html</guid>
		<description><![CDATA[用了google wave一个月  上周才刚刚收到20个邀请，一会儿就派完  刚刚莫名登陆又有30个邀请  没有的兄弟，留言留email (最好是gmail的)俺赠送  预计赠送会在后天开始,大概会经过google 3 –5 天的审查才会收到开通google wave的邀... ]]></description>
			<content:encoded><![CDATA[<p>用了google wave一个月</p>
<p>上周才刚刚收到20个邀请，一会儿就派完</p>
<p>刚刚莫名登陆又有30个邀请</p>
<p>没有的兄弟，留言留email (最好是gmail的)俺赠送</p>
<p>预计赠送会在后天开始,大概会经过google 3 –5 天的审查才会收到开通google wave的邀请</p>
<h3  class="related_post_title">相关博文</h3><ul class="related_post"><li>2009-10-06 -- <a href="http://jimey.com/2009/10/06/try-google-wave.html" title="Google Wave试用">Google Wave试用</a> (11)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://jimey.com/2009/11/10/also-received-invitations-google-wave-30.html/feed</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
		<item>
		<title>NATE ON 某新功能?or 我以前没发现的功能</title>
		<link>http://jimey.com/2009/11/08/nate-on-a-new-feature-or-i-had-not-found-the-function.html</link>
		<comments>http://jimey.com/2009/11/08/nate-on-a-new-feature-or-i-had-not-found-the-function.html#comments</comments>
		<pubDate>Sun, 08 Nov 2009 07:47:42 +0000</pubDate>
		<dc:creator>jimey</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[放心情]]></category>
		<category><![CDATA[NateOn]]></category>

		<guid isPermaLink="false">http://jimey.com/2009/11/08/nate-on-%e6%9f%90%e6%96%b0%e5%8a%9f%e8%83%bdor-%e6%88%91%e4%bb%a5%e5%89%8d%e6%b2%a1%e5%8f%91%e7%8e%b0%e7%9a%84%e5%8a%9f%e8%83%bd.html</guid>
		<description><![CDATA[nateon是韩国常用的聊天工具，就好比QQ在中国的地位一样  刚刚无意中发现的一个功能  就是可以把比较常聊的人，丢到桌面去，然后就不用打开nate 然后在好友列表里面找那个人再双击对话框开聊了  如图所示     图中右上角那2位同学就被我抓出来贴到桌面去了。 嘿... ]]></description>
			<content:encoded><![CDATA[<p>nateon是韩国常用的聊天工具，就好比QQ在中国的地位一样</p>
<p>刚刚无意中发现的一个功能</p>
<p>就是可以把比较常聊的人，丢到桌面去，然后就不用打开nate 然后在好友列表里面找那个人再双击对话框开聊了</p>
<p>如图所示</p>
<p><img src="http://farm3.static.flickr.com/2705/4085419714_64f26784b7_o.jpg" width="640" height="480" /> </p>
<p>图中右上角那2位同学就被我抓出来贴到桌面去了。 嘿嘿</p>
<h3  class="related_post_title">相关博文</h3><ul class="related_post"><li>2009-12-26 -- <a href="http://jimey.com/2009/12/26/nateu002639s-twitter-business-model.html" title="NATE的twitter商业模式">NATE的twitter商业模式</a> (0)</li><li>2009-03-07 -- <a href="http://jimey.com/2009/03/07/life-hanging-net.html" title="挂网人生">挂网人生</a> (2)</li><li>2009-01-21 -- <a href="http://jimey.com/2009/01/21/nateon-4-0-beta-version-of-new-features.html" title="新版NateOn 4.0 beta版本的特性">新版NateOn 4.0 beta版本的特性</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://jimey.com/2009/11/08/nate-on-a-new-feature-or-i-had-not-found-the-function.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Flickr Pro帐号使用经历</title>
		<link>http://jimey.com/2009/11/05/flickr-pro-account-to-use-experience.html</link>
		<comments>http://jimey.com/2009/11/05/flickr-pro-account-to-use-experience.html#comments</comments>
		<pubDate>Thu, 05 Nov 2009 09:36:53 +0000</pubDate>
		<dc:creator>jimey</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[放心情]]></category>
		<category><![CDATA[ACDSee]]></category>
		<category><![CDATA[Flickr]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[uploadr]]></category>
		<category><![CDATA[Visa]]></category>
		<category><![CDATA[免费]]></category>

		<guid isPermaLink="false">http://jimey.com/2009/11/05/flickr-pro%e5%b8%90%e5%8f%b7%e4%bd%bf%e7%94%a8%e7%bb%8f%e5%8e%86.html</guid>
		<description><![CDATA[1.之前都是免费用户，一个月100M 只能看到最新的200张照片  现在付费之后无限量上传，全部照片都可以看到  2.上传软件选择，之前用flickr官方出的desktop uploadr 上传了一些还可以，后来就挂了！ 不知道怎么了api key那些总是出错 停在processing的地方一直停住不动，看consol界面显示出错。后来上twitter问童鞋门，推荐AC..... ]]></description>
			<content:encoded><![CDATA[<p>1.之前都是免费用户，一个月100M 只能看到最新的200张照片</p>
<p>现在付费之后无限量上传，全部照片都可以看到</p>
<p>2.上传软件选择，之前用flickr官方出的desktop uploadr 上传了一些还可以，后来就挂了！ 不知道怎么了api key那些总是出错 停在processing的地方一直停住不动，看consol界面显示出错。后来上twitter问童鞋门，推荐ACDsee，于是就找个了来用</p>
<p>ACDsee效果很不错，上传照片很舒服，很快就上传完毕，强烈推荐</p>
<p>3.Flickr的pro账号买了之后，是不能取消的，就是说不会再有把钱退回来的可能性</p>
<p>目前有个问题就是，买pro的时候，我是通过visa卡买的，会扣1美元，然后再扣，我买了2年扣了47.99美元</p>
<p>由于被多扣1美元，所以搜索flcikr帮助文档上，有一些同学也是这样的问题，被扣1美元，据说会在24小时内退回，目前俺已经过了快36小时，暂时没有发现那1美元有被退回的迹象</p>
<h3  class="related_post_title">相关博文</h3><ul class="related_post"><li>2010-05-05 -- <a href="http://jimey.com/2010/05/05/mocospace-architecture-3-billion-mobile-page-views-a-month.html" title="MocoSpace Architecture &#8211; 3 Billion Mobile Page Views a Month">MocoSpace Architecture &#8211; 3 Billion Mobile Page Views a Month</a> (0)</li><li>2010-04-22 -- <a href="http://jimey.com/2010/04/22/several-articles-on-twitter-hadoop-cassandra-pig-flockdbu002639s-slide.html" title="几篇关于twitter,hadoop,Cassandra,Pig,FlockDB的slide">几篇关于twitter,hadoop,Cassandra,Pig,FlockDB的slide</a> (0)</li><li>2010-04-03 -- <a href="http://jimey.com/2010/04/03/marketing-in-twitter.html" title="Marketing in Twitter">Marketing in Twitter</a> (0)</li><li>2010-04-01 -- <a href="http://jimey.com/2010/04/01/foolu002639s-day.html" title="愚人节">愚人节</a> (2)</li><li>2010-03-30 -- <a href="http://jimey.com/2010/03/30/the-garden-of-eden-subtitle-blog-station-uses-the-approach.html" title="伊甸园字幕博客站利用办法">伊甸园字幕博客站利用办法</a> (2)</li><li>2010-03-29 -- <a href="http://jimey.com/2010/03/29/the-subversion-of-traditional.html" title="传统的颠覆">传统的颠覆</a> (6)</li><li>2010-03-24 -- <a href="http://jimey.com/2010/03/24/twittersleepingtime.html" title="TwitterSleepingtime">TwitterSleepingtime</a> (0)</li><li>2010-03-12 -- <a href="http://jimey.com/2010/03/12/chinese-new-year-activities-in-a-number-of-recent-photos-collate-a-moment-all-of-the-communication-flickr.html" title="一些过年活动的近期照片.整理了一下,都传flickr了">一些过年活动的近期照片.整理了一下,都传flickr了</a> (0)</li><li>2010-03-12 -- <a href="http://jimey.com/2010/03/12/a-week-and-into-his-new-role.html" title="一周了,进入角色了">一周了,进入角色了</a> (0)</li><li>2010-02-19 -- <a href="http://jimey.com/2010/02/19/continue-to-diary-like-narrative.html" title="继续日记般的记叙">继续日记般的记叙</a> (0)</li><li>2010-02-16 -- <a href="http://jimey.com/2010/02/16/then-after-a-few-days.html" title="又过几天了">又过几天了</a> (4)</li><li>2010-01-28 -- <a href="http://jimey.com/2010/01/28/home-on-the-fourth-day-u0026quothas-11-days-of-the.html" title="到家第四天&#8211;&gt;已经11天了">到家第四天&#8211;&gt;已经11天了</a> (7)</li><li>2010-01-13 -- <a href="http://jimey.com/2010/01/13/well-a-week-did-not-report-to-work.html" title="好吧，一个星期没汇报工作了">好吧，一个星期没汇报工作了</a> (2)</li><li>2009-12-26 -- <a href="http://jimey.com/2009/12/26/nateu002639s-twitter-business-model.html" title="NATE的twitter商业模式">NATE的twitter商业模式</a> (0)</li><li>2009-12-25 -- <a href="http://jimey.com/2009/12/25/twitter-search-result-u0026gt-language-filter.html" title="twitter search result -&gt; language filter">twitter search result -&gt; language filter</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://jimey.com/2009/11/05/flickr-pro-account-to-use-experience.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>继续微博客，继续同步消息</title>
		<link>http://jimey.com/2009/10/31/to-continue-to-micro-blog-to-continue-to-sync-messages.html</link>
		<comments>http://jimey.com/2009/10/31/to-continue-to-micro-blog-to-continue-to-sync-messages.html#comments</comments>
		<pubDate>Sat, 31 Oct 2009 04:50:32 +0000</pubDate>
		<dc:creator>jimey</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[oAuth]]></category>
		<category><![CDATA[Ping.fm]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Twitterfead]]></category>
		<category><![CDATA[新浪微博]]></category>
		<category><![CDATA[火兔]]></category>
		<category><![CDATA[豆瓣]]></category>

		<guid isPermaLink="false">http://jimey.com/2009/10/31/%e7%bb%a7%e7%bb%ad%e5%be%ae%e5%8d%9a%e5%ae%a2%ef%bc%8c%e7%bb%a7%e7%bb%ad%e5%90%8c%e6%ad%a5%e6%b6%88%e6%81%af.html</guid>
		<description><![CDATA[太多微博客，懒得每个都更新，但是每个地方都有不同的朋友   想是在一个地方发消息，更新所有的微博客，所以就不得不想这个同步的办法了   目前我是用这样的流程   twitter (主号) -&#62; ping.fm -&#62; custom.url -&#62; 火兔(嘀咕) -&#62; 新浪微博   同时这个ping.fm 也一块更新 我一个备份我发过twitter的另外一个账号&#1..... ]]></description>
			<content:encoded><![CDATA[<p>太多微博客，懒得每个都更新，但是每个地方都有不同的朋友 </p>
<p>想是在一个地方发消息，更新所有的微博客，所以就不得不想这个同步的办法了 </p>
<p>目前我是用这样的流程 </p>
<p>twitter (主号) -&gt; ping.fm -&gt; custom.url -&gt; 火兔(嘀咕) -&gt; 新浪微博 </p>
<p>同时这个ping.fm 也一块更新 我一个备份我发过twitter的另外一个账号&#160; 以及facebook </p>
<p>主号往ping.fm发消息的时候过滤了RT 和 @ , 这样我的主号跟人聊天打屁 扯蛋 八卦的内容就不会传播出去了 </p>
<p>我养了3个twitter的账号 目的有几个 </p>
<p>1.主号 ：&#160; 发一些有价值的，有营养的 ， 顺便跟人打屁 RT 扯蛋 聊天 吹牛 八卦的   <br />2.机器人号 ： 用twitterfeed 抓取我博客的comment rss 然后加上前缀 @ 主号&#160; 的方式 发放消息， 这样如果有人在我博客评论，我在我的主号上查看 @me 就可以知道有评论了， 我加了我的wordpress的评论rss以及live space的 </p>
<p>3.备份消息号 ： 备份主号发的消息，还有一些，比如 我睡觉了，我起床了，我吃饭了 这样无聊的信息，我想这样记录下看看我天天都在干啥的时候，又对别人没任何意义的时候，就把内容保存到这个号就可以了，今后多年以后再看过来，也是蛮有意思的一件事情 </p>
<p>twitter -&gt; ping.fm 主要是用python脚本来实现 </p>
<p>有个ping.fm的python库，安装之后就很简单了 </p>
<p>具体代码可以参看 </p>
<blockquote><p>#!/usr/bin/python </p>
<p>from xml.dom.minidom import parseString     <br />import urllib      <br />import urllib2      <br />import sys      <br />from pyngfm import PyngFM </p>
<p>def post_to_pingfm(msg):     <br />&#160;&#160;&#160; pfm = PyngFM() </p>
<p>&#160;&#160;&#160; pfm.setApiKey(&#8216;xxxxxxxxxxxxxxxxx&#8217;)     <br />&#160;&#160;&#160; pfm.setUserAppKey(&#8216;xxxxxxxxxxxxxxxxxxxxxxx&#8217;) </p>
<p>&#160;&#160;&#160; pfm.user_post(&#8216;default&#8217;,'%s&#8217;%msg) </p>
<p>def main():     <br />&#160;&#160;&#160; f = open(&#8216;last.txt&#8217;,'r&#8217;)      <br />&#160;&#160;&#160; maxid = int(f.read())      <br />&#160;&#160;&#160; f.close()      <br />&#160;&#160;&#160; if maxid &lt; 1166717326:      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; print &#8216;error&#8217;      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; sys.exit(-1)      <br />&#160;&#160;&#160; params = urllib.urlencode({&#8216;since_id&#8217;:maxid})      <br />&#160;&#160;&#160; f = urllib.urlopen(&quot;<a href="http://twitter.com/statuses/user_timeline/jimey.xml?%s&quot;">http://twitter.com/statuses/user_timeline/jimey.xml?%s&quot;</a> % params)      <br />&#160;&#160;&#160; xmltext = f.read()      <br />&#160;&#160;&#160; dom = parseString(xmltext)      <br />&#160;&#160;&#160; statuses = dom.childNodes[0]      <br />&#160;&#160;&#160; messages = []      <br />&#160;&#160;&#160; s = 0      <br />&#160;&#160;&#160; for node in statuses.childNodes:      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if node.nodeName == &#8216;status&#8217;:      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; status = node      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; for snode in status.childNodes:      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; if snode.nodeName == &#8216;id&#8217;:      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; n = int(snode.childNodes[0].nodeValue)      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; if n &gt; maxid:      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; maxid = n      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; elif snode.nodeName == &#8216;text&#8217; and snode.childNodes[0].nodeValue[0:2] != &#8216;RT&#8217; and snode.childNodes[0].nodeValue[0] != &#8216;@&#8217;:      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; messages.append(snode.childNodes[0].nodeValue.encode(&#8216;utf-8&#8242;))      <br />&#160;&#160;&#160; while len(messages) &gt; 0:      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; post_to_pingfm(messages.pop())      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; s = s + 1      <br />&#160;&#160;&#160; f = open(&#8216;last.txt&#8217;,'w&#8217;)      <br />&#160;&#160;&#160; f.write(str(maxid))      <br />&#160;&#160;&#160; f.close()      <br />if __name__ == &quot;__main__&quot;:      <br />&#160;&#160;&#160; main()      <br />&#160;</p>
</blockquote>
<p>ping.fm 到自定义网页 </p>
<p>可以查看这个网页&#160; <a href="http://www.williamlong.info/archives/1961.html">http://www.williamlong.info/archives/1961.html</a></p>
<p>修改那个microblog.php 添加你的火兔帐号密码，然后随便丢到一个支持php的网站去就好了 </p>
<p>在ping.fm cunstom url添加这个microblog.php 即可同步更新 </p>
<p>然后在火兔那边添加 新浪微波即可 </p>
<p>目前唯一比较麻烦的是豆瓣的我说 </p>
<p>我想把豆瓣的我说 广播也一并给同步了 </p>
<p>搞了一天的oauth 还不是很得法&#8230; </p>
<p>python俺那个认证header实在是不知道咋弄了.. </p>
<p>php版本的好像得自己的php服务器了因为还要装Zend Gdata，网上的php网站好像都不支持这玩意..</p>
<h3  class="related_post_title">相关博文</h3><ul class="related_post"><li>2009-04-06 -- <a href="http://jimey.com/2009/04/06/twitter-micro-blog-to-spread-to-other-steps-of-the-python-and-other.html" title="散布twitter到其他微博客的python脚步及其他">散布twitter到其他微博客的python脚步及其他</a> (2)</li><li>2009-12-18 -- <a href="http://jimey.com/2009/12/18/twitter-rss-reminder.html" title="twitter rss 提醒">twitter rss 提醒</a> (0)</li><li>2009-12-18 -- <a href="http://jimey.com/2009/12/18/feedburner-to-be-more-social.html" title="feedburner &#8211; To be more social">feedburner &#8211; To be more social</a> (0)</li><li>2009-04-02 -- <a href="http://jimey.com/2009/04/02/after-the-rice-has-reply-u0026gt-twitter-to-remind-the-script.html" title="饭否@回复后->Twitter提醒脚本">饭否@回复后->Twitter提醒脚本</a> (0)</li><li>2009-04-01 -- <a href="http://jimey.com/2009/04/01/twitter-protected-mode-to-open-the-message-authentication-twitter-messages-if-synchronization-rice.html" title="Twitter开启消息保护模式后认证Twitter消息同步饭否">Twitter开启消息保护模式后认证Twitter消息同步饭否</a> (0)</li><li>2009-03-27 -- <a href="http://jimey.com/2009/03/27/sync-twitter-to-rice-has.html" title="同步twitter到饭否">同步twitter到饭否</a> (0)</li><li>2009-03-16 -- <a href="http://jimey.com/2009/03/16/web-2-0-era-sfile-development-outlook.html" title="web 2.0时代的sfile发展展望">web 2.0时代的sfile发展展望</a> (0)</li><li>2010-05-05 -- <a href="http://jimey.com/2010/05/05/mocospace-architecture-3-billion-mobile-page-views-a-month.html" title="MocoSpace Architecture &#8211; 3 Billion Mobile Page Views a Month">MocoSpace Architecture &#8211; 3 Billion Mobile Page Views a Month</a> (0)</li><li>2010-04-22 -- <a href="http://jimey.com/2010/04/22/several-articles-on-twitter-hadoop-cassandra-pig-flockdbu002639s-slide.html" title="几篇关于twitter,hadoop,Cassandra,Pig,FlockDB的slide">几篇关于twitter,hadoop,Cassandra,Pig,FlockDB的slide</a> (0)</li><li>2010-04-03 -- <a href="http://jimey.com/2010/04/03/marketing-in-twitter.html" title="Marketing in Twitter">Marketing in Twitter</a> (0)</li><li>2010-04-01 -- <a href="http://jimey.com/2010/04/01/foolu002639s-day.html" title="愚人节">愚人节</a> (2)</li><li>2010-03-30 -- <a href="http://jimey.com/2010/03/30/the-garden-of-eden-subtitle-blog-station-uses-the-approach.html" title="伊甸园字幕博客站利用办法">伊甸园字幕博客站利用办法</a> (2)</li><li>2010-03-24 -- <a href="http://jimey.com/2010/03/24/twittersleepingtime.html" title="TwitterSleepingtime">TwitterSleepingtime</a> (0)</li><li>2009-12-26 -- <a href="http://jimey.com/2009/12/26/nateu002639s-twitter-business-model.html" title="NATE的twitter商业模式">NATE的twitter商业模式</a> (0)</li><li>2009-12-25 -- <a href="http://jimey.com/2009/12/25/twitter-search-result-u0026gt-language-filter.html" title="twitter search result -&gt; language filter">twitter search result -&gt; language filter</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://jimey.com/2009/10/31/to-continue-to-micro-blog-to-continue-to-sync-messages.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Feedsky Feed 插件插件会导致wp的预订任务执行失败</title>
		<link>http://jimey.com/2009/10/23/feedsky-feed-plug-in-plug-in-will-lead-to-failure-of-task-execution-wp-booking.html</link>
		<comments>http://jimey.com/2009/10/23/feedsky-feed-plug-in-plug-in-will-lead-to-failure-of-task-execution-wp-booking.html#comments</comments>
		<pubDate>Thu, 22 Oct 2009 17:37:30 +0000</pubDate>
		<dc:creator>jimey</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Feedsky]]></category>
		<category><![CDATA[Plug-in]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://jimey.com/2009/10/23/feedsky-feed-%e6%8f%92%e4%bb%b6%e6%8f%92%e4%bb%b6%e4%bc%9a%e5%af%bc%e8%87%b4wp%e7%9a%84%e9%a2%84%e8%ae%a2%e4%bb%bb%e5%8a%a1%e6%89%a7%e8%a1%8c%e5%a4%b1%e8%b4%a5.html</guid>
		<description><![CDATA[该插件导致 其他插件的自动更新失效  导致在线插件查找安装功能失效  导致数据库定期备份功能失效  导致lifestream定期抓feed的功能失效  总之该插件很强大。我不得不停用了... ]]></description>
			<content:encoded><![CDATA[<p>该插件导致 其他插件的自动更新失效</p>
<p>导致在线插件查找安装功能失效</p>
<p>导致数据库定期备份功能失效</p>
<p>导致lifestream定期抓feed的功能失效</p>
<p>总之该插件很强大。我不得不停用了…</p>
<h3  class="related_post_title">相关博文</h3><ul class="related_post"><li>2009-10-21 -- <a href="http://jimey.com/2009/10/21/wordpress-lifestream-plugin.html" title="WordPress Lifestream 插件">WordPress Lifestream 插件</a> (0)</li><li>2009-07-13 -- <a href="http://jimey.com/2009/07/13/south-korea-to-see-youkuu002639s-ssh-proxy-ip-address.html" title="韩国ip看youku之ssh代理解决">韩国ip看youku之ssh代理解决</a> (0)</li><li>2009-11-17 -- <a href="http://jimey.com/2009/11/17/ytet-upload-user-guide.html" title="ytet upload user guide">ytet upload user guide</a> (5)</li><li>2009-11-17 -- <a href="http://jimey.com/2009/11/17/caption-blog-station-and-the-garden-of-eden-garden-of-eden-drama-wikipedia-desks-set-up-the-united-states-shows.html" title="伊甸园字幕博客站和伊甸园美剧百科站成立说明">伊甸园字幕博客站和伊甸园美剧百科站成立说明</a> (2)</li><li>2009-03-26 -- <a href="http://jimey.com/2009/03/26/windows-environment-eclipse-debugging-environment-hadoop-remote-ubuntu.html" title="windows环境下eclipse调试远端ubuntu环境的hadoop">windows环境下eclipse调试远端ubuntu环境的hadoop</a> (12)</li><li>2009-03-26 -- <a href="http://jimey.com/2009/03/26/midnight.html" title="半夜">半夜</a> (0)</li><li>2009-03-25 -- <a href="http://jimey.com/2009/03/25/linux-server-clustered-hdfs-access-from-windows-eclipse-java-application.html" title="Linux server clustered HDFS: access from Windows eclipse Java application">Linux server clustered HDFS: access from Windows eclipse Java application</a> (0)</li><li>2009-03-25 -- <a href="http://jimey.com/2009/03/25/eclipse-based-application-development-environment-configuration-of-hadoop.html" title="基于Eclipse的Hadoop应用开发环境的配置">基于Eclipse的Hadoop应用开发环境的配置</a> (0)</li><li>2009-03-24 -- <a href="http://jimey.com/2009/03/24/wordpress-plugin.html" title="Wordpress插件">Wordpress插件</a> (0)</li><li>2009-03-16 -- <a href="http://jimey.com/2009/03/16/web-2-0-era-sfile-development-outlook.html" title="web 2.0时代的sfile发展展望">web 2.0时代的sfile发展展望</a> (0)</li><li>2008-12-30 -- <a href="http://jimey.com/2008/12/30/wordpress-changed-a-blog-hosting.html" title="WordPress换了个博客主机">WordPress换了个博客主机</a> (0)</li><li>2008-12-22 -- <a href="http://jimey.com/2008/12/22/picasau002639s-wordpress-plug-in-problem.html" title="Picasa的wordpress插件问题">Picasa的wordpress插件问题</a> (0)</li><li>2008-12-13 -- <a href="http://jimey.com/2008/12/13/sat-matter-of-non-decent.html" title="周六的不正经事">周六的不正经事</a> (0)</li><li>2008-09-30 -- <a href="http://jimey.com/2008/09/30/firefox-universal-uploader.html" title="Firefox Universal Uploader">Firefox Universal Uploader</a> (0)</li><li>2008-09-18 -- <a href="http://jimey.com/2008/09/18/windows-live-writer-vs-wordpress.html" title="Windows Live Writer vs. Wordpress">Windows Live Writer vs. Wordpress</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://jimey.com/2009/10/23/feedsky-feed-plug-in-plug-in-will-lead-to-failure-of-task-execution-wp-booking.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
