<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><!-- generator="wordpress/2.1.2" --><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Georgie Casey</title>
	<link>http://www.georgiecasey.com</link>
	<description>Needed somewhere to put all my stuff...</description>
	<pubDate>Mon, 15 Feb 2010 07:09:17 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.1.2</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/GeorgieCasey" /><feedburner:info uri="georgiecasey" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:browserFriendly></feedburner:browserFriendly><item>
		<title>charles web proxy review</title>
		<link>http://www.georgiecasey.com/2010/02/15/charles-web-proxy-review/</link>
		<comments>http://www.georgiecasey.com/2010/02/15/charles-web-proxy-review/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 07:09:17 +0000</pubDate>
		<dc:creator>Georgie Casey</dc:creator>
		
		<category><![CDATA[kOM-PUT-ER]]></category>
<category>kOM PUT ER</category>
		<guid isPermaLink="false">http://www.georgiecasey.com/2010/02/15/charles-web-proxy-review/</guid>
		<description><![CDATA[As I said in my last post, I&#8217;ve written many a scraper using php with curl or fsockopen in my time, trying to write automated tools and scraping data. I&#8217;ve tried many tools to help me sniff the HTTP traffic so I could emulate it in PHP as quick as possible. I started off using [...]]]></description>
			<content:encoded><![CDATA[<p>As I said in my last post, I&#8217;ve written many a scraper using php with curl or fsockopen in my time, trying to write automated tools and scraping data. I&#8217;ve tried many tools to help me sniff the HTTP traffic so I could emulate it in PHP as quick as possible. I started off using <a href="http://en.wikipedia.org/wiki/Wireshark">Wireshark</a> or Ethereal as it was called at the time which was complete overkill, mostly used for network trouble shooting and grabs all TCP/UDP packets which is information overload, all we want is HTTP data. Then I think I used the LiveHTTPheaders addon for Firefox which was pretty limited. Then a Java program called Burpsuite which was pretty powerful but I ran into a problem trying to automate myspace myads submissions, trying to figure out what HTTP the myads flash file was sending over HTTPS. I ran the gamut of every proxy tool out there until I came across <a href="http://www.charlesproxy.com/">Charles Web Proxy</a>.</p>
<p>It&#8217;s basically the best out there. It sits as a proxy between the web and your browser, grabbing all data as it comes in. This usually causes problems with SSL but it has a custom SSL cert that you manually <a href="http://www.charlesproxy.com/documentation/using-charles/ssl-certificates/">add to your browser</a> that lets you log HTTPS data with no warnings. It can grab Flash traffic as it seems to work as a Windows proxy, not just a browser one. It presents HTTP data many different ways so you can understand what&#8217;s going on quicker. For example, a multipart form upload is presented as the the raw HTTP data sent, just the headers, just the cookies, the text body and all the form fields. I won&#8217;t list all the features as they&#8217;re all listed on the site. If you&#8217;re using any other tool for automation/scraping, you&#8217;re wasting time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.georgiecasey.com/2010/02/15/charles-web-proxy-review/feed/</wfw:commentRss>
		</item>
		<item>
		<title>php curl debugging - seeing the exact http request headers sent by curl</title>
		<link>http://www.georgiecasey.com/2010/02/13/php-curl-debugging-seeing-the-exact-http-request-headers-sent-by-curl/</link>
		<comments>http://www.georgiecasey.com/2010/02/13/php-curl-debugging-seeing-the-exact-http-request-headers-sent-by-curl/#comments</comments>
		<pubDate>Sat, 13 Feb 2010 03:57:27 +0000</pubDate>
		<dc:creator>Georgie Casey</dc:creator>
		
		<category><![CDATA[kOM-PUT-ER]]></category>
<category>curl</category><category>header</category><category>http</category><category>kOM PUT ER</category><category>out</category><category>outgoing</category><category>php</category><category>request</category><category>sent</category>
		<guid isPermaLink="false">http://www.georgiecasey.com/2010/02/13/php-curl-debugging-seeing-the-exact-http-request-headers-sent-by-curl/</guid>
		<description><![CDATA[In my many of years of php/curl use, I&#8217;ve hammered my head off my table countless times trying to debug scripts that weren&#8217;t emulating the browser like it was supposed to. This was pretty hard without seeing the exact HTTP request header sent by cURL each session, but this is possible now from PHP 5.1.3
Use [...]]]></description>
			<content:encoded><![CDATA[<p>In my many of years of php/curl use, I&#8217;ve hammered my head off my table countless times trying to debug scripts that weren&#8217;t emulating the browser like it was supposed to. This was pretty hard without seeing the exact HTTP request header sent by cURL each session, but this is possible now from PHP 5.1.3</p>
<p>Use the <a href="http://ie.php.net/manual/en/function.curl-getinfo.php">curl_getinfo</a> php function with the CURLINFO_HEADER_OUT option but make sure to set option CURLINFO_HEADER_OUT to true as a curl option.</p>
<p><code>               $ch = curl_init("http://www.google.com");<br />
                curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);<br />
                curl_setopt($ch, CURLINFO_HEADER_OUT, true);<br />
                $get = curl_exec($ch);<br />
                $info=curl_getinfo($ch,CURLINFO_HEADER_OUT);<br />
				var_dump($info);</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.georgiecasey.com/2010/02/13/php-curl-debugging-seeing-the-exact-http-request-headers-sent-by-curl/feed/</wfw:commentRss>
		</item>
		<item>
		<title>raygun 4play interview video</title>
		<link>http://www.georgiecasey.com/2009/12/10/raygun-4play-interview-video/</link>
		<comments>http://www.georgiecasey.com/2009/12/10/raygun-4play-interview-video/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 05:34:20 +0000</pubDate>
		<dc:creator>Georgie Casey</dc:creator>
		
		<category><![CDATA[Funnies]]></category>
<category>4play</category><category>Funnies</category><category>guardian</category><category>interview</category><category>lack of self awareness</category><category>nme</category><category>raygun</category><category>shite band</category><category>sony</category><category>video</category>
		<guid isPermaLink="false">http://www.georgiecasey.com/2009/12/10/raygun-4play-interview-video/</guid>
		<description><![CDATA[I remember seeing this ridiculous interview for a band called Raygun on Graham Linehan&#8217;s blog a few months. I went looking for it again and noticed Sony had forced most copies to be taken down! But I found this one on Youtube and decided to post on my site for safekeeping. My favourite bit is [...]]]></description>
			<content:encoded><![CDATA[<p>I remember seeing this ridiculous interview for a band called Raygun on Graham Linehan&#8217;s blog a few months. I went looking for it again and noticed Sony had forced most copies to be taken down! But I found this one on Youtube and decided to post on my site for safekeeping. My favourite bit is &#8216;they couldn&#8217;t even find me a job in a record store&#8217;. LOL. Sums up this coddled generation.</p>
<p><embed width="500" height="350" flashvars="&#038;file=http://www.georgiecasey.com/wp-content/uploads/2009/12/Raygun_alternative_4play_promo.mp4&#038;autostart=true&#038;height=350&#038;width=500" allowscriptaccess="always" allowfullscreen="true" src="http://www.georgiecasey.com/flvplayer.swf"></embed></p>
]]></content:encoded>
			<wfw:commentRss>http://www.georgiecasey.com/2009/12/10/raygun-4play-interview-video/feed/</wfw:commentRss>
		</item>
		<item>
		<title>how to copy a website with httrack on linux</title>
		<link>http://www.georgiecasey.com/2009/08/12/how-to-copy-a-website-with-httrack-on-linux/</link>
		<comments>http://www.georgiecasey.com/2009/08/12/how-to-copy-a-website-with-httrack-on-linux/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 01:15:47 +0000</pubDate>
		<dc:creator>Georgie Casey</dc:creator>
		
		<category><![CDATA[kOM-PUT-ER]]></category>
<category>copy websites</category><category>httrack</category><category>kOM PUT ER</category>
		<guid isPermaLink="false">http://www.georgiecasey.com/2009/08/12/how-to-copy-a-website-with-httrack-on-linux/</guid>
		<description><![CDATA[This is more for my own reference than anything. Say you see a flog on the intertubes and want to rip it and stick up for affiliate links. How to do it quickly on Linux? I used to use wget but it sucked. httrack  is much better.
httrack "http://www.techcrunh.com/" -N1 -O "/home/techcrunch_rip/public_html" +techcrunch.com/* +crunchgear.com/* -v
This [...]]]></description>
			<content:encoded><![CDATA[<p>This is more for my own reference than anything. Say you see a flog on the intertubes and want to rip it and stick up for affiliate links. How to do it quickly on Linux? I used to use wget but it sucked. <a href="http://www.httrack.com">httrack </a> is much better.</p>
<p><code>httrack "http://www.techcrunh.com/" -N1 -O "/home/techcrunch_rip/public_html" +techcrunch.com/* +crunchgear.com/* -v</code></p>
<p>This will rip the homepage of techcrunch and stick it in the folder specified by -O. URL filters next ensure it only downloads files from certain domains. The -N1 argument is the most important, it ensures htttrack sticks all images, css in one directory instead of creating loads of directories. Very handy.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.georgiecasey.com/2009/08/12/how-to-copy-a-website-with-httrack-on-linux/feed/</wfw:commentRss>
		</item>
		<item>
		<title>oxegen 2009 stage times released</title>
		<link>http://www.georgiecasey.com/2009/07/01/oxegen-2009-stage-times-released/</link>
		<comments>http://www.georgiecasey.com/2009/07/01/oxegen-2009-stage-times-released/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 19:16:49 +0000</pubDate>
		<dc:creator>Georgie Casey</dc:creator>
		
		<category><![CDATA[General Stuff]]></category>
<category>2009</category><category>festival</category><category>General Stuff</category><category>music</category><category>oxegen</category><category>oxygen</category><category>stage times</category>
		<guid isPermaLink="false">http://www.georgiecasey.com/2009/07/01/oxegen-2009-stage-times-released/</guid>
		<description><![CDATA[
Taken from Oxegen forum. Considering going on the Saturday myself.
]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.georgiecasey.com/wp-content/uploads/2009/07/oxegen_2009_stage_times.jpg" alt="Oxegen 2009 Stage Times" /></p>
<p>Taken from Oxegen forum. Considering going on the Saturday myself.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.georgiecasey.com/2009/07/01/oxegen-2009-stage-times-released/feed/</wfw:commentRss>
		</item>
		<item>
		<title>schalk burger eye gouge on lions luke fitzgerald</title>
		<link>http://www.georgiecasey.com/2009/06/27/schalk-burger-eye-gouge-on-lions-luke-fitzgerald/</link>
		<comments>http://www.georgiecasey.com/2009/06/27/schalk-burger-eye-gouge-on-lions-luke-fitzgerald/#comments</comments>
		<pubDate>Sat, 27 Jun 2009 16:18:20 +0000</pubDate>
		<dc:creator>Georgie Casey</dc:creator>
		
		<category><![CDATA[Rugby]]></category>
<category>burger</category><category>eye gouge</category><category>lions</category><category>luke fitzgerald</category><category>rugby</category><category>schalk</category>
		<guid isPermaLink="false">http://www.georgiecasey.com/2009/06/27/schalk-burger-eye-gouge-on-lions-luke-fitzgerald/</guid>
		<description><![CDATA[Should have been red carded the scumbag.





]]></description>
			<content:encoded><![CDATA[<p>Should have been red carded the scumbag.</p>
<object width="425" height="344">
<param name="movie" value="http://www.youtube.com/v/-NYONDg4J_E&#038;hl=en&#038;fs=1&#038;"></param>
<param name="allowFullScreen" value="true"></param>
<param name="allowscriptaccess" value="always"></param>
<p><embed src="http://www.youtube.com/v/-NYONDg4J_E&#038;hl=en&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object>
]]></content:encoded>
			<wfw:commentRss>http://www.georgiecasey.com/2009/06/27/schalk-burger-eye-gouge-on-lions-luke-fitzgerald/feed/</wfw:commentRss>
		</item>
		<item>
		<title>irish phonebook on your iphone</title>
		<link>http://www.georgiecasey.com/2009/06/03/irish-phonebook-on-your-iphone/</link>
		<comments>http://www.georgiecasey.com/2009/06/03/irish-phonebook-on-your-iphone/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 12:29:46 +0000</pubDate>
		<dc:creator>Georgie Casey</dc:creator>
		
		<category><![CDATA[kOM-PUT-ER]]></category>
<category>app</category><category>goldenpages</category><category>iphone</category><category>irish</category><category>kOM PUT ER</category><category>phonebook</category>
		<guid isPermaLink="false">http://www.georgiecasey.com/2009/06/03/irish-phonebook-on-your-iphone/</guid>
		<description><![CDATA[I was looking for an iPhone app a while ago to search Irish business phonenumbers and couldn&#8217;t find one, so wrote one myself. And while I was waiting for Apple to approve my app, a different phonebook app was released with better user interface! BUT it just searches the goldenpages website so you need a [...]]]></description>
			<content:encoded><![CDATA[<p>I was looking for an iPhone app a while ago to search Irish business phonenumbers and couldn&#8217;t find one, so wrote one myself. And while I was waiting for Apple to approve my app, a different phonebook app was released with better user interface! BUT it just searches the goldenpages website so you need a net connection. I scraped the Goldenpages website and stuck it in the app, so no net connectio needed, handy when you quickly need a number.</p>
<p><a href="itms://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=316465577&#038;mt=8&#038;s=143441">Check it out here</a>, only e2.39 to buy</p>
]]></content:encoded>
			<wfw:commentRss>http://www.georgiecasey.com/2009/06/03/irish-phonebook-on-your-iphone/feed/</wfw:commentRss>
		</item>
		<item>
		<title>diggbar</title>
		<link>http://www.georgiecasey.com/2009/04/02/diggbar/</link>
		<comments>http://www.georgiecasey.com/2009/04/02/diggbar/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 20:27:38 +0000</pubDate>
		<dc:creator>Georgie Casey</dc:creator>
		
		<category><![CDATA[kOM-PUT-ER]]></category>
<category>kOM PUT ER</category>
		<guid isPermaLink="false">http://www.georgiecasey.com/2009/04/02/diggbar/</guid>
		<description><![CDATA[Diggbar just release which is a URL shortening service as well with full, do-follow links. Wonder how long it lasts.
]]></description>
			<content:encoded><![CDATA[<p>Diggbar just release which is a URL shortening service as well with full, <a href="http://digg.com/u1gz">do-follow links</a>. Wonder how long it lasts.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.georgiecasey.com/2009/04/02/diggbar/feed/</wfw:commentRss>
		</item>
		<item>
		<title>php facebook ads api</title>
		<link>http://www.georgiecasey.com/2009/02/04/php-facebook-ads-api/</link>
		<comments>http://www.georgiecasey.com/2009/02/04/php-facebook-ads-api/#comments</comments>
		<pubDate>Wed, 04 Feb 2009 02:50:11 +0000</pubDate>
		<dc:creator>Georgie Casey</dc:creator>
		
		<category><![CDATA[kOM-PUT-ER]]></category>
<category>api</category><category>facebook ads</category><category>for sale</category><category>kOM PUT ER</category><category>php</category>
		<guid isPermaLink="false">http://www.georgiecasey.com/2009/02/04/php-facebook-ads-api/</guid>
		<description><![CDATA[Sick of waiting for the facebook ads API? Download my PHP one today. Features include:

Create ads from PHP script loop. You can modify any paramaters you want and submit 100s of ads an hour but that will prob get your account banned
Pull info from your DB to submit ads. eg You could pull artist names [...]]]></description>
			<content:encoded><![CDATA[<p>Sick of waiting for the facebook ads API? Download my PHP one today. Features include:</p>
<ul>
<li>Create ads from PHP script loop. You can modify any paramaters you want and submit 100s of ads an hour but that will prob get your account banned</li>
<li>Pull info from your DB to submit ads. eg You could pull artist names and submit loads of ringtone ads using each individual artist</li>
<li>I provide a mysql table of all US cities you can target with Facebook, along with the user count for each city. So you can loop through all these and create targetted ads to every city in the US. eg &#8216;Meet Atlanta, GA Women&#8217; today targetted at just Atlanta, GA demo. This is sure to improve CTR and lower your CPC.</li>
<li>Support for proxies</li>
</ul>
<p>
This is the code you use to create ads. <code>#!/usr/local/bin/php<br />
<?php<br />
// Put your mysql details in the follwing line<br />
$mysql= new mysqli("localhost","username","password","db");<br />
include("facebook.php");<br />
$facebook = new Facebook();<br />
$facebook->setLogin(&#8221;yourfacebookemail&#8221;,&#8221;yourfbpassword&#8221;);<br />
$facebook->getHomeCookie();<br />
$facebook->signIn();<br />
$facebook->getAdsHome();<br />
$facebook->locationtype=&#8221;city&#8221;;<br />
// The script doesn&#8217;t support creating campaings yet so you need to get this from ads Manager. On the create an ad page, the select box at the bottom where you pick your campaign, just go into the HTML source and find the value for the campaign you want to use.<br />
$facebook->campaignid=&#8221;campaignid&#8221;;<br />
// Not sure if these 2 values make a difference. No harm in setting them right.<br />
$facebook->campaignbudget=&#8221;500.00&#8243;;<br />
$facebook->dailybudget=&#8221;500.00&#8243;;</p>
<p>$query1=$mysql->query(&#8221;SELECT * FROM us_cities WHERE done=&#8217;no&#8217; ORDER BY usercount DESC&#8221;);<br />
while ($result1=$query1->fetch_assoc()) {<br />
$insertid=$result1[&#8221;id&#8221;];<br />
$fbid=$result1[&#8221;facebook_id&#8221;];<br />
$city=$result1[&#8221;city&#8221;];<br />
preg_match(&#8221;/(.+?), .+?/&#8221;,$city,$justcity);<br />
// this uploads image used in ad.<br />
$facebook->uploadFacebookImage(&#8221;image.jpg&#8221;);<br />
// this actually creates and approves the ad. works like this createAd(ad name in ad manager, ad url without the http://, ad title (keep less than 25), ad body (keep less than 135), country, min age, max age, cpc bid, city id, gender targeted, education targeted) $JUSTCITY[1] has the name of just the city like Atlanta, $city has the state as well eg Atlanta, GA<br />
$facebook->createAd($city,&#8221;www.yoururl.com/index.html?id={$insertid}&#8221;,&#8221;{$justcity[1]} Free Grants&#8221;,&#8221;Our records show 100s of unclaimed grants issued by Pres. Obama available to {$city} residents. You need to claim now.&#8221;,&#8221;US&#8221;,&#8221;21&#8243;,&#8221;25&#8243;,&#8221;0.39&#8243;,$fbid,&#8221;male&#8221;,&#8221;all&#8221;);<br />
$query2=$mysql->query(&#8221;UPDATE us_cities SET done=&#8217;yes&#8217; WHERE id=&#8217;{$insertid}&#8217; LIMIT 1&#8243;);<br />
// this is the value of seconds waited before submitting each ad. suggest keep it at 15 unless you want your account banned<br />
sleep(15);<br />
}<br />
?><br />
</code></p>
<p>Here&#8217;s a screenshot of the facebook cities table:<img src="http://www.georgiecasey.com/sell_cities.gif" alt="Screenshot of phpMyAdmin" />
</p>
<p>Price is $200. If you want a copy, paypal the cash to filmfind@eircom.net and I&#8217;ll email you a copy within a few hours.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.georgiecasey.com/2009/02/04/php-facebook-ads-api/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Global Media Pro - BUYER BEWARE</title>
		<link>http://www.georgiecasey.com/2009/01/21/global-media-pro-buyer-beware/</link>
		<comments>http://www.georgiecasey.com/2009/01/21/global-media-pro-buyer-beware/#comments</comments>
		<pubDate>Wed, 21 Jan 2009 19:58:52 +0000</pubDate>
		<dc:creator>Georgie Casey</dc:creator>
		
		<category><![CDATA[General Stuff]]></category>
<category>General Stuff</category><category>globalmediapro</category><category>ripoff</category><category>scam</category>
		<guid isPermaLink="false">http://www.georgiecasey.com/2009/01/21/global-media-pro-buyer-beware/</guid>
		<description><![CDATA[Do not buy any gear off globalmediapro, they&#8217;re dodgy as fuck. You pay them through IBAN bank transfer which is European, yet goods are shipped from locations all around the world, Singapore, China and Japan. They claim to be 3 or 4 days delivery but it took us 3 weeks. When the goods arrived by [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Do not</strong> buy any gear off <a rel="nofollow" href="http://www.globalmediapro.com/">globalmediapro</a>, they&#8217;re dodgy as fuck. You pay them through IBAN bank transfer which is European, yet goods are shipped from locations all around the world, Singapore, China and Japan. They claim to be 3 or 4 days delivery but it took us 3 weeks. When the goods arrived by courier, we&#8217;d to pay nearly double the price in customs to get the stuff which we thought were coming from the EU.</p>
<p>We emailed and phoned to complain but with no response. They&#8217;re dodgy, do not deal with them. Loads of <a href="http://www.resellerratings.com/forum/merchant-discussion-shopping-advice/128467-globalmediapro-very-careful.html">people</a> having problems with them as well. And word is they threaten to sue people who complain on forums.</p>
<p>And if Globalmediapro is reading this and thinking of suing, you can find my address by whois-ing this domain. Thanks</p>
]]></content:encoded>
			<wfw:commentRss>http://www.georgiecasey.com/2009/01/21/global-media-pro-buyer-beware/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
