In head part add the following code
Category: Uncategorized
MFA and Filter Adsense to Get high Ads
MFA = Made for Adsense sites.
They bid extremely low on adwords and their ads you get on your site pay low (like your 0.05).
Filtering some MFA sites can get better results for you.
Keywords CTR and Conversion
That is a loaded question with no fix answer.
There are so many other variables to take into account. My own initial target is a 5% CTR and go from there but revise it depending on circumstances. However, having managed many campaigns for others, there occasionally are things which you can’t explain.
Spam prevention robots
I have created a blog, and post some group content on it.
And After a week, I have received a mail and said the blog is spam.
It seems that there is a spam-prevention robots doing the detect work.
I really want to know how they judge the spam blog.
Following is some info:
Python POP mail parse
总体来说python处理邮件还是比较方便的,库提供了很多工具.下面我把心得写出来,给新手一个启迪,也请高手给些更好的方法.
先说接受邮件. poplib 方法.
1.poplib.POP3(‘这里填入你pop邮件服务器地址’) 登陆服务器.
2.poplib.user(‘用户名 ‘) poplib.pass_(‘密码’)
3.poplib.stat()方法返回一个元组:(邮件数,邮件尺寸)
mailCount,size=poplib.stat()
这样mailCount就是邮件的数量,size,就是所有邮件的大小.
Continue reading “Python POP mail parse”
python pop example
import poplib
import pprint
import email
import string
import re
import sys
import traceback
class GetMail():
def __init__(self,server,username,passwd):
self.servername = server
self.username = username
Continue reading “python pop example”
正则表达式 预搜索,不匹配;反向预搜索,不匹配
前面的章节中,我讲到了几个代表抽象意义的特殊符号:"^","$","\b"。它们都有一个共同点,那就是:它们本身不匹配任何字符,只是对 "字符串的两头" 或者 "字符之间的缝隙" 附加了一个条件。理解到这个概念以后,本节将继续介绍另外一种对 "两头" 或者 "缝隙" 附加条件的,更加灵活的表示方法。
扑克 与 历法 zz
还有点意思
许多人会利用扑克牌进行各种游戏娱乐活动,但懂得扑克经的人恐怕为数不多。扑克是历法的缩影。
五十四张牌中,有五十二张是正牌,表示一年有五十二个星期;两张是副牌,大王代表太阳,小王代表月亮;一年四季春、夏、秋、冬,用桃、心、梅、方来表示,其中红心、方块代表白昼,黑桃、梅花代表黑夜。
每一季是十三个星期,扑克中每一花色正好是十三张牌;每一季是九十一天,十三张牌的点数相加正好是九十一。四种花色的点数加起来,再加上小王的一点,是三百六十五。如果再加上大王的一点,那就正好是闰年的天数。
扑克中的 J、Q、K 共十二张牌,既表示一年有十二个月,又表示太阳在一年中经过的十二个星座。
Continue reading “扑克 与 历法 zz”
非贪婪匹配的效率 zz
可能有不少的人和我一样,有过这样的经历:当我们要匹配类似 "
" 或者 "[b]加粗[/b]" 这样的文本时,我们根据正向预搜索功能写出这样的表达式:"
" 或者 "
).)*"。
当发现非贪婪匹配之时,恍然大悟,同样功能的表达式可以写得如此简单:"
"。 顿时间如获至宝,凡是按边界匹配的地方,尽量使用简捷的非贪婪匹配 ".*?"。
Continue reading “非贪婪匹配的效率 zz”
匹配次数中的贪婪与非贪婪(zz)
在使用修饰匹配次数的特殊符号时,有几种表示方法可以使同一个表达式能够匹配不同的次数,比如:"{m,n}", "{m,}", "?", "*", "+",具体匹配的次数随被匹配的字符串而定。这种重复匹配不定次数的表达式在匹配过程中,总是尽可能多的匹配。