Oh My Gosh A week later Yes half…

Oh My Gosh

A week later [learning to ride a bike at Reach]

Yes half of this is sideways [learning to ride a bike at Reach]

Keira learning to ride a bike at Reach School

Yeah Yeah Yeah Yeah

Reach Yellow Stars

Autism v. Kitchen Sink

Jumped on the bed until she moved it across the room

Keira Spelling part 2

Keira Spelling part 1

Keira Learns To Skate – Christmas 2011

Keira’s new program REACH

Keira Playing with Riley part 2

Keira Playing with Riley part 1

Stacking Blocks

I like to move it move it

Treasures new favorite thing – playing babies

Treasure and the cow

Keira going up

Keira coming down

What is has no bearing on what…

“What-is has no bearing on what is coming unless you are continually regurgitating the story of what is. By thinking and speaking more of how you really want your life to be, you allow what you are currently living to be the jumping-off place for so much more. But if you speak predominantly of what-is, then you still jump off —but you jump off into more of the same.”
— Abraham

Riley’s homework What facts do you think voters…

Riley’s homework:
What facts do you think voters will want to know about Obama and Romney?
Write 2 questions. Explain why the answers might be important to voters.
Riley: Q: What is Obama’s favorite drink?
Why is it important: So we know what to serve with dinner if he comes over.
Q: What disease does Romney’s wife have?
Why is it important: So we don’t catch it. (as if it’s a cold lol )

Romney Looks like the Joker lol

Phplist Throttling http forums hostgator com phplist throttling…

Phplist Throttling
http://forums.hostgator.com/phplist-throttling-t3574.html
Phplist Throttling :: How To ::
Hello Folks,
I hope all of you must be aware of Hostgator’s Mail policy. The policy urges all you phplist/mailing lists users to throttle your mailing lists to keep them under the 500 emails/hour limit.
I am presenting specific instructions on how you can tweak PHPList available through fantastico to obey the limit while sending mails preventing legitimate domains like “yahoo.com” from being bouncing back as “unroutable domains”
Here we go :
1. Locate the config file for your phplist installation.
If you have installed the script on your domain with URL like http://www.domain.com/list/ then the physical path will be :
/home/username/public_html/list/config/config.php
In FTP you could see
/public_html/list/config/config.php
2. Download this file to your local PC.
3. Edit the file in a text editor like notepad or wordpad.
4. Locate the section called as “batch processing”.
5. Just below you will see some code like :
Code:

  1. define the amount of emails you want to send per period. If 0, batch processing
  2. is disabled

define(“MAILQUEUE_BATCH_SIZE”,0);

  1. define the length of one batch processing period, in seconds (3600 is an hour)

define(“MAILQUEUE_BATCH_PERIOD”,3600);
These are the default settings. We will be replacing those to keep the mails under 500/hour.
Here is the code I suggest :
Code:

  1. define the amount of emails you want to send per period. If 0, batch processing
  2. is disabled

define(“MAILQUEUE_BATCH_SIZE”,480);

  1. define the length of one batch processing period, in seconds (3600 is an hour)

define(“MAILQUEUE_BATCH_PERIOD”,3600);
These settings tell phplist to send 480 mails per hour. The remaining 20 emails per domain can be used for normal mailing operations if needed.
6. Save the file and ftp it back to its original location. Remember to take a backup of the original file just in case you mess up.
Now you should be able to send mails without any bounces and not overloading the mailserver.
Any additions to this article are always welcome 🙂