22
2008.6
得到吉祥如意数字,查下表对之。
附表:《八十一数吉凶佩带琥珀守护神八卦吉祥笔画划表》
一 划:大展鸿图,信用得固,名利双收,可获成功。(吉)
二 划:根基不固,摇摇欲坠,一盛一衰,劳而无获。(凶)
15
2008.6
14
2008.6
广东的台商,最近流传著一个骇人听闻的进补潮流(婴儿)汤。花三四千元人民币,就吃到一盅用六七个月大的(婴儿)炖成的补汤,台商则形容是壮*阳胜品。在东莞开工厂的王姓台商,自诩是(婴儿)汤的常客,几个月大的婴儿,加入巴戟、党参、当归、杞子、姜片,加入鸡肉排骨,炖八小时,很能补气、养血。他一边紧搂身旁十九岁的湖南二(奶),一边洋洋自得的说:以我六十二岁的年纪,每晚都可来一回(做*爱),还不是靠这个。眼见记者满脸狐疑,他自告奋勇,带记者见识见识
10
2008.6
You have to admit, most free 3rd party Blogger templates that you download are a mess. You open up the xml file and it’s a long and ugly-looking beast of code spaghetti. If you’re like me, you prefer a nice and neat template (even though you’ll be the only one seeing it) and you’ll want to tidy it up.
Most of the code you don’t want to tinker with but the .css code (the part that styles your entire blog with images and colors) is where some people like to change font colors, sizes, or even just space it out properly so it’s important that it’s not only neatly organized, but also properly aligned.
More importantly, did you know the more lines of code your template has, the longer it takes to load in a browser? So your 1,500 lines of code in your newest Blogger template could really be much shorter in size, thus speeding up page load times for your visitors. The slower your site, the more likely a visitor will be deterred and not wait for it to load up.
So here’s a neat trick to optimize your template. I’ve started doing it with some of the newer templates now being hosted on eBlog Templates. You’ll want to do what’s called “commpress your css” into a much smaller format. There’s a site I use called CSSDrive that offers a free web-based CSS Compressor. All you do is select a few basic options like compression mode and comments handling and then paste in your css. The css is the code between the <b:skin> and </b:skin> tags.
Make sure you backup your template code before doing this! Some people might not like how the css looks after it’s compressed so it’s best to have a backup. You also might make a mistake and copy the wrong sections which could screw up your template code. Bottom-line, backup your template before doing this.

After you click on the “Compress-it!” button it will go through your .css code and shrinks it down. Essentially it removes unnecessary white spaces and better organizes each css element into one line. Here are the results for one of the Blogger templates I compressed.

My xml Blogger template was originally 1,286 lines of code and after the css compression was done, it dropped it down to 914. Now that’s not a huge difference (14%) and you probably won’t notice a difference when you load up your blog with the new code, but every little bit helps. Also, some template code might be messier than others so the size decrease could potentially be a lot more.
I also just ran the normal compression mode and wanted to keep my comments so if you go with the super compact mode and strip out all comments, you can compress it even further.
This tool can be used for WordPress blogs or any other websites actually. Most of the Blogger templates I come across are the ones in need of a code clean up, however. So if you’re ready to give CSS Compression a shot, check out CSS Drive’s free tool and compress away!
10
2008.6
Several years ago, building MFA (Made For AdSense) niche websites was a popular way for online Marketeers to quickly make a buck. The sole purpose of building dozens of MFA niche websites (usually only a few pages deep) was to cash in by driving people from search engines to their site and hoping they click on their advertising programs such as Google AdSense.
That news is old and no longer effective and the number of MFA sites out there was and still is ridiculous. I sadly have to admit I was one of those who tried to make a few MFA sites and hope to cash in on the gold rush. I made a few bucks but it wasn’t long before the well was dried up and I was off looking for my next make money online opportunity.
Well folks, there’s a little known secret out there that’s actually quite powerful for making money online. It’s 100% legitimate and it’s called eBay affiliate marketing. Yeah, I know when you hear “eBay” and “money” in the same sentence you probably think of becoming an eBay seller.
You place product listings in the eBay marketplace, buyers bid, you pay your eBay seller fees and what you have left is your profit margin. There is, however, another way to build a business which still revolves around eBay but which doesn’t involve you selling a single thing in the eBay marketplace.
eBay Affiliate Selling 
10
2008.6
This is a pretty popular Blogger hack that lots of people have asked me about. Instead of answering to each email individually, I thought it would make more sense to write an article about it.
With this hack, you can choose to display a select amount of text from the beginning of each post as a teaser instead of showing the entire post on the front page of your blog. Then when people want to read the rest of the post, they can click a “read more” link to see the full post. This is very handy if you have lots of long articles all on one page. (Note that you’ll need to have post pages enabled in order to make this feature work.)
Step #1 - Update Your Template Code
First you need to edit your existing code so I recommend copying and pasting it into notepad or any text editor. Also, it’s smart at this point to create a backup of your template just in case something goes wrong. Now do a search (CTRL + F) within the text editor for the following code post-header-line-1. This is the default code that Blogger includes but some custom templates remove or change this code so you might have trouble finding it. If you can’t locate this text then try searching for <data:post.body/> instead. Your template will for sure have this since it’s the tag that actually prints the body of your post.
Now depending on which code you were able to find will determine how easy the next steps will be. You might need to do some detective work first in order to get this working properly in your custom template. The idea is to get this new code into your template before the <data:post.body/> tag. Keep reading and hopefully the explanation will illustrate the concept clear enough so you are able to adapt this hack to your custom template.
Add the following code below the <div class=’post-header-line-1′/> and <div class=’post-header-line’> tags if you’ve got both.
<b:if cond='data:blog.pageType == "item"'>
<style>.fullpost{display:inline;}</style>
<p><data:post.body/></p>
<b:else/>
<style>.fullpost{display:none;}</style>
The result should look something like this:

If you don’t have the default <div class='post-header-line-1'/> tag then your result should look something like this instead. This is how it would be done in the MushBlue Blogger custom template:

Notice in both examples that the code in yellow and the <data:post.body/> tags are the same — it’s just tag above it that will differ based on the template you’re using.
Now let’s add one more bit of code which will actually create the “read more” link in your post. This code will go below the <data:post.body/> tag so copy the following and paste it in. Feel free to change the “Read more…” text to whatever you want the link to look like. Be careful not to delete any other code during this process.
<b:if cond='data:blog.pageType != "item"'><br />
<a expr:href='data:post.url'>Read more...</a>
</b:if>
</b:if>
Yes, there are supposed to be two </b:if> tags in the above code so don’t think it’ s a mistake. The result should look like this:

This code will be the same no matter what template you are using. Just make sure it goes below the <data:post.body/> as shown in the image above.
Now let’s look at what the final result should be. Here’s the updated code block you just worked on all put together:

Ok, you’re all done editing the template code. Paste it back into your Blogger html window and save it. If you get an error, you made a mistake. The most common mistake is to accidentally delete a > or < while pasting in the new code. If it saved successfully, it’s time to move onto the next step and modify a quick Blogger format setting.
Step #2 - Add a Class Tag in Your Default Post Template
For this step, you need to navigate in your Blogger account to “Settings” => “Formatting” and scroll all the way down to the bottom. It’s the last option called “Post Template”. You’re going to paste in the following code:
<span class="fullpost">
</span>
You’ll want to keep the spaces in there which will make sense later. After you save this, it will look like this:

Step #3 - Create a New Post
Ok, we’ve got everything all setup so it’s time to go and test it out. Hopefully you’ve got a new post in mind for your blog. If not, then we’ll just create a test post which you can later delete. When you click on the “Posting” tab, you’ll notice that the post text area is now pre-populated with the <span class=”fullpost”> and </span> tags. If not, then you didn’t save it properly so go back and re-read step #2.
So when writing your new post, anything you put above the <span class=”fullpost”> tag will be the teaser text. The main body of your post needs to go in between the <span class=”fullpost”> and </span> tags in order for the “read more…” link to work properly. See the screenshot below. Sometimes pictures illustrate better than words.

Now publish or preview your post to see the “read more” hack working on your blog. If it doesn’t show up for some reason, go back and run through the steps again. Most likely you pasted the code blocks in the wrong places. It’s difficult to troubleshoot these issues since each template can be unique so please make sure to double-check your template before asking for help in the comments section below.
Here’s the live post with the “read more…” link properly working based on the text I used above in the post text area.

Additional Info
If you want to go back and update your old posts with this new “read more…” feature you can. Just go back and edit each post manually. Essentially you’ll need to paste in the <span class=”fullpost”> and </span> tags breaking apart the post into two parts.
For some posts, you might not want to use this feature at all. If that’s the case, just delete the <span class=”fullpost”> and </span> tags from within your new post text area. Then your new post will show up entirely just like it used to before you implemented this hack. Enjoy!
9
2008.6
在FeedBurner推出自己的邮件订阅的功能以前,它的Email Subscriptions服务是由第三方网站FeedBlitz提供,其实力可见一斑。
FeedBlitz的主要功能是 - 为网站或Blog添加邮件订阅功能,将RSS Feeds转为邮件形式,向用户提供邮件更新。
邮件订阅的好处:
- 无需专门的阅读器,节省系统资源
- 定时“备份”Blog,方便日后使用
- 跳过G.F.W 干扰,直接收看国外的Feeds
- 与 E-MAIL 结合,统一作业(Gmail)
- 操作简单,适合初等计算机水平的用户
FeedBlitz的强大功能:
- 允许设置多个邮件订阅Feed, 管理多个网站
- 可设置E-MAIL发送频率
- 可给给Feed加密码(适合团队内部成员使用)
- 可高度自由的定制订阅图标,包括颜色、字体、布局甚至LOGO
- 可随意更改原始feed地址而无需重新通知已订阅用户
- 可显示邮件订阅量及其订阅人E-MAIL
- 可中途暂停Feed更新直到你准备好 - 暂停期间用户仍可订阅
9
2008.6

You have to choose a Html Template
2.

Copy the code (Ctrl A: Select All, Ctrl C: Copy)
3.

Go to your Blogger Control Panel - Edit HTML
4.

Revert to Classic Template (You can return whenever you want).
5.

Paste the code into the Template area (Ctrl A: Select All, Ctrl V: Paste)
6.

All done!




