This is the easiest way to schedule tweets to Twitter. If you want to seriously start building traffic to your web site then regular tweets are essential.
First, make sure you have curl installed. cURL is often already present in Linux distros but Windows users will need to locate and install it.
The command is very simple which can be placed in a shell script (Linux) or a batch file (Windows). This can then be scheduled as you wish - I suggest you don’t over do it, the same message every minute will not be posted as it will be identical to your previous one and Twitter will reject it. Keep repeated messages a few minutes apart.
Right, down to the nitty gritty.
The username:password is fairly obvious - just replace it with your own Twitter account login details.
The text following -d status= is your tweet message (I included my blog url).
See below
Sponsored Links
Now, this produces output to the screen and is helpful when you want to know that the command has worked and what it did. However, this is no good if you want to automate the command. Screen output will cause an error in scheduled running of scripts and applications. Fortunately there is a way around this.
I shall show you how to do this in Linux as I currently don’t know the equivalent in Windows (it may be the same in Windows but don’t count on it).
It’s happened. Well almost.
Supersonic performance.
The race to petaflop supercomputers is heating up, with the latest entry coming from NASA, Intel and SGI. The trio announced plans to build what will be a petaflop-capable supercomputer by next year, and up to 10 petaflops (define) by 2012.
Supercomputers have been in a constant game of oneupsmanship and bragging rights. The definitive list of the fastest supercomputers, called Top500, is released twice a year, and for the last few years, IBM (NYSE: IBM) has dominated with its Blue Gene/L supercomputer at the Lawrence Livermore Laboratories.
With each update to the list, the number of teraflops (define) goes up because no matter how much processing power you give these machines, there’s still more demand for them. These massive systems aren’t just doing one job at a time. They are rented out to other agencies or researchers who have a massive computing task they need done. See below
Sponsored Links
At any given time, a supercomputer likely has hundreds of computational tasks running on it. So there are never enough teraflops to go around. A teraflop is a trillion operations per second. As of last November, Blue Gene/L topped out at 600 teraflops and ran at a sustained rate of 478 teraflops. By contrast, a Core 2 Duo E6700 processor performs around 12-13 gigaflops, or billions of operations per second.
Some times it is very useful to boot from a Linux installation CD or DVD in order to use tools straight from the CD/DVD. You are not necessarily looking to install Linux but simply to make use of its low level software tools.
There are a number of ways to do this but I shall list just two as they are the most familiar to me. 1) Using the first CD or DVD from RedHat/Fedora/CentOS media :-
Set your BIOS to boot from your CD-ROM drive
When the boot process reaches the boot> prompt, enter “linux rescue” and hit return, this will provide you with a number of boot options, choose the most basic as we don’t need any networking functionality.
This will load linux into memory and provide access to the programs held on the CD/DVD.
The following command will allow you to wipe the beginning of your hard drive thus removing key information about anything held on the drive. See below
Sponsored Links
dd if=/dev/zero of=/dev/sda bs=512 count=50000
or
dd if=/dev/zero of=/dev/hda bs=512 count=50000
depending on whether you have a SATA drive or an IDE drive respectively.
2) Boot from a Puppy Linux CD, start a terminal window then follow the same dd commands described above.
Upon begining an operating system installation it will appear that the hard drive is brand new and completely blank.
This is the best way to achieve a clean and uncluttered install of any Windows operating system.
If you have a badly corrupted Windows operating system then first of all you will want to blank the hard drive first. This can be easily achieved by booting from a Linux boot disk then using the “dd” command to write directly to the hard drive. I shall cover the Linux boot in another post. Place your Windows install CD into the CD-ROM drive and restart the computer. As the BIOS starts, hit DEL or F2 or whatever your BIOS requires to enter the setup and set it to boot from the CD-ROM drive first, followed by the hard drive you wish to install Windows on. Save your settings and restart the computer. This should now begin the Windows installation procedure. See below
Sponsored Links
Choosing a partition size is completely at your discretion, personally if I am only installing Windows on the computer then I choose the whole of the hard drive. From XP onward only a quick format is required.
The vital thing is that you have or obtain any required drivers for your hardware. This is not always provided if you have an “off the shelf” computer. The main thing is that Windows recognises your network interface. If you have this working then you can get back on the internet and download those missing drivers. I shall cover this matter in another post.
Keeping known email abusers out is always desired. Postfix has a parameter which is specified in the main.cf file that allows you to refer to these lists.
The script I use is as follows…
This is a list that was not properly administered. A friend of mine tried to email me who uses the mac.com domain and was being rejected as an abuser which, of course, is rediculous.
I keep the entry as a future reference. There are others out there so if you know of them please let me know.
So you have your linux server up and running. A lot of time and effort went into this so lets get it backed up. You don’t need to invest in any fancy backup system. A bit of shell script and some use of crontab will do the trick.
Here are the two scripts I use…
Email backup
Create an executable file e.g. mailserver_backup.sh containing the following
Very often it is necessary to test that your SMTP server is working.
The easiest way to do this is with the telnet command.
This lets you talk directly to the email server in its own SMTP protocol script language.
Here’s how…
telnetserver name or IP address25HELO aaaa
mail from: <tom@fromdomain.com>rcpt to: <fred@todomain.com>dataEnter your message text.quit
Along the way you should see feedback from the server to each command entered See below
Sponsored Links
e.g.
Trying 127.0.0.1...
Connected to localhost.localdomain (127.0.0.1).
Escape character is '^]'.
220 mailserver.local ESMTP Exim 4.43 Tue, 12 May 2009 10:31:00 +0100
helo aaaa
250 mailserver.local Hello mailserver.local [127.0.0.1]
mail from: <tom@fromdomain.com>
250 OK
rcpt to: <fred@todomain.com>
250 Accepted
data
354 Enter message, ending with "." on a line by itself
A message for myself.
.
250 OK id=1M3oKj-0006Sn-9u
quit
221 mailserver.local closing connection
Connection closed by foreign host.
This is an SMTP server like the one your ISP provides. It is targeted at Windows users and sells as a faster and more flexible alternative.
I don’t like to be negative about the efforts of others but, I do find it diffucult to see what advantage this server application gives you over the already available SMTP component that Windows XP gives you. If you are looking for improved email delivery times then Windows can do this already. PostCast Server does provide a greater level of control and reporting but if you already send large quantities of email messages then you will already have a form of recording your activity.
It suggestes that you don’t have to be on line to be able to queue-up your messages. Well the vast majority of systems keep messages ready to re-send when an SMTP server is not available.
Perhaps I’m just being a party pooper but it just seems a bit pointless to me.
Why don’t you try adding the Windows SMTP server component and try it out?
Control Panel - Add or Remove Programs - Add/Remove Windows Components - Internet Information Services (IIS), Click Details, select SMTP Service, OK, Next, Finish.
Tweak your email client to use “localhost” and away you go.
Link Market - Free Link Exchange, Link Swap and Link Trade Directory Have you ever tried to exchange links, swap links, or trade links? Was it hard? Use link market instead; - it is easy to use, free and very smart. It will save you hours of work.
Xmatrix Software Xmatrix software publishes award-winning software, including x dupfile. And we have a xmatrix online business index that is growing.
Pocket Pc Software And Games At Rifcomobile.com Games and software for pocket pc. Pda oriented articles and tips.
MillionEzHits will blow you away. Just see how you can easily get a million site hits. You have to try it.
Lucrative Visit lucrative investing. Free investment picks, services, resources, and news for the average investor to help level the playing field. We help make every investment a lucrative one. ***webmasters we are a "do" follow blog. ***
Make Money Free - Make Money Online Learn about all the ways to make money online free and how to avoid online money making scams. Also learn how to build, market, an earn with a website.
Promotional Items The super store for promotional items and promotional products. Over 950 000 custom promotional products and business promotional items for trade show giveaways, corporate gifts, school promotions and business advertising.