This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

News and Design : What to choose ?

Old posts that have not been replied to for several years.
Locked
User avatar
GodOfSuicide
Master
Posts: 463
Joined: Mon Jun 17, 2002 8:00 pm
Location: Austria

News and Design : What to choose ?

Post by GodOfSuicide »

I have nearly finished my newsticker system (which is now dynamicaly done over the botnet, all the parsing is done by a limbo bot), now i start to thing about different designs.

what would you prefer (or maybe suggest other versions)?
[mysite.com] some headline (http://mysite.com/something.php&news=xxx) (the current version)
<mysite.com> some headline - http://mysite.com/something.php&news=xxx
>>> mysite.com - someheadline >>> http://mysite.com/something.php&news=xxx
User avatar
caesar
Mint Rubber
Posts: 3776
Joined: Sun Oct 14, 2001 8:00 pm
Location: Mint Factory

Post by caesar »

The first one. :)
Once the game is over, the king and the pawn go back in the same box.
User avatar
Turambar
Halfop
Posts: 56
Joined: Thu May 29, 2003 6:25 am

Post by Turambar »

first one
draws more attention because of the bold an ()
all in all, looks nicer
User avatar
arcane
Master
Posts: 280
Joined: Thu Jan 30, 2003 9:18 am
Location: Germany
Contact:

Post by arcane »

first one
aVote page back online!
Check out the most popular voting script for eggdrop bots.

Join the metal tavern!
User avatar
GodOfSuicide
Master
Posts: 463
Joined: Mon Jun 17, 2002 8:00 pm
Location: Austria

Post by GodOfSuicide »

Turambar wrote:draws more attention because of the bold an ()
right now i have it running in test channels with different designs, with ~2-4 newslines each minute its really hard to pay attention to all of them
what about different design for each kind of ticker (e.g. coding, gaming, politics, news, tec, etc) ?
User avatar
caesar
Mint Rubber
Posts: 3776
Joined: Sun Oct 14, 2001 8:00 pm
Location: Mint Factory

Post by caesar »

[News Flash] Bla bla bla.. For more info. visit http://mysite.com/something.php&news=xx or whatever.. and the same *design* for all :)
Once the game is over, the king and the pawn go back in the same box.
User avatar
GodOfSuicide
Master
Posts: 463
Joined: Mon Jun 17, 2002 8:00 pm
Location: Austria

Post by GodOfSuicide »

i'm currently thinking of adding graphical stats via RRDTool, but it seams i'm just too stupid to learn the handling of this program
to add new entrys to the dbase isnt the problem since the timestamp is the in unixtime format, but to create a dbase, set the resolution and all this stuff is little over the top for me :/
User avatar
CrazyCat
Revered One
Posts: 1253
Joined: Sun Jan 13, 2002 8:00 pm
Location: France
Contact:

Post by CrazyCat »

Hey GodOfSuicide, I didn't receive your mail, but I'll try to help you here :)
If you have a look in my ircgraph.tcl, you may see:

Code: Select all

Rrd::create $newfile DS:userslocal:GAUGE:600:U:U DS:ircops:GAUGE:600:U:U DS:usersglobal:GAUGE:600:U:U DS:channels:GAUGE:600:U:U DS:invisibles:GAUGE:600:U:U DS:normals:GAUGE:600:U:U DS:totalservers:GAUGE:600:U:U RRA:AVERAGE:0.5:1:600 RRA:AVERAGE:0.5:6:700 RRA:AVERAGE:0.5:24:775 RRA:AVERAGE:0.5:288:797 RRA:MAX:0.5:1:600 RRA:MAX:0.5:6:700 RRA:MAX:0.5:24:775 RRA:MAX:0.5:288:797
This is the creation of a database with default values, so step is 300 seconds, and the 600 value in DS:name:GAUGE.... is the max delay between two updates.
If you want to have an update every minute, use the --step (or -s) value, this give you:

Code: Select all

Rrd::create $newfile -s 60 DS:userslocal:GAUGE:120:U:U DS:ircops:GAUGE:120:U:U DS:usersglobal:GAUGE:120:U:U DS:channels:GAUGE:120:U:U DS:invisibles:GAUGE:120:U:U DS:normals:GAUGE:120:U:U DS:totalservers:GAUGE:120:U:U RRA:AVERAGE:0.5:1:700 RRA:AVERAGE:0.5:6:700 RRA:AVERAGE:0.5:24:775 RRA:AVERAGE:0.5:288:797 RRA:MAX:0.5:1:600 RRA:MAX:0.5:6:700 RRA:MAX:0.5:24:775 RRA:MAX:0.5:288:797
This gives you a step of 1 minute (60 seconds:)) and the gauges can stay 2 minutes max without being updated.
Does this help you?
User avatar
GodOfSuicide
Master
Posts: 463
Joined: Mon Jun 17, 2002 8:00 pm
Location: Austria

Post by GodOfSuicide »

k, i'll try to work with that, thanks cc
User avatar
CrazyCat
Revered One
Posts: 1253
Joined: Sun Jan 13, 2002 8:00 pm
Location: France
Contact:

Post by CrazyCat »

good luck, if it doesn't work you never see me, never read me... never heard about me :))
Locked