From and at axxs.org Mon Apr 4 05:37:41 2005 From: and at axxs.org (and) Date: Mon, 4 Apr 2005 11:07:41 +0530 Subject: [Imc-melbourne-geeks] urgent: trolling Message-ID: <3d5b99c1fc3f102fba72c918027e52b0@axxs.org> Hi, we are getting majorly spammed out on the newswire. All have been hidden for the present moment. I think with the new upgrade the cookie that stopped people posting more than once every 3 mins was not re-installed. Also because we are not logging IPs we can't block them. Is it possible to get ips logged every hour and then automatically deleted? Can someone re-install the cookie? And. From and at axxs.org Mon Apr 4 10:41:49 2005 From: and at axxs.org (and) Date: Mon, 4 Apr 2005 16:11:49 +0530 Subject: [Imc-melbourne-geeks] Re: urgent: trolling In-Reply-To: <4250D50E.8070801@energybulletin.net> References: <3d5b99c1fc3f102fba72c918027e52b0@axxs.org> <4250D50E.8070801@energybulletin.net> Message-ID: <7d13ca1d2a856386697ffa27ba6ba906@axxs.org> Can you send the cookie code so pabs can have a look at it? i am just watching the wire for the moment until something more permanent gets set up. and. On 04/04/2005, at 11:17 AM, Adam F wrote: > and, > > i'm looking at old cookie code now. luckily was still on nomasters > server. but i can't remeber how it worked - looks like it didn't in > the code I'm looking at. I'm at work so can't do too much. will try > to check out tonight if cant figure it now. > have attached old publish page and spam_class which has some clues. > > maybe the solution to the ip logging is that we only keep 5 IPs at a > time or something like that so every time one is added one is deleted. > that way no cronjob nasty. > > this code in spam_class.inc might do it (untested and there might be a > neater way to use fopen with r+ or something. > > > |function log_ip($article){ > $ip_log_name=SF_CACHE_PATH."/ip_log.txt"; > $user_ip=trim($_SERVER['REMOTE_ADDR']); > $forwarded_ip=trim($_SERVER['HTTP_X_FORWARDED_FOR']); > $id=$article->article['id']; > $parent_id=$article->article['parent_id']; > $title=$article->article['heading']; > $author=$article->article['author']; > $time=$article->article['date_entered']; > $browser=trim($_SERVER['HTTP_USER_AGENT']); > $spamf = fopen($ip_log_name, "r"); > $buffer=''; > for($i=1;$i<5;$i++)) { > if (!feof($handle)) { > $buffer .= fgets($handle, 4096); > } > } > $buffer.= "\n$time\t$author\t$title\t\t$id\t$parent_id\t > $user_ip($forwarded_ip)\t$browser\n"; fclose($spamf); > $spamf=fopen($ip_log_name,"w"); > fwrite($spamf, $buffer); > fclose($spamf); } > | > adam > > > > and wrote: > >> Hi, >> we are getting majorly spammed out on the newswire. All have been >> hidden for the present moment. I think with the new upgrade the >> cookie that stopped people posting more than once every 3 mins was >> not re-installed. Also because we are not logging IPs we can't block >> them. Is it possible to get ips logged every hour and then >> automatically deleted? Can someone re-install the cookie? >> And. >> > > > include_once("shared/global.cfg"); > > class Spam > { > > function Spam () > { > // Nothing > } > > function Detect () // Return 1 for a Spam Block > { > > $ret = 0; > > > $lines = file(SF_CACHE_PATH."/next_ip_to_block.txt" ,"r"); > > $user_ip=trim($_SERVER['REMOTE_ADDR']); > $fwd_ip=trim($_SERVER['HTTP_X_FORWARDED_FOR']); > for ( $i=0 ; $i < count($lines) ; $i++) > { > $saved_ip = trim($lines[$i]); > > //echo strpos( "a".$user_ip,$saved_ip); > > if ( strlen( trim($saved_ip) ) > 0 ) > { > if (strpos("a".$user_ip,$saved_ip)==1) > { > $ret= 1; > $logline = $_SERVER['REMOTE_ADDR']."|".date("m-d-y > g: > ia")."|".$_SERVER['HTTP_USER_AGENT']."|".$_SERVER['HTTP_REFERER']."|".$ > _SERVER['REQUEST_URI']."\n"; > > $this->Log($logline); > > } > } > > } > > // SOFT-BLOCK CODE - this discourages obsessive trolls by making it > harder for them to post, but not impossible > > $lines = file(SF_CACHE_PATH."/next_ip_to_soft_block.txt" ,"r"); > > $browser=trim($_SERVER['HTTP_USER_AGENT']); > > for ( $i=0 ; $i < count($lines) ; $i++) > { > list($saved_ip,$saved_browser) = split('\|',trim($lines[$i])); > //echo $saved_browser; > > if ( strlen( trim($saved_ip) ) > 0 ) > { > if (strpos("a".$user_ip,$saved_ip)==1 || > strpos("a".$fwd_ip,$saved_ip)==1) > { > if (( strlen(trim($saved_browser)) == 0 ) || > (strlen(trim($saved_browser)) > 0 && > strpos("a".$browser,$saved_browser) > 0)) { > if (rand(0,3) > 0) { > $logline = $_SERVER['REMOTE_ADDR']."|".date("m-d-y > g: > ia")."|".$_SERVER['HTTP_USER_AGENT']."|".$_SERVER['HTTP_REFERER']."|".$ > _SERVER['REQUEST_URI']." (softblock!)\n"; > $this->Log($logline); > sleep(rand(25,45)); > } > > } > } > } > } > > return $ret; > } > > function DetectMultiple () // Return 1 for a Recent Posting Spam Block > { > if (!empty($_SESSION['lastposttime'])) { > if (time() - $_SESSION['lastposttime'] > TIMETOPOST) { > $ret = false; > $_SESSION['lastposttime'] = time(); > } else $ret = true; > > } else { > $ret = false; > $_SESSION['lastposttime'] = time(); > } > return $ret; > } > > > > function Add ($ip) { > // comming soon for admin interface > > } > > function Remove ($ip) { > // comming soon for admin interface > > } > > function Log ($text) { > > $log = fopen(SF_CACHE_PATH."/ipblock.log","a"); > fwrite($log,$text); > fclose($log); > > } > > function log_ip($article){ > $ip_log_name=SF_CACHE_PATH."/ip_log.txt"; > > $user_ip=trim($_SERVER['REMOTE_ADDR']); > $forwarded_ip=trim($_SERVER['HTTP_X_FORWARDED_FOR']); > $id=$article->article['id']; > $parent_id=$article->article['parent_id']; > $title=$article->article['heading']; > $author=$article->article['author']; > $time=$article->article['date_entered']; > $browser=trim($_SERVER['HTTP_USER_AGENT']); > > $spamf = fopen($ip_log_name, "r"); > $buffer=''; > for($i=1;$i<5;$i++)) { > if (!feof($handle)) { > $buffer .= fgets($handle, 4096); > } > } > $buffer.= "\n$time\t$author\t$title\t\t$id\t$parent_id\t > $user_ip($forwarded_ip)\t$browser\n"; > fclose($spamf); > $spamf=fopen($ip_log_name,"w"); > fwrite($spamf, $buffer); > fclose($spamf); > } > > } > > // Class for publish page > > class publish extends Page > { > > function publish() > { > // Class constructor, does nothing > return 1; > } > > function execute() > { > > if (empty($_POST['prepublish']) && empty($_POST['publish'])&& > empty($_POST['action']) && empty($_GET['crosspost'])) { > echo "Sorry, you seem to have followed an old link. To publish href=\"/prepublish.php\">click here"; > sf_include_file(SF_INCLUDE_PATH, 'content-footer.inc'); > exit; > } else if (isset($_POST['prepublish']) && > (!isset($_POST['original']) || ($_POST['region']>1 && > !isset($_POST['spam'])) || !isset($_POST['region']))) { > echo "Sorry, you have not completed the questionaire. To go back > .$_POST['original'] . "®ion=" > .$_POST['region'] . "&spam=" > .$_POST['spam'] . "\">click here"; > sf_include_file(SF_INCLUDE_PATH, 'content-footer.inc'); > exit; > > } > > include_once(SF_SHARED_PATH."/classes/spam_class.inc"); > $spam=new Spam(); > if ($spam->Detect()==1) > { > $tr = new Translate; > echo "

".$tr->trans('spam_message')."

"; > sf_include_file(SF_INCLUDE_PATH, 'content-footer.inc'); > exit; > } > > > $comment = false; > $counter_msg = ""; > > $db_obj = new DB(); > $this->tr = new Translate(); > $this->tr->create_translate_table('publish'); > > include_once(SF_SHARED_PATH . '/classes/newswire_class.inc'); > include_once(SF_SHARED_PATH . '/classes/category_class.inc'); > > // Set up the template variables for this page > $this->tkeys['upload_max_filesize'] = > ini_get('upload_max_filesize'); > $this->tkeys['post_max_size'] = ini_get('post_max_size'); > $this->tkeys['max_execution_time'] = > ini_get('max_execution_time')/60; > > $text_options = array( > "t" => "text/plain", > "h" => "text/html" > ); > > $this->tkeys['select_artmime'] = > $this->make_select_form("artmime", $text_options, $_POST['artmime']); > > $cat_opt = new Category; > $cat_options = $cat_opt->get_newswire_assoc_list(); > > $crosspost_field = " value=\"t\">"; > > if (isset($_GET['crosspost'])) { > > $this->tkeys['crosspost'] = $crosspost_field; > > } else if ($_POST['original']==3) { > > // corporate crosspost > $this->tkeys['crosspost'] = $crosspost_field; > > } else if ($_POST['original']==2 && ($_POST['region']==3 > ||(($_POST['region']==2||$_POST['region']==4)&& $_POST['spam']))) { > > // crossposts from independent media > > $this->tkeys['crosspost'] = $crosspost_field; > > } else if ($_POST['original']==1 && $_POST['region']>=3 && > $_POST['spam']) { > > // original material but not about this region and crossposted > $this->tkeys['crosspost'] = $crosspost_field; > > } else if (isset($_POST['crosspost'])&& $_POST['crosspost']=='t') { > // the enter box has been pressed > $this->tkeys['crosspost'] = $crosspost_field; > } else { > $this->tkeys['crosspost'] = ""; > } > > $this->tkeys['category_select'] = > $this->make_select_form("category", $cat_options, $_POST['category']); > > $form_vars = > array("heading","author","contact","phone","address","summary","link"," > article"); > > // Initialize template variables > foreach ($form_vars as $fv) > { > if (strlen($_POST[$fv]) > 0) > { > $this->tkeys['local_'.$fv] = stripslashes($_POST[$fv]); > } else > { > $this->tkeys['local_'.$fv] = ''; > } > } > > $this->generate_filebox_html(); > $this->tkeys['file_boxes'] = $this->filebox; > > // Set up the file number select list > $max_num_uploads = array(); > > if ($_GET['top_id'] || $_POST['top_id']) > { > $max_num_uploads = array(0 => 0, 1 => 1); > } else > { > for ($x = 0; $x <= 20; $x++) > { > $max_num_uploads[$x] = $x; > } > } > > // Check if we are actually dealing with a comment > if ($_POST['top_id'] > 0) > { > $comment = true; > $ctr = new Translate(); > $this->forced_template_file = 'comment.tpl'; > $this->tkeys['local_top_id'] = $_POST['top_id']; > $this->tkeys['pub_stepone'] = > $ctr->trans('comment_pub_one'); > $this->tkeys['pub_steptwo'] = > $ctr->trans('comment_pub_two'); > $this->tkeys['pub_stepthree'] = > $ctr->trans('comment_pub_three'); > $this->tkeys['pub_optional'] = $ctr->trans('optional'); > $this->tkeys['local_site_nick'] = $GLOBALS['site_nick']; > $this->tkeys['pub_author'] = $ctr->trans('author'); > $this->tkeys['pub_url'] = $ctr->trans('link'); > $this->tkeys['php_self'] = $_SERVER['PHP_SELF']; > } > > $this->tkeys['select_filecount'] = > $this->make_select_form("file_count", $max_num_uploads, > $_POST['file_count']); > > // First, check if the publish button was actually pressed (as > opposed to the upload counter) > // Also, check if we are supposed to block this IP address > > if (($_POST["publish"] != "") && (sizeof($block_this_ip)==0)) > { > > if ($spam->DetectMultiple()) { > echo "

Multiple post error.

If this is a new article > please try again in " . ($_SESSION['lastposttime'] - time() + > TIMETOPOST) . " seconds."; > > sf_include_file(SF_INCLUDE_PATH, 'content-footer.inc'); > exit; > } > > $article = new Article; > $article->cleanup_post(); > > // Second, if the cleaned-up post is valid, add it to the > database > if ($article->validate_post()) > { > > $db_obj = new DB(); > $newswire = new Newswire(); > $category_obj = new Category(); > > $article->process_uploads(); > $article->set_article_data_from_form(); > > if ($comment) > { > $article->article['arttype'] = "news-response"; > $article->article['parent_id'] = $_POST['top_id']; > } > > $article->insert(); > > if (!$comment) > { > $parent_constant = $article->article["id"]; > } else > { > $parent_constant = $article->article['parent_id']; > } > > $articlelog=new Article($article->article["id"]); > $spam= new Spam(); > $spam->log_ip($articlelog); > > // Third, process the files which were uploaded > for ($counter = 2; $_POST["file_count"] >= $counter; > $counter++) > { > $article->article["artmime"] = 't'; > if ($_POST["texttype"] == 'text/html' ) > $article->article["artmime"] = 'h'; > $article->article["numcomments"] = 0; > $htmlfilename = chop($texttype); > > $article->article["heading"] = > $_POST["linked_file_title_".$counter]; > $article->article["article"] = > $_POST["linked_file_comment_".$counter]; > $article->article["parent_id"] = > $parent_constant; > $article->article["mime_type"] = > $_POST["mime_type_file_".$counter]; > $article->article["summary"] = ""; > $article->article["arttype"] = "attachment"; > $article->article["html_file"] = $htmlfilename; > $article->article["linked_file"] = > $article->upload_target_url[$counter]; > $article->insert(); > $counter_msg = "and $counter attachments."; > } > > // Fourth, add to categories and render the new > category newswire > // The commented out lines allow for checkboxes to be > used instead of a dropdown list ...? > > // if (is_array($_POST["category"])) > // { > // foreach ($_POST["category"] as $value) > // { > > // Next line removed if you use dropdown list > $value = $_POST["category"]; > > if ($value > 0) > { > > $category_obj->add_article_to_category($parent_constant,$value); > $categorydata = > $category_obj->get_category_fields($value); > if (is_array($categorydata) > 0) $Result > .= $newswire->render_summary($categorydata); > } > // } > // } > > // Also render the default category > $cat_data = > $category_obj->get_category_fields($GLOBALS["config_defcategory"]); > $newswire->render_summary($cat_data); > > // Fifth, cache the page to disk > $article_obj = new Article($parent_constant); > > $article_obj->render_everything(); > $article_obj->cache_to_disk(); > > if (ereg('t',$GLOBALS['newsfeed'])) { > $newswire->make_newswire_rss(); } > > if (!$comment) > { > $article_obj->update_status("Publish > successful! We have added your story to the newswire."); > $this->sf_error_log("Someone has published a new > article, id # $parent_constant."); > } else > { > $article_obj->update_status("Comment > added!"); > $this->sf_error_log("Someone has published a new > comment to article # $parent_constant."); > } > > $Published = true; > > $this->forced_template_file = 'publish_success.tpl'; > $this->tkeys['local_publish_result'] = > $article->get_update_status(); > $this->tkeys['local_publish_result'] .= > $article_obj->get_update_status(); > > if ($comment) > { > include(SF_SHARED_PATH . > '/classes/pages/comment_latest.inc'); > $lc = new comment_latest(); > > $comment_link = $article_obj->article['article_url_path']; > $comment_link .= $article_obj->article['id'] . "_comment.php"; > if > (($article_obj->article['display']=="l")||($article_obj- > >article['display']=="g") || !USE_LOCAL_GLOBAL){ > $lc->add_latest_comment( > $article_obj->article['numcomment'], > $article_obj->article['heading'], > $comment_link, > $article_obj->article['id'], > stripslashes($article->article['author']), > $article->article['id'] > ); > } > } > } else > { > $ErrorMessage = $article->display_error_status(); > } > > $Instructions = 0; > > } else > { > // we are displaying the page as normal, no form post > if ($comment==false) $Instructions = 1; > $_SESSION['publish']=true; > } > > if (PIMP == 1) $pimp = 1; > else $pimp = 0; > > if (empty($_SESSION['publish']) && !$pimp) { > echo "Sorry, you must enable cookies to post. "; > sf_include_file(SF_INCLUDE_PATH, 'content-footer.inc'); > exit; > } > > if (!$Published && sizeof($block_this_ip)==0) > { > foreach ($form_vars as $fv) > { > > $this->tkeys['local_'.$fv]=htmlspecialchars($this- > >tkeys['local_'.$fv]); > } > if ($ErrorMessage) echo $ErrorMessage; > if ($Instructions) > include(SF_INCLUDE_PATH."/publishtest-instructions.$language"."inc"); > } else > { > //echo $article->cachestatus; > //echo $article_obj->cachestatus; > } > > } // end function > > function generate_filebox_html() > { > > $this->trr = new Translate(); > $this->trr->create_translate_table('publish'); > > $fbox = ""; > $fbox = " cellpadding=\"4\" class=\"bgpenult\">\n"; > $fbox .= "
"; > > if ($_POST['file_count'] > 0) > { > $file_count = $_POST['file_count']; > } else > { > $file_count = 0; > } > > for ($counter = 0; $file_count >= $counter; $counter++) > { > > if ($counter > 0) > { > if ($counter > 1) $fbox .= "
\n"; > $fbox .= " cellspacing=\"2\" cellpadding=\"4\">"; > $fbox .= "\n"; > $fbox .= "\n"; > > if ($counter > 1) > { > $fbox .= "\n\n"; > } > > $fbox .= "
"; > $fbox .= $this->trr->trans('select_file') . " #" . > $counter . " name=\"linked_file_" . $counter . "\" />
"; > $fbox .= $this->trr->trans('upload_limit') . > "
width=\"25%\">" . $this->trr->trans('title') . " #" . $counter . > " ("; > $fbox .= $this->trr->trans('required') . > ")"; > $fbox .= " type=\"text\" name=\"linked_file_title_" . $counter; > $fbox .= "\" value=\"" . > $_POST['linked_file_title_'.$counter] . "\" />"; > $fbox .= "
width=\"25%\">"; > $fbox .= $this->trr->trans('comment') . " #" . > $counter . ""; > $fbox .= "
\n"; > } > } > > $fbox .= "
\n"; > $this->filebox = $fbox; > > } > > } // end class > ?> > From info at melbourne.indymedia.org Mon Apr 11 11:42:16 2005 From: info at melbourne.indymedia.org (melbourne indymedia) Date: Mon, 11 Apr 2005 17:12:16 +0530 Subject: [Imc-melbourne-geeks] Fwd: Feedback: Cookies and posts Message-ID: <9d76e438e43d8f5ca667cd2f01888aac@melbourne.indymedia.org> Begin forwarded message: > From: michael > Date: 11 April 2005 10:46:31 AM > To: info at melbourne.indymedia.org > Subject: Feedback: Cookies and posts > > > Hi MIM collective, > > This is Michael Strutt of Justice Action and the Indigenous Social > Justice Association. > > I note that you have recently implemented compulsory cookies for > posting to MIM - supposedly to aid in blocking spam. > > As someone with over 20 years in the IT industry I feel able to advise > you as to what you must already know - you can\'t block spam with > cookies. > > However as someone with a strong sense of computer security and > privacy, you have succeeded in blocking me from posting valid activist > news to the MIM. I use a shared computer and shared internet account > that is used to access many sites other than MIM. Even if I trusted > MIM\'s use of cookies more than that of big commercial organisations, > I would not be prepared to maintain site exception lists or > enable/disable cookies every time I wished to post to MIM. > > As I have long stopped visiting Fairfax websites because of their > cookie policy it is cause for regret that I am now being forced to > relinquish my ability to post to an independent media site due to a > similarly ill considered and unjustified attempt to impose a third > rate technical fix on a problem that requires real human attention and > thought. > > And by the way, if you are going to impose a new posting policy, > don\'t you think it would constitute basic courtesy to *announce* it > in large coloured font on your posting page, so that people don\'t > have to learn the hard way by sending paragraphs of text into > write-only memory? That sort of unfriendliness is something Micro$hit > users might be used to but I would have hoped for better from > non-corporate geeks. > -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: text/enriched Size: 2039 bytes Desc: not available Url : http://lists.indymedia.org.au/pipermail/imc-melbourne-geeks/attachments/20050411/26512141/attachment.bin From dfregon at gmail.com Tue Apr 5 13:13:57 2005 From: dfregon at gmail.com (Dave Fregon) Date: Tue, 5 Apr 2005 23:13:57 +1000 Subject: [Imc-melbourne-geeks] Axxs.org and Melb Indy Server move Message-ID: <82e8cae20504050613193cb224@mail.gmail.com> I am moving the axxs.org server tonight .. the old site will stay active .. I will move over the content and it would be great to get some support from indy folk for letting folk in the way of just realising tommorrow night i will move the DB and the DNS .. there should be minimal downtime .. I was going to do a lot of the data move tonight so there's only a tiny bit to do tommorrow night to sync them ... and I can tell if there's any issues before moving the DNS Dave From and at axxs.org Thu Apr 21 09:30:18 2005 From: and at axxs.org (and) Date: Thu, 21 Apr 2005 15:00:18 +0530 Subject: [Imc-melbourne-geeks] drupal dev Message-ID: Hey, emailing you all as there seems to be a crew of people interested in helping melbourne indymedia shift to drupal. (pabs i'm not dobbing you in just cc'ing you to make sure i got all the tech details right as you have access to the server). Shane and gdm both said they were interested and I have added tongmaster from sydney indymedia and dan from newcastle who I know to the list too. Together youse form a formidable drupal team :) A local melbournian is coming to the meeting tonight so hopefully we will have at least one geek on the ground, obviously there are more melbimc geeks on this list too. people may want to introduce themselves. I am wondering where the best place to do this work is, some of the work may be very specific to melbourne and therefore not relevant to the imc-drupal-dev list or others may prefer to use it. As we have previously been trawled by right-wing journos who have place several members employment at risk we have a closed list. Anyway, perhaps you should introduce yourselves. Pabs or I can pass you the login details in secure chat in irc.indymedia.org #oceania. There is a wiki here with very little on it. http://docs.indymedia.org/view/Local/ImcMelbourneRedev Is there a wiki for the sydney redev? we really need a plan. Thanks And. From dan.mackinlay at gmail.com Thu Apr 21 06:00:18 2005 From: dan.mackinlay at gmail.com (dan.mackinlay at gmail.com) Date: Thu, 21 Apr 2005 13:00:18 +0700 Subject: [Imc-melbourne-geeks] drupal dev In-Reply-To: References: Message-ID: OK, am dan, currently based in chiang mai with occasionally sporadic net access. I do drupal for a living as of 4 months ago, so am fortunate(?) to have some 8-hours-a-day practice under me belt, mostly in the area of taxonomy handling and searching with a taste of the hideous world of translating designer's mockups into functional code. Yipes. so, where's it at currently? D'we wanna chew through the issues on http://docs.indymedia.org/view/Local/ImcMelbourneRedev or on this list? how are you all? > Hey, > emailing you all as there seems to be a crew of people interested in > helping melbourne indymedia shift to drupal. (pabs i'm not dobbing you > in just cc'ing you to make sure i got all the tech details right as > you have access to the server). > Shane and gdm both said they were interested and I have added > tongmaster from sydney indymedia and dan from newcastle who I know to > the list too. Together youse form a formidable drupal team :) > A local melbournian is coming to the meeting tonight so hopefully we > will have at least one geek on the ground, obviously there are more > melbimc geeks on this list too. people may want to introduce > themselves. > I am wondering where the best place to do this work is, some of the > work may be very specific to melbourne and therefore not relevant to > the imc-drupal-dev list or others may prefer to use it. As we have > previously been trawled by right-wing journos who have place several > members employment at risk we have a closed list. > Anyway, perhaps you should introduce yourselves. > Pabs or I can pass you the login details in secure chat in > irc.indymedia.org #oceania. > There is a wiki here with very little on it. > http://docs.indymedia.org/view/Local/ImcMelbourneRedev > Is there a wiki for the sydney redev? we really need a plan. > Thanks > And. > > _______________________________________________ > Imc-melbourne-geeks mailing list > Imc-melbourne-geeks at lists.cat.org.au > http://lists.cat.org.au/cgi-bin/m/listinfo/imc-melbourne-geeks > > --- Currently working on: Things to wonder about: http://livingthing.org.au Nomadology: http://www.dislocated.org/nomadology From and at axxs.org Fri Apr 22 06:34:50 2005 From: and at axxs.org (and) Date: Fri, 22 Apr 2005 12:04:50 +0530 Subject: [Imc-melbourne-geeks] dev space Message-ID: Hey, http://melbourne.devel.indymedia.org/ is now available. thats what they gave us. So space is all there to start playing around. Any volunteers to do the install? and. From tongmaster at arseclown.tv Fri Apr 22 02:10:48 2005 From: tongmaster at arseclown.tv (TongMaster) Date: Fri, 22 Apr 2005 12:10:48 +1000 Subject: [Imc-melbourne-geeks] dev space In-Reply-To: References: Message-ID: <1114135848.9549.57.camel@localhost.localdomain> On Fri, 2005-04-22 at 12:04 +0530, and wrote: > Hey, > http://melbourne.devel.indymedia.org/ is now available. thats what they > gave us. > So space is all there to start playing around. Any volunteers to do the > install? Sure. What distro has been installed? -- "I can promise you that we will follow policies which will, over a period of time, bring down the foreign debt . . . our first priority in Government economically will be to tackle the current account deficit." --John Howard (Doorstop interview, Debt Truck Launch, 20 September 1995) The Truth: Foreign debt was $361 billion at the end of September 2003, an increase of 90 percent on the September 1995 level. The current account deficit was $11.9 billion at the end of September 2003, an increase of 112.5 per cent on the September 1995 level. --Australian Bureau of Statistics (ABS@, Time Series Spreadsheets (Balance of Payments and Investment Position, Australia 5302.0, Reserve Bank of Australia (H) Bulletin, Current Account)) From and at axxs.org Fri Apr 22 06:59:03 2005 From: and at axxs.org (and) Date: Fri, 22 Apr 2005 12:29:03 +0530 Subject: [Imc-melbourne-geeks] dev space In-Reply-To: <1114135848.9549.57.camel@localhost.localdomain> References: <1114135848.9549.57.camel@localhost.localdomain> Message-ID: > > Sure. What distro has been installed? none. i'd be guessing we'd be going with the latest. > > -- > "I can promise you that we will follow policies which will, over a > period of time, bring down the foreign debt . . . our first priority in > Government economically will be to tackle the current account deficit." > --John Howard (Doorstop interview, Debt Truck Launch, 20 September > 1995) > > The Truth: Foreign debt was $361 billion at the end of September 2003, > an increase of 90 percent on the September 1995 level. The current > account deficit was $11.9 billion at the end of September 2003, an > increase of 112.5 per cent on the September 1995 level. > --Australian Bureau of Statistics (ABS@, Time Series Spreadsheets > (Balance of Payments and Investment Position, Australia 5302.0, Reserve > Bank of Australia (H) Bulletin, Current Account)) > _______________________________________________ > Imc-melbourne-geeks mailing list > Imc-melbourne-geeks at lists.cat.org.au > http://lists.cat.org.au/cgi-bin/m/listinfo/imc-melbourne-geeks > From and at axxs.org Fri Apr 22 07:15:13 2005 From: and at axxs.org (and) Date: Fri, 22 Apr 2005 12:45:13 +0530 Subject: [Imc-melbourne-geeks] irc meeting monday may 2 8pm? Message-ID: Hey all, at the melbourne meeting last night we discussed having an irc meeting to discuss the redevelopment on may 2, at 8pm. monday week, in irc.indymedia.org #melbourne. There are always people in #oceania so people chatting in there is obviously good too. Between that the wiki and the list we should be able to get some stuff done. looking at the sydney drupal page is also quite interesting http://docs.indymedia.org/view/Local/IMCSydneyMigration And. From dan.mackinlay at gmail.com Fri Apr 22 05:53:55 2005 From: dan.mackinlay at gmail.com (dan.mackinlay at gmail.com) Date: Fri, 22 Apr 2005 12:53:55 +0700 Subject: [Imc-melbourne-geeks] irc meeting monday may 2 8pm? In-Reply-To: References: Message-ID: <4149076a030cba7e7ad7d8b1862fe813@gmail.com> ...Will be offline Mon 09:00 until Tuesday 20:00 AEST, but you guys have fun. > Hey all, > at the melbourne meeting last night we discussed having an irc meeting > to discuss the redevelopment on may 2, at 8pm. monday week, in > irc.indymedia.org #melbourne. > There are always people in #oceania so people chatting in there is > obviously good too. Between that the wiki and the list we should be > able to get some stuff done. > looking at the sydney drupal page is also quite interesting > http://docs.indymedia.org/view/Local/IMCSydneyMigration > And. > > _______________________________________________ > Imc-melbourne-geeks mailing list > Imc-melbourne-geeks at lists.cat.org.au > http://lists.cat.org.au/cgi-bin/m/listinfo/imc-melbourne-geeks > > --- Currently working on: Things to wonder about: http://livingthing.org.au Nomadology: http://www.dislocated.org/nomadology From and at axxs.org Fri Apr 22 11:00:32 2005 From: and at axxs.org (and) Date: Fri, 22 Apr 2005 16:30:32 +0530 Subject: [Imc-melbourne-geeks] irc meeting monday may 2 8pm? In-Reply-To: <4149076a030cba7e7ad7d8b1862fe813@gmail.com> References: <4149076a030cba7e7ad7d8b1862fe813@gmail.com> Message-ID: <15d0a9e2572b18f9cda79c0171aaa26d@axxs.org> We can change the time. etc. it was just a proposal. depends when people are around. is that tuesay better? or wednesday? and. On 22/04/2005, at 11:23 AM, dan.mackinlay at gmail.com wrote: > ...Will be offline Mon 09:00 until Tuesday 20:00 AEST, but you guys > have fun. > >> Hey all, >> at the melbourne meeting last night we discussed having an irc >> meeting to discuss the redevelopment on may 2, at 8pm. monday week, >> in irc.indymedia.org #melbourne. >> There are always people in #oceania so people chatting in there is >> obviously good too. Between that the wiki and the list we should be >> able to get some stuff done. >> looking at the sydney drupal page is also quite interesting >> http://docs.indymedia.org/view/Local/IMCSydneyMigration >> And. >> >> _______________________________________________ >> Imc-melbourne-geeks mailing list >> Imc-melbourne-geeks at lists.cat.org.au >> http://lists.cat.org.au/cgi-bin/m/listinfo/imc-melbourne-geeks >> >> > --- > Currently working on: > Things to wonder about: http://livingthing.org.au > Nomadology: http://www.dislocated.org/nomadology > > _______________________________________________ > Imc-melbourne-geeks mailing list > Imc-melbourne-geeks at lists.cat.org.au > http://lists.cat.org.au/cgi-bin/m/listinfo/imc-melbourne-geeks > From scottadamson at sywaretech.com.au Fri Apr 22 06:24:47 2005 From: scottadamson at sywaretech.com.au (Scott Adamson) Date: 22 Apr 2005 16:24:47 +1000 Subject: [Imc-melbourne-geeks] dev space In-Reply-To: References: <1114135848.9549.57.camel@localhost.localdomain> Message-ID: <1114151087.21179.23.camel@localhost.localdomain> Does anyone have the latest fedora, if not I can invest the bandwidth and get the most recent ISO On Fri, 2005-04-22 at 16:59, and wrote: > > > > Sure. What distro has been installed? > > none. i'd be guessing we'd be going with the latest. > > > > > -- > > "I can promise you that we will follow policies which will, over a > > period of time, bring down the foreign debt . . . our first priority in > > Government economically will be to tackle the current account deficit." > > --John Howard (Doorstop interview, Debt Truck Launch, 20 September > > 1995) > > > > The Truth: Foreign debt was $361 billion at the end of September 2003, > > an increase of 90 percent on the September 1995 level. The current > > account deficit was $11.9 billion at the end of September 2003, an > > increase of 112.5 per cent on the September 1995 level. > > --Australian Bureau of Statistics (ABS@, Time Series Spreadsheets > > (Balance of Payments and Investment Position, Australia 5302.0, Reserve > > Bank of Australia (H) Bulletin, Current Account)) > > _______________________________________________ > > Imc-melbourne-geeks mailing list > > Imc-melbourne-geeks at lists.cat.org.au > > http://lists.cat.org.au/cgi-bin/m/listinfo/imc-melbourne-geeks > > > > _______________________________________________ > Imc-melbourne-geeks mailing list > Imc-melbourne-geeks at lists.cat.org.au > http://lists.cat.org.au/cgi-bin/m/listinfo/imc-melbourne-geeks -- Scott Adamson Systems Administrator Syware Technology ph 0438 929 503 scottadamson at sywaretech.com.au www.sywaretech.com.au From tongmaster at arseclown.tv Fri Apr 22 06:53:35 2005 From: tongmaster at arseclown.tv (TongMaster) Date: Fri, 22 Apr 2005 16:53:35 +1000 Subject: [Imc-melbourne-geeks] dev space In-Reply-To: <1114151087.21179.23.camel@localhost.localdomain> References: <1114135848.9549.57.camel@localhost.localdomain> <1114151087.21179.23.camel@localhost.localdomain> Message-ID: <1114152815.8660.30.camel@localhost.localdomain> On Fri, 2005-04-22 at 16:24 +1000, Scott Adamson wrote: > Does anyone have the latest fedora, if not I can invest the bandwidth > and get the most recent ISO Man, don't go Fedora. Go Ubuntu or at the very minimum Debian (Sarge). Make life as simple as possible for your weary admins. -- "We won't just automatically cick our heels and follow the Americans" -- John Howard, telling fibs on September 27th, 2002 From dan.mackinlay at gmail.com Fri Apr 22 06:52:57 2005 From: dan.mackinlay at gmail.com (dan.mackinlay at gmail.com) Date: Fri, 22 Apr 2005 13:52:57 +0700 Subject: [Imc-melbourne-geeks] irc meeting monday may 2 8pm? In-Reply-To: <15d0a9e2572b18f9cda79c0171aaa26d@axxs.org> References: <4149076a030cba7e7ad7d8b1862fe813@gmail.com> <15d0a9e2572b18f9cda79c0171aaa26d@axxs.org> Message-ID: <2cd05f3722fd8e775e77f9fc6f5db7a9@gmail.com> Wednesday is great. Any time, preferably in the evening. 8pm AEST again? On 22/04/2005, at 6:00 PM, and wrote: > We can change the time. etc. it was just a proposal. > depends when people are around. is that tuesay better? or wednesday? > and. > > On 22/04/2005, at 11:23 AM, dan.mackinlay at gmail.com wrote: > >> ...Will be offline Mon 09:00 until Tuesday 20:00 AEST, but you guys >> have fun. >> >>> Hey all, >>> at the melbourne meeting last night we discussed having an irc >>> meeting to discuss the redevelopment on may 2, at 8pm. monday week, >>> in irc.indymedia.org #melbourne. >>> There are always people in #oceania so people chatting in there is >>> obviously good too. Between that the wiki and the list we should be >>> able to get some stuff done. >>> looking at the sydney drupal page is also quite interesting >>> http://docs.indymedia.org/view/Local/IMCSydneyMigration >>> And. >>> >>> _______________________________________________ >>> Imc-melbourne-geeks mailing list >>> Imc-melbourne-geeks at lists.cat.org.au >>> http://lists.cat.org.au/cgi-bin/m/listinfo/imc-melbourne-geeks >>> >>> >> --- >> Currently working on: >> Things to wonder about: http://livingthing.org.au >> Nomadology: http://www.dislocated.org/nomadology >> >> _______________________________________________ >> Imc-melbourne-geeks mailing list >> Imc-melbourne-geeks at lists.cat.org.au >> http://lists.cat.org.au/cgi-bin/m/listinfo/imc-melbourne-geeks >> > > _______________________________________________ > Imc-melbourne-geeks mailing list > Imc-melbourne-geeks at lists.cat.org.au > http://lists.cat.org.au/cgi-bin/m/listinfo/imc-melbourne-geeks > > --- Currently working on: Things to wonder about: http://livingthing.org.au Nomadology: http://www.dislocated.org/nomadology From and at axxs.org Fri Apr 22 12:39:58 2005 From: and at axxs.org (and) Date: Fri, 22 Apr 2005 18:09:58 +0530 Subject: [Imc-melbourne-geeks] Fwd: [Dns] dev.melbourne Message-ID: Begin forwarded message: > From: stefani > Date: 21 April 2005 11:20:28 AM > To: and > Cc: dns at lists.indymedia.org > Subject: Re: [Dns] dev.melbourne > > and wrote: >> Hi, >> Andrew from melbourne indymedia here. >> We are just setting up some space to begin development of a drupal >> site >> and are wondering if someone can get dev.melbourne.indymedia.org to >> point at 64.34.162.143 >> Thanks very much. >> And. > > the following was created: > melbourne.devel.indymedia.org > > devel.indymedia.org was set up to handle all dev sites. > hope that is ok. > > 05:50 utc 21 apr 2005 > stefani > > -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: text/enriched Size: 935 bytes Desc: not available Url : http://lists.indymedia.org.au/pipermail/imc-melbourne-geeks/attachments/20050422/00f13160/attachment.bin From scottadamson at sywaretech.com.au Fri Apr 22 13:35:58 2005 From: scottadamson at sywaretech.com.au (Scott Adamson) Date: 22 Apr 2005 23:35:58 +1000 Subject: [Imc-melbourne-geeks] dev space In-Reply-To: <1114152815.8660.30.camel@localhost.localdomain> References: <1114135848.9549.57.camel@localhost.localdomain> <1114151087.21179.23.camel@localhost.localdomain> <1114152815.8660.30.camel@localhost.localdomain> Message-ID: <1114176958.21179.32.camel@localhost.localdomain> I got the impression the decision had been made to go with fedora, haven't used this distro myself but have been using Redhat for servers and my desktop, have found the availability of software that has been tailored to Redhat makes it a good choice for servers, but for a desktop I dare say there would be many better distros out there, redhat has sucked for sound & video support recently. On Fri, 2005-04-22 at 16:53, TongMaster wrote: > On Fri, 2005-04-22 at 16:24 +1000, Scott Adamson wrote: > > Does anyone have the latest fedora, if not I can invest the bandwidth > > and get the most recent ISO > > Man, don't go Fedora. Go Ubuntu or at the very minimum Debian (Sarge). > Make life as simple as possible for your weary admins. > > -- > "We won't just automatically cick our heels and follow the Americans" > -- John Howard, telling fibs on September 27th, 2002 > _______________________________________________ > Imc-melbourne-geeks mailing list > Imc-melbourne-geeks at lists.cat.org.au > http://lists.cat.org.au/cgi-bin/m/listinfo/imc-melbourne-geeks -- Scott Adamson Systems Administrator Syware Technology ph 0438 929 503 scottadamson at sywaretech.com.au www.sywaretech.com.au From dfregon at gmail.com Sat Apr 23 06:02:59 2005 From: dfregon at gmail.com (Dave Fregon) Date: Sat, 23 Apr 2005 16:02:59 +1000 Subject: [Imc-melbourne-geeks] dev space In-Reply-To: <1114176958.21179.32.camel@localhost.localdomain> References: <1114135848.9549.57.camel@localhost.localdomain> <1114151087.21179.23.camel@localhost.localdomain> <1114152815.8660.30.camel@localhost.localdomain> <1114176958.21179.32.camel@localhost.localdomain> Message-ID: <82e8cae205042223023d8a2d88@mail.gmail.com> Heyas, The server axxs.org runs fedora core 2, with the latest Plesk Reloaded on top. Plesk is a control panel interface, and the choice of the OS and Plesk was one that would lower admin 'costs' as much can be done by the users themselves, such as maintaining emailing lists, email, there's 36 easy form installed Opensource products on there , and we have lashed out for those folk without html knowledge and got a thru the browser WYSIWYG editor for those community groups on the machine just getting a web-presence going (of course this is not so useful for dynamic sites ;) There needs to be the space setup on the server, that's why you currently see the last virtual host on the box (UK indymedia mirror) All I need is those folk that are maintaining the space so that I can pass them the login username and password so they can get started. Dave On 22 Apr 2005 23:35:58 +1000, Scott Adamson wrote: > I got the impression the decision had been made to go with fedora, > haven't used this distro myself but have been using Redhat for servers > and my desktop, have found the availability of software that has been > tailored to Redhat makes it a good choice for servers, but for a desktop > I dare say there would be many better distros out there, redhat has > sucked for sound & video support recently. > > > On Fri, 2005-04-22 at 16:53, TongMaster wrote: > > On Fri, 2005-04-22 at 16:24 +1000, Scott Adamson wrote: > > > Does anyone have the latest fedora, if not I can invest the bandwidth > > > and get the most recent ISO > > > > Man, don't go Fedora. Go Ubuntu or at the very minimum Debian (Sarge). > > Make life as simple as possible for your weary admins. > > > > -- > > "We won't just automatically cick our heels and follow the Americans" > > -- John Howard, telling fibs on September 27th, 2002 > > _______________________________________________ > > Imc-melbourne-geeks mailing list > > Imc-melbourne-geeks at lists.cat.org.au > > http://lists.cat.org.au/cgi-bin/m/listinfo/imc-melbourne-geeks > -- > Scott Adamson > Systems Administrator > Syware Technology > ph 0438 929 503 > scottadamson at sywaretech.com.au > www.sywaretech.com.au > > _______________________________________________ > Imc-melbourne-geeks mailing list > Imc-melbourne-geeks at lists.cat.org.au > http://lists.cat.org.au/cgi-bin/m/listinfo/imc-melbourne-geeks > From and at axxs.org Sun Apr 24 07:52:24 2005 From: and at axxs.org (and) Date: Sun, 24 Apr 2005 13:22:24 +0530 Subject: [Imc-melbourne-geeks] irc meeting monday may 2 8pm? In-Reply-To: <2cd05f3722fd8e775e77f9fc6f5db7a9@gmail.com> References: <4149076a030cba7e7ad7d8b1862fe813@gmail.com> <15d0a9e2572b18f9cda79c0171aaa26d@axxs.org> <2cd05f3722fd8e775e77f9fc6f5db7a9@gmail.com> Message-ID: <5ae9bab72d0e15e5362e40dfcaf76df6@axxs.org> > Wednesday is great. Any time, preferably in the evening. 8pm AEST > again? Shall we do it then in that case? Tongmaster, gdm, shane, others able to make it then. We are talking wednesday week here by the way which is a long way off. people can always start organising stuff in irc #oceania before too. and. > > > On 22/04/2005, at 6:00 PM, and wrote: > >> We can change the time. etc. it was just a proposal. >> depends when people are around. is that tuesay better? or wednesday? >> and. >> >> On 22/04/2005, at 11:23 AM, dan.mackinlay at gmail.com wrote: >> >>> ...Will be offline Mon 09:00 until Tuesday 20:00 AEST, but you guys >>> have fun. >>> >>>> Hey all, >>>> at the melbourne meeting last night we discussed having an irc >>>> meeting to discuss the redevelopment on may 2, at 8pm. monday week, >>>> in irc.indymedia.org #melbourne. >>>> There are always people in #oceania so people chatting in there is >>>> obviously good too. Between that the wiki and the list we should be >>>> able to get some stuff done. >>>> looking at the sydney drupal page is also quite interesting >>>> http://docs.indymedia.org/view/Local/IMCSydneyMigration >>>> And. >>>> >>>> _______________________________________________ >>>> Imc-melbourne-geeks mailing list >>>> Imc-melbourne-geeks at lists.cat.org.au >>>> http://lists.cat.org.au/cgi-bin/m/listinfo/imc-melbourne-geeks >>>> >>>> >>> --- >>> Currently working on: >>> Things to wonder about: http://livingthing.org.au >>> Nomadology: http://www.dislocated.org/nomadology >>> >>> _______________________________________________ >>> Imc-melbourne-geeks mailing list >>> Imc-melbourne-geeks at lists.cat.org.au >>> http://lists.cat.org.au/cgi-bin/m/listinfo/imc-melbourne-geeks >>> >> >> _______________________________________________ >> Imc-melbourne-geeks mailing list >> Imc-melbourne-geeks at lists.cat.org.au >> http://lists.cat.org.au/cgi-bin/m/listinfo/imc-melbourne-geeks >> >> > --- > Currently working on: > Things to wonder about: http://livingthing.org.au > Nomadology: http://www.dislocated.org/nomadology > > _______________________________________________ > Imc-melbourne-geeks mailing list > Imc-melbourne-geeks at lists.cat.org.au > http://lists.cat.org.au/cgi-bin/m/listinfo/imc-melbourne-geeks > From dan.mackinlay at gmail.com Sun Apr 24 09:25:10 2005 From: dan.mackinlay at gmail.com (dan.mackinlay at gmail.com) Date: Sun, 24 Apr 2005 16:25:10 +0700 Subject: [Imc-melbourne-geeks] irc meeting monday may 2 8pm? In-Reply-To: <5ae9bab72d0e15e5362e40dfcaf76df6@axxs.org> References: <4149076a030cba7e7ad7d8b1862fe813@gmail.com> <15d0a9e2572b18f9cda79c0171aaa26d@axxs.org> <2cd05f3722fd8e775e77f9fc6f5db7a9@gmail.com> <5ae9bab72d0e15e5362e40dfcaf76df6@axxs.org> Message-ID: To check: We are talking Wed May 4, 20:00 AEST yes? I can do that date. -d() > >> Wednesday is great. Any time, preferably in the evening. 8pm AEST >> again? > > Shall we do it then in that case? Tongmaster, gdm, shane, others able > to make it then. We are talking wednesday week here by the way which > is a long way off. people can always start organising stuff in irc > #oceania before too. > and. > >> >> >> On 22/04/2005, at 6:00 PM, and wrote: >> >>> We can change the time. etc. it was just a proposal. >>> depends when people are around. is that tuesay better? or wednesday? >>> and. >>> >>> On 22/04/2005, at 11:23 AM, dan.mackinlay at gmail.com wrote: >>> >>>> ...Will be offline Mon 09:00 until Tuesday 20:00 AEST, but you guys >>>> have fun. >>>> >>>>> Hey all, >>>>> at the melbourne meeting last night we discussed having an irc >>>>> meeting to discuss the redevelopment on may 2, at 8pm. monday >>>>> week, in irc.indymedia.org #melbourne. >>>>> There are always people in #oceania so people chatting in there is >>>>> obviously good too. Between that the wiki and the list we should >>>>> be able to get some stuff done. >>>>> looking at the sydney drupal page is also quite interesting >>>>> http://docs.indymedia.org/view/Local/IMCSydneyMigration >>>>> And. >>>>> >>>>> _______________________________________________ >>>>> Imc-melbourne-geeks mailing list >>>>> Imc-melbourne-geeks at lists.cat.org.au >>>>> http://lists.cat.org.au/cgi-bin/m/listinfo/imc-melbourne-geeks >>>>> >>>>> >>>> --- >>>> Currently working on: >>>> Things to wonder about: http://livingthing.org.au >>>> Nomadology: http://www.dislocated.org/nomadology >>>> >>>> _______________________________________________ >>>> Imc-melbourne-geeks mailing list >>>> Imc-melbourne-geeks at lists.cat.org.au >>>> http://lists.cat.org.au/cgi-bin/m/listinfo/imc-melbourne-geeks >>>> >>> >>> _______________________________________________ >>> Imc-melbourne-geeks mailing list >>> Imc-melbourne-geeks at lists.cat.org.au >>> http://lists.cat.org.au/cgi-bin/m/listinfo/imc-melbourne-geeks >>> >>> >> --- >> Currently working on: >> Things to wonder about: http://livingthing.org.au >> Nomadology: http://www.dislocated.org/nomadology >> >> _______________________________________________ >> Imc-melbourne-geeks mailing list >> Imc-melbourne-geeks at lists.cat.org.au >> http://lists.cat.org.au/cgi-bin/m/listinfo/imc-melbourne-geeks >> > > _______________________________________________ > Imc-melbourne-geeks mailing list > Imc-melbourne-geeks at lists.cat.org.au > http://lists.cat.org.au/cgi-bin/m/listinfo/imc-melbourne-geeks > > --- Currently working on: Things to wonder about: http://livingthing.org.au Nomadology: http://www.dislocated.org/nomadology From and at axxs.org Sun Apr 24 19:31:34 2005 From: and at axxs.org (and) Date: Mon, 25 Apr 2005 01:01:34 +0530 Subject: [Imc-melbourne-geeks] irc meeting monday may 2 8pm? In-Reply-To: References: <4149076a030cba7e7ad7d8b1862fe813@gmail.com> <15d0a9e2572b18f9cda79c0171aaa26d@axxs.org> <2cd05f3722fd8e775e77f9fc6f5db7a9@gmail.com> <5ae9bab72d0e15e5362e40dfcaf76df6@axxs.org> Message-ID: <4cef4528bb87374f369cce9d55c2bca2@axxs.org> On 24/04/2005, at 2:55 PM, dan.mackinlay at gmail.com wrote: > To check: We are talking Wed May 4, 20:00 AEST yes? yes. > > I can do that date. > > -d() > >> >>> Wednesday is great. Any time, preferably in the evening. 8pm AEST >>> again? >> >> Shall we do it then in that case? Tongmaster, gdm, shane, others able >> to make it then. We are talking wednesday week here by the way which >> is a long way off. people can always start organising stuff in irc >> #oceania before too. >> and. >> >>> >>> >>> On 22/04/2005, at 6:00 PM, and wrote: >>> >>>> We can change the time. etc. it was just a proposal. >>>> depends when people are around. is that tuesay better? or wednesday? >>>> and. >>>> >>>> On 22/04/2005, at 11:23 AM, dan.mackinlay at gmail.com wrote: >>>> >>>>> ...Will be offline Mon 09:00 until Tuesday 20:00 AEST, but you >>>>> guys have fun. >>>>> >>>>>> Hey all, >>>>>> at the melbourne meeting last night we discussed having an irc >>>>>> meeting to discuss the redevelopment on may 2, at 8pm. monday >>>>>> week, in irc.indymedia.org #melbourne. >>>>>> There are always people in #oceania so people chatting in there >>>>>> is obviously good too. Between that the wiki and the list we >>>>>> should be able to get some stuff done. >>>>>> looking at the sydney drupal page is also quite interesting >>>>>> http://docs.indymedia.org/view/Local/IMCSydneyMigration >>>>>> And. >>>>>> >>>>>> _______________________________________________ >>>>>> Imc-melbourne-geeks mailing list >>>>>> Imc-melbourne-geeks at lists.cat.org.au >>>>>> http://lists.cat.org.au/cgi-bin/m/listinfo/imc-melbourne-geeks >>>>>> >>>>>> >>>>> --- >>>>> Currently working on: >>>>> Things to wonder about: http://livingthing.org.au >>>>> Nomadology: http://www.dislocated.org/nomadology >>>>> >>>>> _______________________________________________ >>>>> Imc-melbourne-geeks mailing list >>>>> Imc-melbourne-geeks at lists.cat.org.au >>>>> http://lists.cat.org.au/cgi-bin/m/listinfo/imc-melbourne-geeks >>>>> >>>> >>>> _______________________________________________ >>>> Imc-melbourne-geeks mailing list >>>> Imc-melbourne-geeks at lists.cat.org.au >>>> http://lists.cat.org.au/cgi-bin/m/listinfo/imc-melbourne-geeks >>>> >>>> >>> --- >>> Currently working on: >>> Things to wonder about: http://livingthing.org.au >>> Nomadology: http://www.dislocated.org/nomadology >>> >>> _______________________________________________ >>> Imc-melbourne-geeks mailing list >>> Imc-melbourne-geeks at lists.cat.org.au >>> http://lists.cat.org.au/cgi-bin/m/listinfo/imc-melbourne-geeks >>> >> >> _______________________________________________ >> Imc-melbourne-geeks mailing list >> Imc-melbourne-geeks at lists.cat.org.au >> http://lists.cat.org.au/cgi-bin/m/listinfo/imc-melbourne-geeks >> >> > --- > Currently working on: > Things to wonder about: http://livingthing.org.au > Nomadology: http://www.dislocated.org/nomadology > > _______________________________________________ > Imc-melbourne-geeks mailing list > Imc-melbourne-geeks at lists.cat.org.au > http://lists.cat.org.au/cgi-bin/m/listinfo/imc-melbourne-geeks >