Deprecated: Function set_magic_quotes_runtime() is deprecated in /customers/stein-ivar.net/stein-ivar.net/httpd.www/textpattern/lib/txplib_db.php on line 14

Warning: Cannot modify header information - headers already sent by (output started at /customers/stein-ivar.net/stein-ivar.net/httpd.www/textpattern/lib/txplib_db.php:14) in /customers/stein-ivar.net/stein-ivar.net/httpd.www/textpattern/lib/txplib_misc.php on line 1625

Warning: Cannot modify header information - headers already sent by (output started at /customers/stein-ivar.net/stein-ivar.net/httpd.www/textpattern/lib/txplib_db.php:14) in /customers/stein-ivar.net/stein-ivar.net/httpd.www/textpattern/publish.php on line 477
stein-ivar.net — Random - hatin' php since 2002.

Home alone, rabbit-watching and enjoying the silence. · Jul 14, 16:33


So my little sister got these two rabbits, one reaaally big one with a bad leg and then this tiiiny little cute thing that really likes me. As I’m saving for my moving to Oslo I have no money to travel anywhere this summer and my entire family decided to go away this week, I have to babysit our cat and two rabbits.

The cat is no problem, as Its just give it food and the couch to sleep on. The rabbits on the other hand, are more of a job. Every “morning” (more like 12-14pm) I have to feed them and refresh their water thingies and maybe clean after them. My sister said I had to take them for walks and stuff… No way I’m taking this tiny thing around my neighbourhood on a strap…

I did bring the little one inside with me sometimes, tho I think she ate some of my candy stuff cause she got really energized and the next morning it looked like she have had diarea or something so I stopped doing that :P

And as everyones gone for this week and the fact that its not burning sun everyday its really quiet around the house now, and I can’t say I hate it. These past two weeks all my siblings have been here, my brother, my two half-brothers, my half-sister and their half-brother again. Its been nonstop outside my door and bedroom window (which is next to the garden right where everyone sits to get sun!). So its been pretty much non-stop, my smaller brothers hiding from work, my sister wanting help to fix something or do some level on some game. I actually made her play Kingdom Hearts, even though shes only 9 and can’t really speak english. I thought it might be a good learning experience :D

So right now I’m sitting inside enjoying the bad weather due to my pollen being a pain every single morning for the past 2-3 weeks and the silence of no grasscutting or other outside noise-making activities. I woke up around 1400 and still have to eat something.

Other things I’ve done this week.. Ah yes.. I’ve been watching a ton of movies :O

Movies:
WALL-E – (Awesome!)
Kung-fu Panda – (Awesome!)
Futurama Movie 2
Street Kings
Definately Maybe
The Children of Huang Shi

Documentaries:
War Made Easy
The True Story of Charlie Wilson
When We Left Earth – The NASA Missions 1
The Sovjet Story

Seems most documentaries are about wars nowadays :|

Now its time to eat! Bai-bee!


Permanent Link Comment [1]


Testing! · Jul 5, 03:03


Testing the code-tag using the last.fm plugin.

function lastfm($atts) { global $s, $c; extract(lAtts(array( ‘label’ => ‘’, ‘labeltag’ => ‘’, ‘break’ => ‘br’, ‘wraptag’ => ‘’, ‘parent’ => ‘’, ‘posted’ => ‘’, ‘section’ => $s, ‘sticky’ => ‘’, ‘user’ => ‘’, ),$atts)); function openURL($url, $headers = null){ if (function_exists(‘curl_init’)) { $ch = curl_init($url); curl_setopt($ch, CURLOPT_TIMEOUT, 30); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $data[‘html’] = curl_exec($ch); curl_close($ch); } elseif (ini_get(‘allow_url_fopen’) == 1) { $data[‘html’] = file_get_contents($url); } if($headers) {$data[‘headers’] = get_headers($url, 1); } return $data;
} $url = “http://ws.audioscrobbler.com/1.0/user/” . $user . “/recenttracks.xml”; $xml = openURL($url); $info = simplexml_load_string($xml[“html”]); // OUTPUT $out = array(); for($i=0;$i<5;$i++){ $fm = $info->track[$i]; $out[$i] = tag($fm->artist . ‘ – ‘ . $fm->name, ‘a’, ‘ href=”’ . $fm->url . ‘”’); } return doLabel($label, $labeltag).doWrap($out, $wraptag, $break, $class);
}


Permanent Link Comment