View Full Version : WANTED: RNZ Newsboy
DiscoStu
22-06-2002, 05:03 PM
Well as you may have noticed, RNZ has been quite busy recently and have been neglecting our daily news updates.
So we're looking for someone who:
1. Can speak & spell correctly (that immediately cuts out a few ;))
2. Is into the scene and can spot the interesting stuff (we get most stuff sent in, and spot the rest ourselves)
3. Can commit to daily updates.
When I say committed, we really don't want people that will be keen for a month and then give up.
Some basic HTML knowledge would also be a plus - opening links in new windows, basic formatting etc.
Your chance to get your name in lights.
If you're interested chuck an email my way discostu@radiativenz.com stating who you are, why your mum loves you and your bust size.
DiscoStu
22-06-2002, 05:06 PM
btw - the final decision on the appropriate applicant rests with the RNZ board of directors ;)
Control_Phreak
22-06-2002, 05:24 PM
will this person be getting any free hardware? :D
Grrr!!
22-06-2002, 06:23 PM
Originally posted by Control_Phreak
will this person be getting any free hardware? :D
Don't PM him with the answer. I want to know too :D
Sydog
22-06-2002, 06:27 PM
I wouldn't think so man, he is looking for a Newsboy and not a reviewer.
DiscoStu
22-06-2002, 09:02 PM
Originally posted by Sydog
I wouldn't think so man, he is looking for a Newsboy and not a reviewer.
Which is correct.
And we don't really want people just after free stuff anyway :p
RockBoy
22-06-2002, 10:51 PM
* gets out big stick........
and im one of the directors so you gotta get past me first OK ;)
RB
Geek4Life
22-06-2002, 11:22 PM
hmmm tempting
What's the pay like? :) :D :rolleyes: :eek: :confused:
SilverPriest
23-06-2002, 12:32 AM
Nothing.
One would be doing it out of the goodness of ones own heart, and ones caring for the hardware community as a whole.
Sydog
23-06-2002, 09:10 AM
You guyz could run a php automated news script, even say from a vbulletin backend.
link it to a subforum in RadiativeNZ forum here and only give select people the rights to post topics there. That way people could still comment but it wouldn't show up on the main page.
here is an example of what I am talking about:
http://www.gta3.com - the site
http://www.gta3forums.com/ib/ikonboard.cgi?s=3d14e76c31c0ffff;act=SF;f=28 - the forum
Okay, I'm here. :)
Well actually, I'm thinking of something even better. I wanted to get an automated news script which fetch news from other sites.. Instead of manually posting them.
But yeah, that's a good idea sydog.. But the problem is, we still need to post them up.. Hehe :D
Enzy
Sydog
23-06-2002, 10:37 AM
thought I'd share this with you, found it at another forum. It's what they use to fetch news from there forum.
<?
$forumpath = "http://www.dirgotronix.net/forum";
require "/var/www/forum/admin/config.php";
$forumid = "25";
// $getnumposts = "10";
if ($getnumposts == "") { $getnumposts = "10"; }
mysql_connect($servername,$dbusername,$dbpassword) or die("Unable to connect to database");
mysql_select_db("$dbname") or die("Unable to access the News");
$sqlquery = "SELECT * FROM thread WHERE forumid = $forumid ORDER by dateline DESC LIMIT 0,$getnumposts";
$result = mysql_query($sqlquery);
$number = mysql_num_rows($result);
$i = 0;
if ($number < 1) { print "<CENTER>There is no news to display.</CENTER>"; }
else {
while ($number > $i) {
$posttitle = mysql_result($result,$i,"title");
$forumthreadid = mysql_result($result,$i,"threadid");
$postusername = mysql_result($result,$i,"postusername");
$time = mysql_result($result,$i,"dateline");
$time3 = date("m/d/Y - H:i",$time);
$numcheck = mysql_result($result,$i,"replycount");
$numie = ($numcheck);
$commentslink = "[ <a target=_blank href=$forumpath/showthread.php?threadid=$forumthreadid>Comments</a>: ( $numie ) ]";
$postpostidget = mysql_query("SELECT postid FROM post where threadid = $forumthreadid order by dateline limit 0,1");
$postpostid = mysql_result($postpostidget,"postid");
$useridget = mysql_query("SELECT userid FROM post where threadid = $forumthreadid order by dateline limit 0,1");
$postuserid = mysql_result($useridget,"userid");
//colors and such
$pagebgcolor = "#737bb7";
$tablewidth = "100%";
$tablebordercolor = "#9096BD";
$postbackcolor = "#6971AD";
$posteditedby = " ";
$postavatar = "<img src=$forumpath/avatar.php?userid=$postuserid>";
$postattachment = "";
//user
$userget = mysql_query("SELECT signature,email,homepage,username,usertitle,joinda te,posts FROM user where userid = $postuserid order by userid limit 0,1");
$userarray = mysql_fetch_row($userget);
//$postsignature = $userarray[0];
$postemail = $userarray[1];
$postuseremail = "<a href=mailto:$postemail><img src=$forumpath/images/email.gif border=0></a>";
$posthomepagedata = $userarray[2];
$posthomepage = "<a href=$posthomepagedata><img src=$forumpath/images/home.gif border=0></a>";
$postusername = $userarray[3];
$postusertitle = $userarray[4];
$postjoindate1 = $userarray[5];
$postjoindate = date("m/d/Y",$postjoindate1);
$postposts = $userarray[6];
//post
$postget = mysql_query("SELECT iconid,pagetext FROM post where threadid = $forumthreadid order by dateline limit 0,1");
$postarray = mysql_fetch_row($postget);
$posticon = $postarray[0];
$postmessage = $postarray[1];
//location
$postfield2get = mysql_query("SELECT field2 FROM userfield where userid = $postuserid order by userid limit 0,1");
$postfield2 = mysql_result($postfield2get,"field2");
//replace image and url links
$tmpstory = preg_replace("/()(.*)()/U","<a href=\2>\2</a>", $postmessage);
$tmp2story = preg_replace("/()(.*)()/U","<img src=\2>", $tmpstory);
$br = '<BR>';$p='<P>'; $chr = "\n";
$postmessage = ereg_replace($br."[ \t\n$br]*".$br, "\n$p", ereg_replace("[$chr]", "\n$br", $tmp2story));
$forumnewspost = ereg_replace($br."[ \t\n$br]*".$br, "\n$p", ereg_replace("[$chr]", "\n$br", $tmp2story));
if ($posticon != "0") { $posticon = "<img src=$forumpath/images/icons/icon$posticon.gif height=16 width=16>"; }
else { $posticon = "<img src=$forumpath/images/space.gif height=16 width=16>"; }
/*print "
\n\n\n
<! <table bgcolor=\"$pagebgcolor\" width=\"$tablewidth\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\"><tr><td width=\"2\"><img width=\"2\" height=\"1\" src=\"$forumpath/ images/space.gif\" alt=\"\"></td><td width=\"100%\"><! spacer >
<table width=\"99%\" bordercolor=\"$tablebordercolor\" border=\"1\" cellspacing=\"0\" cellpadding=\"1\" align=center>
<tr>
<td width=\"175\" valign=\"top\" nowrap rowspan=\"2\" cellpadding=4>
<font size=2><b>$postusername</b></font><br>
<font size=1>$postusertitle</font><br>
$postavatar<br>
<br>
<font size=1>Registered: $postjoindate<br>
Location: $postfield2<br>
Posts: $postposts<br>
$commentslink<br>
<br>$time3</font></td>
<td width=\"100%\" height=\"16\" valign=\"middle\" cellpadding=0><font size=1><a name=\"$postpostid\"></a>$posticon $posttitle</font></td>
</tr>
<tr>
<td width=\"100%\" height=160 valign=\"top\" colspan=\"2\" cellpadding=4>
<p><font size=2>$postmessage</font></p>
$postattachment
<p>$postsignature</p>
<p>$posteditedby</p>
</td>
</tr>
<tr>
<td colspan=\"3\" valign=\"middle\" height=\"16\" nowrap><font size=1></font>
<table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">
<tr>
<td align=\"left\" valign=\"middle\"><font size=1>
$postuseremail $posthomepage <a href=\"$forumpath/search.php?&action=finduser&userid=$postuserid\"><img src=\"$forumpath/images/ find.gif\" border=\"0\" alt=\"Find more posts by $postusername\"></a>
$posticqicon $postaimicon $postyahooicon <a href=\"$forumpath/member2.php?action=addlist&userlist=buddy&userid=$postuserid\"><img src=\"$forumpath/ images/buddy.gif\" border=\"0\" alt=\"Add $postusername to your buddy list\"></a>
</font></td>
<td align=\"right\" nowrap>
<a href=\"$forumpath/editpost.php?action=editpost&postid=$postpostid\"><img src=\"$forumpath/images/edit.gif\" border=\"0\" alt=\"Edit/ Delete Message\"></a>
</td>
<td align=\"right\" valign=\"middle\" nowrap></td>
</tr></table></td></tr></table>
<img width=\"10\" height=\"3\" src=\"$forumpath/images/space.gif\" alt=\"\"><br>
<!
</td><td width=\"2\"><img width=\"2\" height=\"1\" src=\"$forumpath/images/space.gif\" alt=\"\"></td></tr></table> >
";
*/
print "
\n\n\n
<table width=\"100%\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" bordercolor=\"#113377\"><tr>
<td align=\"left\" valign=\"top\" width=\"20%\">
<a href=\"$forumpath/member.php?s=&action=getinfo&userid=$postuserid\" target=\"_blank\">$postusername</a></td>
<td align=\"center\" valign=\"top\"width=\"60%\">
<i>$posttitle</i></td>
<td align=\"right\" valign=\"top\"width=\"20%\">$time3</td>
</tr><tr><td colspan=\"3\">$postmessage<br><div align=\"right\">$commentslink</div></td></tr></table><br>
";
$i++;
}
}
?>
mird-OC
23-06-2002, 12:19 PM
hmmm... news thieving is bad... mmk?
i mean it's okay to do it so you can easily go through and look for the good stories manually... but if they're all just gonna get posted automatically that's umm, not good, not good at all.
Mashed_Penguin
23-06-2002, 01:25 PM
Blatant heft of code is bad... sydog you naughty boy.
mird.. not really. :)
I'm not really copying or stealing news.. I guess I misclarified..
There are some sites offering such service.. Hmm, help might be a better word. ;)
They have a backend script with the latest news and to be used in most sites..
Check out shacknews.com for example.
Enzy
DiscoStu
23-06-2002, 01:37 PM
No we don't want automated scripts. That will just create a whole lot more problems.
But we'll have this discussion in private :P
Sydog
23-06-2002, 02:09 PM
Originally posted by Mashed_Penguin
Blatant heft of code is bad... sydog you naughty boy.
I don't think it is possible to steal code, the site had the code publicly available.
Back to the topic people. ;)
vBulletin® v3.6.4, Copyright ©2000-2012, Jelsoft Enterprises Ltd.