LinuxGem
此处为老的 LinuxGem,新版 LinuxGem 请移步 www.linuxgem.org

DIY 一个用于生成桌面墙纸的“网络相机”

galeki posted @ 2009年4月25日 03:52 in 编程技巧与工具 with tags python ImageMagick montage , 7036 阅读

Ben 写了一个 python 脚本——WebCam,区区百十行代码,实现了从网络或本地目录抓取多幅图片并随机拼合到一起,所生成的图片可以作为漂亮的桌面墙纸。这个脚本程序虽然不是非常智能,但是它可以作为一个 python 编程示例供初学者借鉴。您也可以尝试做一个 Lua 或 Ruby 版本

这个脚本的全部代码如下:

#! /usr/bin/env python
 
# Copyright 2009 by Benjamin Fogle
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
import sys
import os
import os.path
import urllib2
import tempfile
import math
 
# Constants.  Change these to customize the script
# In ksh: CONFIG_FILE=$HOME/lectures/examples/LEC-05/webcam_config
CONFIG_FILE=os.getenv('HOME') + '/.webcam_config'
TARGET=os.getenv('HOME') + '/Pictures/Wallpapers/webcam.jpg'
SCREEN_X = 1024
SCREEN_Y = 768
 
def GetTiles(num_images):
    """Returns a tuple (N,M) representing the tile grid"""
    # This algorithm could be much improved
    tile = math.ceil(math.sqrt(N))
    return (tile, tile)
 
def GetImageSize(N, M):
    """Returns a the max size of each image based on the screen size
    and the tile grid"
""
    global SCREEN_X
    global SCREEN_Y
    ImgX = SCREEN_X / N
    ImgY = SCREEN_Y / M
    return (ImgX, ImgY)
 
def CopyFile(src_fp, dest_fp):
    """Copy a file intelligently"""
    data = src_fp.read(49152)   # Copy 48k at a time
    while data:
        dest_fp.write(data)
        data = src_fp.read(49152)
    # Note: shutils.copyfileobj does this too.
 
if len(sys.argv) != 1:
    print "Usage: %s" % (sys.argv[0])
    print
    print "Config file is located in %s" % CONFIG_FILE
    sys.exit(1)
 
# Make sure the config file is readable and that it is a regular file
# There is a better way to do this that we will learn later.
if not os.access(CONFIG_FILE, os.R_OK) or not os.path.isfile(CONFIG_FILE):
    print "Error: %s could not be opened!" % CONFIG_FILE
    sys.exit(2)
 
urls = []           # Url to download from.  Read from config file
captions = []       # Captions for each image. Read from config file
filenames = []      # Temporary file names
 
config_fp = open(CONFIG_FILE, 'r')
line = config_fp.readline()
N=0
while line:
    params = line.split(":::")
    urls.append(params[0].strip())
    captions.append(params[1].strip())
    line = config_fp.readline()
    N+=1
config_fp.close()
 
 
# Download each url.  This is how to iterate over mutliple lists at once
for url, caption in zip(urls, captions):
    url_fp = urllib2.urlopen(url)
    # The following two lines are the preffered way to open a temporary
    # file.
    fd, name = tempfile.mkstemp()
    img_fp = os.fdopen(fd, 'w')
    filenames.append(name)
    CopyFile(url_fp, img_fp)
    url_fp.close()
    img_fp.close()  # The data won't appear in img_fp until it's closed
    # Use the ImageMagick suite from the shell to add a caption
    os.system("convert '%s' -set comment '%s' '%s'" % \
              (name, caption, name))
 
# Figure out the parameters
tilex, tiley = GetTiles(N)
imgx, imgy = GetImageSize(tilex, tiley)
 
# Use ImageMagick again to assemble the wallpaper
cmd = "montage -geometry %dx%d \
               -tile %dx%d \
               -set caption '%%c' \
               -pointsize 32 \
               -size %dx%d \
               -texture plasma: \
               +polaroid \
               -background black "
% (imgx, imgy, tilex, tiley,
                       SCREEN_X, SCREEN_Y)
 
# Add each image file to the command string
for filename in filenames:
    cmd += '"%s" ' % filename
 
# Add the output file to the command string and execute
cmd += TARGET
os.system(cmd)
 
# Cleanup
for filename in filenames:
    os.unlink(filename)     # In ksh:  rm $filename

要运行该脚本,需要您的系统中已经安装 imagemagick(一般 GNU/Linux 会默认为您安装该软件包)。

首先将上述代码复制到 webcam 文件并保存;然后,为该文件的添加可执行权限:

$ chmod  +x  webcam

在使用该脚本之前,需要将所要获取图片的地址信息写入 .webcam_config 文件,例如:

$ echo "file:///home/garfileo/Winter.jpg ::: 冬天" >> $HOME/.webcam_config
$ echo "http://www.51766.com/bbs/photo/1127887493353.jpg ::: 昌平∙白虎涧" >> $HOME/.webcam_config
$ echo "http://tw.mjjq.com/pic/20070530/20070530043314558.jpg ::: 赤水" >> $HOME/.webcam_config
$ echo "file:///home/garfileo/MY-Moutain.jpg ::: 明月山" >> $HOME/.webcam_config

然后,只需要执行 webcam 脚本,便可以在 $HOME/Pictures/Wallpapers 目录(若无该目录,请自行创建)中生成合成图片。上面向 .webcam_config 文件写入的四幅图地址,第一幅与第四幅图位于我的本地目录,而其它两幅均来自网络。每幅图片的地址后面均尾随 ":::" 符号,它是用来间隔图片地址与图片标签名的。这些图片的合成效果如下:

按照上述步骤正确操作,最终可以得到合成图片。不过,如果图片标签名是中文的话,那么最终的合成图中每幅小图的标签应该是一串问号或乱码。这是因为 webcam 脚本是通过调用 imagemagick 图片处理工具箱中的 montage 程序实现图片合成的,如果在图片中使用了中文标签名,那么需要设定中文字体方能在合成图中正确显示中文。要解决这个问题,需要在 webcam 脚本中找到以下代码段:

...... ......

# Use ImageMagick again to assemble the wallpaper

cmd = "montage -geometry %dx%d \
               -tile %dx%d \
               -set caption '%%c' \
               -pointsize 32 \
               ...... ......

然后在其中添加字体设置代码:

...... ......

# Use ImageMagick again to assemble the wallpaper
cmd = "montage -geometry %dx%d \
               -font /usr/share/fonts/winfonts/msyh.ttf \
               -tile %dx%d \
               -set caption '%%c' \
               -pointsize 32 \
               ...... ......

这样,这个问题便解决了。

Willing 说:
2009年5月01日 19:21

很喜欢这个网站,每次我要找主题都会来这里看一看,呵呵

daf3707 说:
2009年5月09日 21:25

不错

另外,论坛风格还是这样好

guowei 说:
2009年7月11日 21:11

报错:

Traceback (most recent call last):
File "./webcam", line 85, in <module>
url_fp = urllib2.urlopen(url)
File "/usr/lib/python2.6/urllib2.py", line 124, in urlopen
return _opener.open(url, data, timeout)
File "/usr/lib/python2.6/urllib2.py", line 383, in open
response = self._open(req, data)
File "/usr/lib/python2.6/urllib2.py", line 401, in _open
'_open', req)
File "/usr/lib/python2.6/urllib2.py", line 361, in _call_chain
result = func(*args)
File "/usr/lib/python2.6/urllib2.py", line 1226, in file_open
return self.open_local_file(req)
File "/usr/lib/python2.6/urllib2.py", line 1262, in open_local_file
raise URLError(msg)
urllib2.URLError: <urlopen error [Errno 2] No such file or directory: '/home/garfileo/Winter.jpg'>

LiYanrui 说:
2009年7月11日 22:39

@guowei: 对配置文件根据你的情况进行自适应修改

fdfd 说:
2021年3月12日 23:12

This is only the data I am discovering all around. A debt of gratitude is in order for your web journal, I simply subscribe your site. This is a pleasant web journal..  Buy 5 MeO DMT

amelia 说:
2021年3月14日 23:07

Good focuses you composed here..Great stuff...I think you've made some genuinely intriguing points.Keep up the great work.  wholesale home decor suppliers

amelia 说:
2021年3月18日 05:33

More often than not I don't make remarks on sites, yet I'd like to say this article truly constrained me to do as such. Truly pleasant post!  wholesale gold jewellery

amelia 说:
2021年3月18日 05:33

It turned out to be Very useful to me and I am certain to every one of the observers here!  wholesale boots

amelia 说:
2021年3月18日 05:33

I needed to thank you for this phenomenal read!! I unquestionably adored each and every piece of it. I have you bookmarked your site to look at the new stuff you post.  wholesale jewelry stores

amelia 说:
2021年3月18日 05:33

This was a truly extraordinary challenge and ideally I can go to the following one. It was alot of fun and I truly had a ball..  pallets of merchandise

chalsea 说:
2021年4月14日 21:24

Decent information picking up article. This post is truly the best on this significant point.  legit cannabis online

chalsea 说:
2021年4月18日 03:52

I've been surfing online over three hours today, yet I never discovered any fascinating article like yours. It's really sufficiently worth for me. As I would see it, if all website admins and bloggers made great substance as you did, the web will be significantly more helpful than any time in recent memory.  debt relief

ch 说:
2021年6月01日 18:33

Job Websites for 2020: The Top Ten Job search in USA

ch 说:
2021年6月01日 23:31

I havent any word to welcome this post.....Really i am awed from this post....the individual who make this post it was an awesome human..thanks for imparted this to us.  بخاخ زيت زيتون

ch 说:
2021年8月21日 19:17

Thank you again for all the knowledge you distribute,Good post. I was very interested in the article, it's quite inspiring I should admit. I like visiting you site since I always come across interesting articles like this one.Great Job, I greatly appreciate that.Do Keep sharing! Regards, cbd olejek

power tools 说:
2021年9月12日 16:57

Cool stuff you have got and you keep update all of us.

ch 说:
2022年1月01日 00:09

I respect this article for the all around looked into substance and magnificent wording. I got so included in this material that I couldn't quit perusing. I am awed with your work and expertise. Much thanks to you to such an extent. 토토

ch 说:
2022年1月06日 19:16

There are 91 Indigo jobs advertised on WhatJobs in January 2022. Apply online today and set up job alerts to get the latest jobs by email direct to your inbox. All indigo urgent care jobs in US

ch 说:
2022年1月14日 00:05

TESLA MODEL 3 RECALL OVER REAR CAMERA CONNECTION WhatNews

ch 说:
2022年1月21日 03:47

There are 36013 Travel nurse jobs advertised on WhatJobs in January 2022. Apply online today and set up job alerts to get the latest jobs by email direct to your inbox. Travel nurse jobs in US

ch 说:
2022年1月22日 00:29

Really great post. I just unearthed your online journal and needed to say that I have truly delighted in perusing your blog entries. Any way I'll be subscribing to your food and I trust you post again soon. Huge much obliged for the valuable data. Urf Kench

ch 说:
2022年1月22日 19:24

A debt of gratitude is in order for setting aside an ideal opportunity to examine this, I feel emphatically about it and affection adapting more on this theme. On the off chance that conceivable, as you pick up skill, would you psyche overhauling your online journal with more data? It is to a great degree supportive for me. How to get better ping in fortnite

ch 说:
2022年1月25日 04:15

A debt of gratitude is in order for posting this information. I simply need to tell you that I simply look at your site and I discover it exceptionally fascinating and educational. I can hardly wait to peruse bunches of your posts. https://www.5g999.co/slot

ch 说:
2022年1月26日 05:26

Extremely decent article, I delighted in perusing your post, exceptionally pleasant offer, I need to twit this to my devotees. Much obliged!. Wiliams Loans London Equity Release

ch 说:
2022年1月26日 05:27

A debt of gratitude is in order for your data, it was truly extremely helpfull.. FinanceHub Wandsworth Halifax

ch 说:
2022年1月26日 05:27

A debt of gratitude is in order for offering this quality data to us. I truly delighted in perusing. Will without a doubt going to impart this URL to my companions. Frequent Finance London Age Partnership

ch 说:
2022年1月30日 04:18

There are 407 Pepsico jobs advertised on What jobs in January 2022. Apply online today and set up job alerts to get the latest jobs by email direct to your inbox. Pepsico jobs

ch 说:
2022年2月05日 00:00

WORKERS AT PRIVATE COMPANIES HAVE SAVED MORE THAN $400 MILLION IN STATE-RUN RETIREMENT PROGRAMS California jobs

ch 说:
2022年2月14日 03:49

I high appreciate this post. It’s hard to find the good from the bad sometimes, but I think you’ve nailed it! would you mind updating your blog with more information? http://bl88bet.me

ch 说:
2022年2月14日 03:49

Excellent article. Very interesting to read. I resally love to read such a nice article. Thanks! keep rocking. www.betflik28.com

ch 说:
2022年2月16日 20:51

There are 2425 Ups jobs advertised on WhatJobs in February 2022. Apply online today and set up job alerts to get the latest jobs by email direct to your inbox. Ups jobs in US

ch 说:
2022年2月26日 03:36

There are 43 Ingilizce jobs advertised on What jobs in February 2022. Apply online today and set up job alerts to get the latest jobs by email direct to your inbox. Job search for Türkiye

ch 说:
2022年3月05日 00:39

There are 609 Club jobs advertised on WhatJobs in March 2022. Apply online today and set up job alerts to get the latest jobs by email direct to your inbox. WhatJobs

ch 说:
2022年3月08日 23:18

hi!! Extremely fascinating examination happy that I went over such educational post. Keep doing awesome. Happy to be a piece of your net group. betflik 24th

seoo 说:
2022年3月16日 05:19

This is such a great resource that you are providing and you give it away for free. I love seeing blog that understand the value of providing a quality resource for free. fbdown

SEO 说:
2022年3月21日 04:24

Great survey, I'm sure you're getting a great response. Hillary Clinton on Russia's invasion

ch 说:
2022年3月25日 02:06

The site is looking piece garish and it gets the guests eyes. Outline is really straightforward and a decent easy to use interface. https://totalsportsapparel.com/

ch 说:
2022年4月07日 21:25

I truly welcome the sort of points you post here. A debt of gratitude is in order for sharing us an incredible data that is really useful. Great day! visit this site

ch 说:
2022年4月09日 22:59

I haven't any word to value this post.....Really i am awed from this post....the individual who make this post it was an extraordinary human..thanks for imparted this to us. houston patches

ch 说:
2022年4月09日 23:22

I felt exceptionally upbeat while perusing this site. This was truly exceptionally enlightening site for me. I truly loved it. This was truly a sincere post. You rock!. get code

amelia 说:
2022年4月13日 01:31

This is only the data I am discovering all over the place. A debt of gratitude is in order for your website, I simply subscribe your online journal. This is a decent blog.. 5g999.co

amelia 说:
2022年4月15日 03:04

Quality Links Is The Most Important Part Of SEO , And To Do That MY Service Is Standing Right Next To You Shoulder To Shoulder, So You Can Achieve Your Goal More Easily. We Work Hard For Your Success. dofollow

amelia 说:
2022年6月14日 18:28

Hey, I discover perusing this article a delight. It is greatly useful and intriguing and all that much anticipating perusing a greater amount of your work.. where to buy gbl

amelia 说:
2022年7月03日 01:32

Hi there! Nice stuff, do keep me posted when you post again something like this! corporate office email

forex market 说:
2023年8月16日 14:07

Hey there I am so excited I found your site, I really found you by accident, while I was browsing on Bing for something else, Regardless I am here now and would just like to say thank you for a incredible post and a all round entertaining blog (I also love the theme/design), I don’t have time to go through it all at the minute but I have saved it and also included your RSS feeds, so when I have time I will be back to read more, Please do keep up the excellent work. curtain floral design

kashif 说:
2023年8月16日 19:15

I have been browsing on-line greater than three hours lately, yet I by no means found any attention-grabbing article like yours. It is beautiful worth enough for me. Personally, if all website owners and bloggers made just right content as you probably did, the web will be much more helpful than ever before. openai

haider 说:
2023年8月19日 18:57

Many individuals were enthusiastic sportsmen or enjoyed music and dancing. You may recall that you were most joyful on the performing track. Nonetheless, with increasing obligations you might have found no time to have pleasure in any of an interests. Do you suffer from depression and would like to get free from its abysmal depths without lifelong antidepresants? You could attempt and help yourself to overcome depression by natural means. cci 500 primers for sale

forex market 说:
2023年8月20日 20:18

By making use of this support, you possibly can successfully make your web site significantly more interactive and social. The support of Blog site comments is hottest service that provide again hyperlinks on your own weblog. The support features two chief plans that include prompt site visitors likewise as a lot of back links. You also ought to consider treatment on the good quality which is certainly more chosen than amount in the time of submitting responses. UFABETแทงบอลบนมือถือ

haider 说:
2023年8月21日 14:47

F*ckin’ remarkable things here. I am very glad to see your post. Thanks a lot and i’m looking forward to contact you. Will you kindly drop me a e-mail? แทงใบเหลืองใบแดงUFABET

forex market 说:
2023年8月21日 21:23

I’d have to talk to you here. Which is not some thing It’s my job to do! I love reading a post that should make people feel. Also, many thanks allowing me to comment! UFABETแทงบอลทายผลผู้ชนะ

haider 说:
2023年8月22日 21:30

Excellent read, I just passed this onto a colleague who was doing a little study on that. And he actually bought me lunch because I found it for him smile So let me rephrase that: Thanks for lunch! https://www.outlookindia.com/outlook-spotlight/liv-pure-reviews-what-they-ll-never-tell-you-does-livpure-really-work--news-311512

haider 说:
2023年8月23日 19:32

A powerful share, I just given this onto a colleague who was doing somewhat evaluation on this. And he in actual fact purchased me breakfast because I found it for him.. smile. So let me reword that: Thnx for the deal with! But yeah Thnkx for spending the time to discuss this, I feel strongly about it and love reading extra on this topic. If possible, as you turn into expertise, would you thoughts updating your weblog with extra particulars? It’s highly helpful for me. Big thumb up for this weblog put up! เว็บพนันบอลออนไลน์อันดับ1

forex market 说:
2023年8月23日 20:05

I like what you guys are up too. Such clever work and reporting! Keep up the superb works guys I have incorporated you guys to my blogroll. I think it’ll improve the value of my web site . 안전놀이터

forex market 说:
2023年8月24日 15:51

It’s difficult to acquire knowledgeable folks within this topic, however you be understood as there’s more you are discussing! Thanks UFABET เว็บพนันแตกง่าย

haider 说:
2023年8月24日 16:22

Hello there! Do you know should they help make any plugins to aid with Search engine optimization? I’m hoping to get my website to rate for a few focused keywords but I’m not really viewing very good gains. If you know of the please share. Be thankful! เว็บบอลออนไลน์UFA

haider 说:
2023年8月25日 00:04

Youre so cool! I dont suppose Ive read anything like this prior to. So nice to seek out somebody with original applying for grants this subject. realy thank you for starting this up. this amazing site are some things that is needed on-line, a person with some originality. useful purpose of bringing a new challenge on the world wide web! สมัครแทงบอลฟรี

forex market 说:
2023年8月25日 00:36

You created some decent points there. I looked over the internet for your problem and found most individuals should go coupled with with your internet site. เว็บไซต์แทงบอลอันดับ1

forex market 说:
2023年8月25日 22:49

Hello! I would choose to offer a massive thumbs up for your excellent information you may have here about this post. I will be returning to your website for more soon. เว็บพนันออนไลน์UFA

haider 说:
2023年8月27日 15:33

Just processing some free time on Stumbleupon and I found your entry. Not typically what I like to read about, but it was unquestionably valuable my time. Thanks. 메이저사이트

haider 说:
2023年8月30日 14:58

Thanks for the points you have provided here. Yet another thing I would like to say is that personal computer memory demands generally rise along with other advances in the technologies. For instance, whenever new generations of cpus are introduced to the market, there is usually a corresponding increase in the size calls for of both the computer system memory plus hard drive room. This is because software program operated simply by these processor chips will inevitably boost in power to benefit from the new know-how. 메이저사이트

haider 说:
2023年9月02日 22:23

These is apparently just like definitely great. Most of these modest items are designed through the use of variety of base consciousness. I love these significantly. ЕРП365

haider 说:
2023年9月03日 17:01

There is noticeably a lot of money to learn about this. I suppose you’ve made certain nice points in functions also. 토토사이트

forex market 说:
2023年9月04日 23:23

An impressive share, I simply with all this onto a colleague who had previously been performing a small analysis within this. And hubby actually bought me breakfast since I found it for him.. smile. So let me reword that: Thnx for the treat! But yeah Thnkx for spending the time to debate this, I’m strongly about it and adore reading more on this topic. If it is possible, as you become expertise, does one mind updating your blog site with increased details? It is actually highly helpful for me. Huge thumb up because of this short article! salingsilang

haider 说:
2023年9月05日 00:38

Thank you for sharing excellent information. Your website is very cool. I am impressed by the info that you?ve on this website. It reveals how nicely you understand this subject. Bookmarked this web page, will come back for more articles. jasa Social media marketing surabaya

haider 说:
2023年9月06日 21:05

Locate which will article writing is not actually valued at the time period, you might recognise that discovering them free of charge is really a lot a great deal more an individual’s idea! Precisely why craft content articles together with throw away your time and energy when you are able become terrific content absolutely free! A lot of people discover utilizing just a dash of effort paid out diving the web page and looking at what’s going on they is able to leave and reveal a whole lot of function done with the particular means available. djarumtoto slot

sdsds 说:
2023年9月08日 20:33

Quite a beautiful website. I built mine and i was looking for some design ideas and your website gave me some. Did you develop the website alone? hawaiian camo

haider 说:
2023年9月08日 20:44

Hello! I would like to provide a enormous thumbs up for your fantastic information you’ve got here about this post. I will be coming back to your website to get more detailed soon. filmyzilla

haider 说:
2023年9月11日 16:30

Solar Dark Side of the Sun is Solar’s answer to the fans who wanted to hear his earlier work, before Guru and Solar 7Grand records Classic catalog! Which scared many Gang Starr fans that Solar’s stellar production would eclipse dj premier and rival Gang Starr classics! As evidence Jazzmatazz vol 4 was the first Jazzmatazz album to attract Gang Starr fans as well as Hip Hop jazz and R&B fans to Solar Production and Guru’s reinvented Jazzmatazz series. #Gurugangstarr

haider 说:
2023年9月12日 19:53

I must say, as a lot as I enjoyed reading what you had to say, I couldnt help but lose interest after a while. Its as if you had a good grasp to the subject matter, but you forgot to include your readers. Perhaps you should think about this from far more than one angle. Or maybe you shouldnt generalise so considerably. Its better if you think about what others may have to say instead of just heading for a gut reaction to the subject. Think about adjusting your own thought process and giving others who may read this the benefit of the doubt. wooden hanger for pants

haider 说:
2023年9月13日 14:19

You really make it seem so easy with your presentation but I find this topic to be really something that I think I would never understand. It seems too complex and extremely broad for me. I’m looking forward for your next post, I’ll try to get the hang of it! canister whipped cream

haider 说:
2023年9月13日 23:00

Conexion hot new Latin Hip Hop single from Nieto. Produced y Super Producer DJ Solar. Hot track that plugs the gap in Underground Hip Hop and Latin Hip Hop! Mexican Hip Hop

haider 说:
2023年9月14日 19:45

Wow! Thank you! I always wanted to write on my website something like that. Can I take a fragment of your post to my site? สล็อต

haider 说:
2023年9月19日 22:06

Possessing read this I thought it had been quite beneficial. I value you taking time and work to put this article together. I when once again locate myself paying method to significantly time both reading and commenting. But so what, it was nonetheless worth it! Cutie Penguin Crocs Clog, Pretty Penguin Crocs

haider 说:
2023年9月19日 22:48

This is a great standpoint, nonetheless is just not create every sence in any way talking about which mather. Every technique thanks as well as i had endeavor to discuss your own place straight into delicius but it looks like it’s a dilemma using your information sites are you able to you need to recheck the item. many thanks once more. Penguin Cutie Pretty Crocs Clog

haider 说:
2023年9月21日 23:39

Thanks for sharing, it is a great inspirational thread to will motivate many people to work on new things. 신림셔츠룸

haider 说:
2023年9月23日 14:17

Hello there, I discovered your site by way of Google whilst searching for a related topic, your website came up, it seems to be good. I’ve bookmarked it in my google bookmarks. roof cleaning bournemouth

shafi 说:
2023年9月23日 23:44

Hi, Neat post. There is a problem with your site in internet explorer, would test this… IE still is the market leader and a huge portion of people will miss your magnificent writing because of this problem. shillong teer common number

jmaes 说:
2023年9月27日 19:12

And with most origin films, this one spent considerable time in establishing the ground rules for discovery of powers, the relationships between characters, all primed for action sequences in between long drawn narratives building up toward that inevitable big bang conclusion which contained everything but the kitchen sink. ข่าวบอลล่าสุด

jmaes 说:
2023年9月27日 23:36

Pretty nice post. I just stumbled upon your weblog and wanted to say that I’ve truly enjoyed surfing around your blog posts. In any case I’ll be subscribing to your rss feed and I hope you write again soon. ข่าวฟุตบอลต่างประเทศวันนี้

jmaes 说:
2023年9月28日 20:52

I’m interested in using some of your material for my website. Please let me know if that’s OK and I will link back to this page. ดู บอล สด พาก ไทย

dirt bike rental dub 说:
2023年10月01日 14:25

I would like to say that this blog really convinced me to do it! Thanks, very good post.

buggy ride dubai 说:
2023年10月01日 14:42

I recently came across your blog and have been reading along. I thought I would leave my first comment. I don't know what to say except that I have enjoyed reading. Nice blog. I will keep visiting this blog very often.

hot air balloon duba 说:
2023年10月01日 14:53

Positive site, where did u come up with the information on this posting? I'm pleased I discovered it though, ill be checking back soon to find out what additional posts you include.

jmaes 说:
2023年10月02日 21:56

And with most origin films, this one spent considerable time in establishing the ground rules for discovery of powers, the relationships between characters, all primed for action sequences in between long drawn narratives building up toward that inevitable big bang conclusion which contained everything but the kitchen sink. Kalaastar Yo Yo Honey Singh song

james 说:
2023年10月06日 14:39

Still, I would have appreciated one scene showing how his limitless knowledge afforded him relationship-handling tact. shrek crocs

ds 说:
2023年10月06日 18:42

Rapid each of our internet site probably will without doubt come to be reputed using the majority of functioning a new web site people, for the thoughtful content pieces as well as assessment content. شركة تنظيف الخزانات بالمدينة المنورة

ds 说:
2023年10月08日 15:08

I am typically in order to running a blog and that i actually appreciate your content. The actual article has actually peaks my personal interest. I am going to save your web site and gaze after checking for brand spanking new data. recover private key

ds 说:
2023年10月10日 20:03

Aw, this became an exceptionally nice post. In idea I must put in writing in this way additionally – taking time and actual effort to make a very good article… but what can I say… I procrastinate alot and also by no means appear to go done. 강남아이스

ds 说:
2023年10月12日 16:24

Several communities possess singles groups which set about enjoyable breast implants aventura things to do mutually, and this also can be is a good choice courting approach. Situations for instance riding a bike, bowling, curling, video hours, dance in addition to humor golf equipment will be arranged from the singles group, also it enables the evenly-distributed number of people to obtain a great in addition to informal night. With focus applied the actual task per se as an alternative to building a intimate relationship, it will require a great deal of pressure off the singles and sites take place a lot more obviously around such a location. Roof Cleaning Southampton

ds 说:
2023年10月13日 23:33

Hi! I ran across your site accidentally today, but am really pleased that people did! Its not only entertaining, but additionally straightforward to make use of compared with lots that Ive viewed! transparent training bra

car towing service d 说:
2023年10月16日 15:22

I’ve been searching for some decent stuff on the subject and haven't had any luck up until this point, You just got a new biggest fan!..

car recovery near me 说:
2023年10月16日 15:30

This is very educational content and written well for a change. It's nice to see that some people still understand how to write a quality post.!

ds 说:
2023年10月18日 20:24

Oopsmight have spoken too soon. Young teams dont know how to play late in games, especially playoff games. Total self-destruction. Can they now learn to win? Go Cs. billsellsbold

ds 说:
2023年10月19日 00:39

I like your website.. great shades & motif. Performed people design and style this fabulous website yourself or even have people rely on someone else to make it work for you personally? Plz interact when I!|m looking to pattern by myself blog site plus would want to find out wherever u received this particular through. thank you jclbio

ds 说:
2023年10月20日 23:11

Pretty nice post. I just stumbled upon your weblog and wanted to say that I’ve truly enjoyed surfing around your blog posts. In any case I’ll be subscribing to your rss feed and I hope you write again soon. แทงบอลเงินสด

ds 说:
2023年10月24日 23:18

For this reason it's best that you need to suitable analysis just before creating. You'll be able to produce far better submit as a result. CANADA VISA FOR CZECH CITIZENS

ds 说:
2023年10月28日 16:25 This specific genuinely perhaps a great offered i the truth is genuinely liked perusing. It's not at all actually standard i add the option to assess a unique issue. สิงโตมีกี่สายพันธุ์
ds 说:
2023年10月28日 17:42

This unique appears to be certainly superb. These types of really small truth is created utilizing wide selection associated with skills know-how. We prefer the concept a great deal. อเมริโกเวสปุสซี่

как выучить английск 说:
2023年10月28日 18:26

I felt very happy while reading this site. This was really very informative site for me. I really liked it.

ds 说:
2023年10月28日 20:50

I adore all the strings, My partner and i savored, I'd personally love far more details using this, for the reason that it really is really pleasurable., Enjoy it designed for offering. อเมริโกเวสปุสซี่

james 说:
2023年10月31日 14:30

That's why its more practical that you may appropriate study previous to developing. You'll be able to post more significant posting like this. 1xbet промокод 2024

james 说:
2023年11月02日 00:25

For this reason it's best that you need to suitable analysis just before creating. You'll be able to produce far better submit as a result. Business Visa FOR US

james 说:
2023年11月02日 15:11

For this reason it's best that you need to suitable analysis just before creating. You'll be able to produce far better submit as a result. Indian Visa for Medical Visit

james 说:
2023年11月03日 19:00

This sort of appears completely greatest. Each one of these small info tend to be produced as well as plenty of background info. I favor which a great deal. 온라인카지노사이트

james 说:
2023年11月03日 23:06

I rather encourage you to learn about the flexibility of forms, fields and widgets and how it’s used in the automatic Admin interface. https://sky888.win/

wahab 说:
2023年11月07日 17:44

Promptly your blog might it goes without saying typically possibly be visible related to each one of blog site people today, mainly because aware studies and as well lab tests. พนันออนไลน์ เว็บไหนดี

james 说:
2023年11月07日 19:58

I’ve recently started a site, the information you offer on this website has helped me greatly. Thanks for all of your time & work. digitalglobaltimes.com

wahab 说:
2023年11月08日 20:13

Due to this it is advisable that you have to relevant analysis previous to building. You may upload more practical upload by doing this. 45.611.892 inova simples (i.s.) sao paulo

sdr 说:
2023年11月08日 20:45

This is the reason online marketing specials efforts so you can effective analyze earlier than post. Put simply to write down more beneficial destination of this nature. เว็บพนันที่ดีที่สุด

sdr 说:
2023年11月09日 15:58

That's why a good idea is that you must correlated go through earlier than establishing. You can easily print significantly better put in with this. chase credit card application status

WonderWrks 说:
2023年11月09日 18:20

I have been exploring for a little bit for any high quality articles or blog posts in this sort of house . Exploring in Yahoo I at last stumbled upon this website. Reading this info So i am satisfied to show that I’ve a very just right uncanny feeling I found out exactly what I needed. I such a lot for sure will make sure to don’t disregard this site and provides it a look on a constant. nhà cái hb88

sdr 说:
2023年11月11日 01:19

Many people look at you have got to exact footwork prior to writing. Can be conceivable to help you alot more pleasing article like this. walmart gift card balance check

Letonya vatandaÅŸlar 说:
2023年11月14日 16:43

I wanted to thank you for this excellent read!! I definitely loved every little bit of it. I have you bookmarked your site to check out the new stuff you post.

marble polishing in 说:
2023年11月16日 22:15

Superior post, keep up with this exceptional work. It's nice to know that this topic is being also covered on this web site so cheers for taking the time to discuss this! Thanks again and again! bhutan teer result

Letonya vatandaÅŸlar 说:
2023年11月17日 04:18

I wanted to thank you for this excellent read!! I definitely loved every little bit of it. I have you bookmarked your site to check out the new stuff you post.

marble polishing in 说:
2023年11月20日 19:20

It all is wholly right. All of little components were definitely generated thru countless checklist learning. I enjoy your application tons. roof cleaning in dundee

marble polishing in 说:
2023年11月21日 20:24

This article was written by a real thinking writer without a doubt. I agree many of the with the solid points made by the writer. I’ll be back day in and day for further new updates. william larue weller

marble polishing in 说:
2023年11月25日 17:02

In this great pattern of things you actually secure a B+ with regard to hard work. Where exactly you lost me was first in your specifics. You know, people say, details make or break the argument.. And that couldn’t be much more true right here. Having said that, let me reveal to you precisely what did give good results. Your writing is actually highly powerful and that is probably the reason why I am taking the effort in order to comment. I do not really make it a regular habit of doing that. Second, even though I can see a leaps in reasoning you come up with, I am not necessarily confident of exactly how you seem to unite the points which produce the actual final result. For now I will, no doubt subscribe to your issue but hope in the near future you connect the dots better. lingerie stores

marble polishing in 说:
2023年11月27日 23:52

This appears undeniably remarkable. All of these very small facts are constructed choosing large selection about qualifying measures know-how. Document gift a good deal quite a lot. digital media agency karachi

marble polishing in 说:
2023年11月28日 16:58

I do think, an attempt and even gaffe in their life it isn’t just not doing anything a good deal more glorious daily life, coupled with suggestive. https://bitlungcase.com/op-lung-cao-cap-iphone-11-pro-space

marble polishing in 说:
2023年11月29日 21:48

Body of water get on your site though making use of detect merely merely a certain amount of part submits. Comforting technique for not to distant future, We are book-marking right now get variations accomplish occurs out. https://nhalen.com

marble polishing in 说:
2023年11月30日 21:28

This can be also a fairly beneficial writing that any of us absolutely beloved considering. Possibly not on a daily basis which often experience the likelihood to get a solution. Jun-88

sd 说:
2023年12月20日 22:45

这是一个令人印象深刻的分享,我最近把这个分享给了一位正在对此进行一些分析的同事。 事实上,丈夫给我买了早餐,因为我为他找到了早餐……微笑。 所以我想改写一下:感谢您的款待! 但是,是的,感谢您花时间谈论这个问题,我非常关心这个问题,并且喜欢阅读这个主题。 如果可能的话,随着您专业知识的增长,人们是否介意更新您的网站以了解详细信息? 这确实对我有很大的帮助。 因为这篇文章而竖起大拇指! 骰寶


登录 *


loading captcha image...
(输入验证码)
or Ctrl+Enter