Skip navigation.

Carpe diem

Don't cry when the sun is gone, because the tears won't let you see the stars.

Posts tagged with "Opera"

New My Opera Community

Yey! :smile: The time has come, new OC website is up and running. It looks very nice to me. Very clean and simple navigation. Control panel (My Account) has been improved with some new options as well. New graphics is very nice indeed.

I haven't even explored everything yet, I'm just excited and just had to post this news here :smile:

Good job Opera Developers!, and they say there's even more to come, like new themes and stuff. That'd be great :smile:

btw here's one more reason not to like MySpace and similar "quazy" communities. Do yourself a favor, join My Opera Community :wink:

p.s. They are giving away free Opera t-shirts, don't forget to request one for ya, I hope I will get mine :smile:

Opera Community Count

Last night and today I played a little bit and came out with a simple script that fetches number of users in the Opera Community and stores it in a database. The script is automatically run every 24 hours, and it would be fun later on to play with these numbers (maybe auto-generate graphical charts and so on).

http://zoran.raskovic.biz/opera/report.php

Update: here is the code that fetches number of users

<?php

require_once 'db.php';

$vreme = mktime();

$url = 'http://my.opera.com/community/';

// Otvaramo remote URL za proveru i uzimamo njegov sadrzaj
$html = file_get_contents($url);

// parsovanje
@preg_match_all("/currently(.*)members/i", $html, $res);

foreach ($res[0] as $res) {
$a = explode(" ", $res);
$final = $a[1];
}

if (is_numeric(trim($final))) {

$q = mysql_query("INSERT INTO opera_count (datum, count) VALUES ('$vreme', '$final')", $dbh) or die(mysql_error()); 

}

?>

Opera header images

Well if you need some header images for your Opera weblog, look no furthere, dantesoft has got some nice ones:

http://my.opera.com/dantesoft/albums/show.dml?id=42237

Then you need to implement it into your CSS file.

btw if there are some other header images resources around here, lemme know :smile: