User Shabbyrobe - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T01:29:42Zhttp://stackoverflow.com/feeds/user/15004http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/900677/how-do-i-safely-perform-money-related-calculations-in-php2How do I safely perform money related calculations in PHP?Shabbyrobe2009-05-23T02:07:23Z2009-11-24T03:52:19Z
<p>I'm working on a few report output scripts that need to do some rudimentary calculations on some money values.</p>
<p>I am aware of the limitations of floating point arithmetic for this purpose, however the input values are all in a decimal format, so if I use the arithmetic operators on them PHP will cast them to floats.</p>
<p>So what is the best way to handle the numbers? Should I use <a href="http://au2.php.net/bc" rel="nofollow">BCMath</a>? Is there something akin to <a href="http://msdn.microsoft.com/en-us/library/system.decimal.aspx" rel="nofollow">Decimal</a> in .NET? Or is it safe to use the arithmetic operators if I cast back to int?</p>
http://stackoverflow.com/questions/99350/php-associative-arrays-to-and-from-xml2PHP Associative arrays to and from XML Shabbyrobe2008-09-19T03:39:11Z2009-11-21T20:03:13Z
<p>Is there an easy way to marshal a PHP associative array to and from XML? For example, if I have the following array:</p>
<pre><code>$items = array("1", "2",
array(
"item3.1" => "3.1",
"item3.2" => "3.2"
"isawesome" => true
)
);
</code></pre>
<p>How would I turn it into something similar to the following XML in as few lines as possible, then back again:</p>
<pre><code><items>
<item>1</item>
<item>2</item>
<item>
<item3_1>3.1</item3_1>
<item3_2>3.2</item3_2>
<isawesome>true</isawesome>
</item>
</items>
</code></pre>
<p>I don't really care if I have to change the array structure a bit or if the XML that comes out is different to the above example. I've been trying to work with PHP's <a href="http://au.php.net/manual/en/book.xmlreader.php" rel="nofollow">XMLReader</a> and <a href="http://au.php.net/manual/en/book.xmlwriter.php" rel="nofollow">XMLWriter</a>, but the documentation is so poor and the code I've produced as a consequence looks nothing like what I feel it should look like:</p>
<pre><code>$xml = SomeXMLWriter::writeArrayToXml($items);
$array = SomeXMLWriter::writeXmlToArray($xml);
</code></pre>
<p>Does it really have to be any harder than that to get a basic, raw XML dump of a PHP array without writing my own custom class?</p>
<p>@<a href="http://stackoverflow.com/questions/99350/php-associative-arrays-to-and-from-xml#99367">cruizer</a>,
I try to avoid PEAR. In addition to the configuration headaches I've had with it, I've never stuck with any of the packages I've ever used from it.</p>
<p>@<a href="http://stackoverflow.com/questions/99350/php-associative-arrays-to-and-from-xml#99378">Oddmund</a> & <a href="http://stackoverflow.com/questions/99350/php-associative-arrays-to-and-from-xml#109886">Jared</a>
Can you please provide some examples of using SimpleXML to do what I am trying to do?</p>
http://stackoverflow.com/questions/111129/is-querying-the-mysql-informationschema-database-a-good-way-to-find-related-tabl3Is querying the MySQL information_schema database a good way to find related tables?Shabbyrobe2008-09-21T14:33:59Z2009-10-25T11:50:04Z
<p>I have a table which is referenced by foreign keys on many other tables. In my program if I want to delete one of these rows I need to first search for dependencies and present them to the user - "This object depends on x from table y, z from table q, etc". I also expect the number of tables which have foreign keys to this table to grow considerably over time. </p>
<p>Is the information_schema database a good way to do a search for all dependencies? I tried to query it to retrieve a list of all tables which have foreign keys to my table, then iterate over the result and select all entries from each table where the foreign key value matches the value the user is trying to delete. The query I have is as follows:</p>
<pre><code>SELECT * FROM `KEY_COLUMN_USAGE` kcu
LEFT JOIN TABLE_CONSTRAINTS tc
ON tc.CONSTRAINT_NAME = kcu.CONSTRAINT_NAME
WHERE tc.CONSTRAINT_TYPE='FOREIGN KEY'
AND (kcu.REFERENCED_TABLE_SCHEMA='db')
AND (kcu.REFERENCED_TABLE_NAME = 'testtable')
</code></pre>
<p>which works perfectly for determining the tables which I need to search, however it is <em>very</em> slow. The query takes around 1 to 2 seconds at best to execute on my development machine, which will reduce a lot when I run it on my production server, but will still be quite slow.</p>
<p>I need to know if it's a bad idea to use information_schema in this way. If not, how I can extract better performance from the query. Is the query I'm using solid or is there a better way to do it? If so, how best should I tackle this problem from a maintainability perspective.</p>
http://stackoverflow.com/questions/1575771/relative-urls-in-actionscript-30Relative URLs in Actionscript 3Shabbyrobe2009-10-16T00:02:03Z2009-10-16T15:30:10Z
<p>I have a flash movie using Actionscript 3 with some buttons that open links to new pages. Here is the code I have for redirecting to the new page:</p>
<pre><code>myButton.addEventListener(MouseEvent.CLICK, function(e:MounseEvent) {
var request:URLRequest = new URLRequest('http://www.example.com/page2.html');
navigateToURL(request, "_top");
});
</code></pre>
<p>It works fine on my production server with the full url including domain, but when I change it to this:</p>
<pre><code>var request:URLRequest = new URLRequest('page2.html');
</code></pre>
<p>it no longer works in production. What am I missing here? I would like to not have to encode the entire URL into the movie.</p>
http://stackoverflow.com/questions/1309991/how-to-set-smtplib-sending-timeout-in-python-2-41How to set smtplib sending timeout in python 2.4?Shabbyrobe2009-08-21T03:43:37Z2009-08-21T04:20:07Z
<p>I'm having problems with smtplib tying up my program when email sending fails, because a timeout is never raised. The server I'm using does not and will never have python greater than 2.4, so I can't make use of the timeout argument to the SMTP constructor in later versions of python.</p>
<p><a href="http://www.python.org/doc/2.4/lib/module-smtplib.html" rel="nofollow">Python 2.4's</a> docs show that the SMTP class does not have the 'timeout' argument:</p>
<pre><code>class SMTP([host[, port[, local_hostname]]])
</code></pre>
<p>So how do I simulate this functionality?</p>
http://stackoverflow.com/questions/1164192/equivalent-of-simpletest-partial-mocks-in-phpunit2Equivalent of SimpleTest "partial mocks" in PHPUnit?Shabbyrobe2009-07-22T09:50:18Z2009-07-27T05:48:25Z
<p>I'm trying to migrate a bunch of tests from SimpleTest to PHPUnit and I was wondering if there is an equivalent for SimpleTest's <a href="http://www.simpletest.org/en/partial%5Fmocks%5Fdocumentation.html" rel="nofollow">partial mocks</a>.</p>
<p>Update: I can't seem to find anything in the docs which suggests that this feature is available, but it occurred to me that I could just use a subclass. Is this a good or bad idea?</p>
<pre><code>class StuffDoer {
protected function doesLongRunningThing() {
sleep(10);
return "stuff";
}
public function doStuff() {
return $this->doesLongRunningThing();
}
}
class StuffDoerTest {
protected function doesLongRunningThing() {
return "test stuff";
}
}
class StuffDoerTestCase extends PHPUnit_Framework_TestCase {
public function testStuffDoer() {
$sd = new StuffDoerTest();
$result = $sd->doStuff();
$this->assertEquals($result, "test stuff");
}
}
</code></pre>
http://stackoverflow.com/questions/1118006/most-pythonic-way-of-organising-class-attributes-constructor-arguments-and-sub6Most "pythonic" way of organising class attributes, constructor arguments and subclass constructor defaults?Shabbyrobe2009-07-13T06:54:28Z2009-07-13T07:24:39Z
<p>Being relatively new to Python 2, I'm uncertain how best to organise my class files in the most 'pythonic' way. I wouldn't be asking this but for the fact that Python seems to have quite a few ways of doing things that are very different to what I have come to expect from the languages I am used to.</p>
<p>Initially, I was just treating classes how I'd usually treat them in C# or PHP, which of course made me trip up all over the place when I eventually discovered the mutable values gotcha:</p>
<pre><code>class Pants(object):
pockets = 2
pocketcontents = []
class CargoPants(Pants):
pockets = 200
p1 = Pants()
p1.pocketcontents.append("Magical ten dollar bill")
p2 = CargoPants()
print p2.pocketcontents
</code></pre>
<p>Yikes! Didn't expect that!</p>
<p>I've spent a lot of time searching the web and through some source for other projects for hints on how best to arrange my classes, and one of the things I noticed was that people seem to declare a lot of their instance variables - mutable or otherwise - in the constructor, and also pile the default constructor arguments on quite thickly. </p>
<p>After developing like this for a while, I'm still left scratching my head a bit about the unfamiliarity of it. Considering the lengths to which the python language goes to to make things seem more intuitive and obvious, it seems outright odd to me in the few cases where I've got quite a lot of attributes or a lot of default constructor arguments, especially when I'm subclassing:</p>
<pre><code>class ClassWithLotsOfAttributes(object):
def __init__(self, jeebus, coolness='lots', python='isgoodfun',
pythonic='nebulous', duck='goose', pants=None,
magictenbucks=4, datawad=None, dataload=None,
datacatastrophe=None):
if pants is None: pants = []
if datawad is None: datawad = []
if dataload is None: dataload = []
if datacatastrophe is None: datacatastrophe = []
self.coolness = coolness
self.python = python
self.pythonic = pythonic
self.duck = duck
self.pants = pants
self.magictenbucks = magictenbucks
self.datawad = datawad
self.dataload = dataload
self.datacatastrophe = datacatastrophe
self.bigness = None
self.awesomeitude = None
self.genius = None
self.fatness = None
self.topwise = None
self.brillant = False
self.strangenessfactor = 3
self.noisiness = 12
self.whatever = None
self.yougettheidea = True
class Dog(ClassWithLotsOfAttributes):
def __init__(self, coolness='lots', python='isgoodfun', pythonic='nebulous', duck='goose', pants=None, magictenbucks=4, datawad=None, dataload=None, datacatastrophe=None):
super(ClassWithLotsOfAttributes, self).__init__(coolness, python, pythonic, duck, pants, magictenbucks, datawad, dataload, datacatastrophe)
self.noisiness = 1000000
def quack(self):
print "woof"
</code></pre>
<p>Mild silliness aside (I can't really help myself when cooking up these artificial example classes), assuming I have a real-world need for a set of classes with this many attributes, I suppose my questions are:</p>
<ul>
<li><p>What is the most, uhh, 'pythonic' way of declaring a class with that many attributes? Is it best to put them against the class if the default is immutable, ala Pants.pockets, or is it better to put them in the constructor, ala ClassWithLotsOfAttributes.noisiness? </p></li>
<li><p>Is there a way to eliminate the need to redeclare the defaults for all of the subclass constructor arguments, as in Dog.__init__? Should I even be including this many arguments with defaults anyway?</p></li>
</ul>
http://stackoverflow.com/questions/1036409/recursively-convert-python-object-graph-to-dictionary0Recursively convert python object graph to dictionaryShabbyrobe2009-06-24T04:30:36Z2009-07-13T07:06:27Z
<p>I'm trying to convert the data from a simple object graph into a dictionary. I don't need type information or methods and I don't need to be able to convert it back to an object again. </p>
<p>I found <a href="http://stackoverflow.com/questions/61517/python-dictionary-from-an-objects-fields">this question about creating a dictionary from an object's fields</a>, but it doesn't do it recursively.</p>
<p>Being relatively new to python, I'm concerned that my solution may be ugly, or unpythonic, or broken in some obscure way, or just plain old NIH.</p>
<p>My first attempt appeared to work until I tried it with lists and dictionaries, and it seemed easier just to check if the object passed had an internal dictionary, and if not, to just treat it as a value (rather than doing all that isinstance checking). My previous attempts also didn't recurse into lists of objects:</p>
<pre><code>def todict(obj):
if hasattr(obj, "__iter__"):
return [todict(v) for v in obj]
elif hasattr(obj, "__dict__"):
return dict([(key, todict(value))
for key, value in obj.__dict__.iteritems()
if not callable(value) and not key.startswith('_')])
else:
return obj
</code></pre>
<p>This seems to work better and doesn't require exceptions, but again I'm still not sure if there are cases here I'm not aware of where it falls down.</p>
<p>Any suggestions would be much appreciated.</p>
http://stackoverflow.com/questions/1036409/recursively-convert-python-object-graph-to-dictionary/1118038#11180380Answer by Shabbyrobe for Recursively convert python object graph to dictionaryShabbyrobe2009-07-13T07:06:27Z2009-07-13T07:06:27Z<p>An amalgamation of my own attempt and clues derived from Anurag Uniyal and Lennart Regebro's answers works best for me:</p>
<pre><code>def todict(obj, classkey=None):
if isinstance(obj, dict):
for k in obj.keys():
obj[k] = todict(obj[k], classkey)
return obj
elif hasattr(obj, "__iter__"):
return [todict(v, classkey) for v in obj]
elif hasattr(obj, "__dict__"):
data = dict([(key, todict(value, classkey))
for key, value in obj.__dict__.iteritems()
if not callable(value) and not key.startswith('_')])
if classkey is not None and hasattr(obj, "__class__"):
data[classkey] = obj.__class__.__name__
return data
else:
return obj
</code></pre>
http://stackoverflow.com/questions/1024143/how-to-stop-python-parseqs-from-parsing-single-values-into-lists0How to stop Python parse_qs from parsing single values into lists?Shabbyrobe2009-06-21T15:23:35Z2009-06-21T15:36:54Z
<p>In python 2.6, the following code:</p>
<pre><code>import urlparse
qsdata = "test=test&test2=test2&test2=test3"
qs = urlparse.parse_qs(qsdata)
print qs
</code></pre>
<p>Gives the following output:</p>
<pre><code>{'test': ['test'], 'test2': ['test2', 'test3']}
</code></pre>
<p>Which means that even though there is only one value for test, it is still being parsed into a list. Is there a way to ensure that if there's only one value, it is not parsed into a list, so that the result would look like this?</p>
<pre><code>{'test': 'test', 'test2': ['test2', 'test3']}
</code></pre>
http://stackoverflow.com/questions/975065/sending-email-using-google-apps-smtp-server-in-python-2-40Sending email using google apps SMTP server in Python 2.4Shabbyrobe2009-06-10T11:36:35Z2009-06-11T12:53:39Z
<p>I'm having difficulty getting python 2.4 to connect to gmail's smtp server. My below script doesn't ever get past "connection". I realise there is an SMTP_SSL class in later versions of python and it seems to work fine, but the production environment I have to deal with only has - and likely will only ever have - python 2.4.</p>
<pre><code>print "connecting"
server = smtplib.SMTP("smtp.gmail.com", 465)
print "ehlo"
server.ehlo()
print "start tls"
server.starttls()
print "ehlo"
server.ehlo()
print "log in"
if self.smtpuser:
server.login(smtpuser, smtppassword)
</code></pre>
<p>Does anybody have any advice for getting the above code to work with python 2.4?</p>
http://stackoverflow.com/questions/913913/using-poll-on-file-like-object-returned-by-urllib2-urlopen0Using poll on file-like object returned by urllib2.urlopen()?Shabbyrobe2009-05-27T04:22:12Z2009-05-27T05:06:57Z
<p>I've run into the bug described at <a href="http://bugs.python.org/issue1327971" rel="nofollow">http://bugs.python.org/issue1327971</a> while trying to poll a file-like object returned by urllib2.urlopen(). </p>
<p>Unfortunately, being relatively new to Python, I can't actually determine from the responses how to get around the issue as they seem mostly geared towards fixing the bug, rather than hacking the code that triggers it to work.</p>
<p>Here is a distilled version of my code that throws the error:</p>
<pre><code>import urllib2, select
if __name__ == "__main__":
p = select.poll()
url = "http://localhost/"
fd = urllib2.urlopen(url)
p.register(fd, select.POLLIN | select.POLLERR | select.POLLHUP | select.POLLNVAL)
result = p.poll()
for fd, event in result:
if event == select.POLLIN:
while 1:
buf = fd.read(4096)
if not buf:
break
print buf
</code></pre>
<p>And the error which is raised when I run it on python 2.6:</p>
<pre><code>Traceback (most recent call last):
File "/home/shab/py/test.py", line 9, in <module>
p.register(fd, select.POLLIN | select.POLLERR | select.POLLHUP | select.POLLNVAL)
File "/usr/lib/python2.6/socket.py", line 287, in fileno
return self._sock.fileno()
AttributeError: HTTPResponse instance has no attribute 'fileno'
</code></pre>
<p>Update: I do not want to modify the system libraries.</p>
http://stackoverflow.com/questions/905189/why-does-sys-exit-not-exit-when-called-inside-a-thread-in-python5Why does sys.exit() not exit when called inside a thread in Python?Shabbyrobe2009-05-25T03:10:44Z2009-05-25T11:32:18Z
<p>This could be a stupid question, but I'm testing out some of my assumptions about Python and I'm confused as to why the following code snippet would not exit when called in the thread, but would exit when called in the main thread.</p>
<pre><code>import sys, time
from threading import Thread
def testexit():
time.sleep(5)
sys.exit()
print "post thread exit"
t = Thread(target = testexit)
t.start()
t.join()
print "pre main exit, post thread exit"
sys.exit()
print "post main exit"
</code></pre>
<p>The docs for sys.exit() state that the call should exit from Python. I can see from the output of this program that "post thread exit" is never printed, but the main thread just keeps on going even after the thread calls exit. </p>
<p>Is a separate instance of the interpreter being created for each thread, and the call to exit() is just exiting that separate instance? If so, how does the threading implementation manage access to shared resources? What if I did want to exit the program from the thread (not that I actually want to, but just so I understand)?</p>
http://stackoverflow.com/questions/897941/python-equivalent-of-phps-memorygetusage5Python equivalent of PHP's memory_get_usage()?Shabbyrobe2009-05-22T13:49:41Z2009-05-23T09:16:28Z
<p>I've already <a href="http://stackoverflow.com/questions/110259/python-memory-profiler">found the following question</a>, but I was wondering if there was a quicker and dirtier way of grabbing an estimate of how much memory the python interpreter is currently using for my script that doesn't rely on external libraries.</p>
<p>I'm coming from PHP and used to use <a href="http://au.php.net/memory%5Fget%5Fusage" rel="nofollow">memory_get_usage()</a> and <a href="http://au.php.net/memory%5Fget%5Fpeak%5Fusage" rel="nofollow">memory_get_peak_usage()</a> a lot for this purpose and I was hoping to find an equivalent.</p>
http://stackoverflow.com/questions/891335/php-vs/892483#8924830Answer by Shabbyrobe for PHP "" vs ''Shabbyrobe2009-05-21T11:34:42Z2009-05-21T11:34:42Z<p>See the "string output" section of <a href="http://phpbench.com/" rel="nofollow">The PHP Benchmark</a>...</p>
<p>Or just write a few crappy microtime loops and test them for yourself.</p>
<pre><code>ob_start();
$s = microtime(true);
for ($i=0; $i<10000; $i++)
echo 'Hello world, my name is '.$i."\n";
$end = microtime(true) - $s;
ob_end_clean();
echo $end;
</code></pre>
http://stackoverflow.com/questions/881388/what-is-the-reason-for-performing-a-double-fork-when-creating-a-daemon5What is the reason for performing a double fork when creating a daemon?Shabbyrobe2009-05-19T07:25:18Z2009-05-21T08:12:44Z
<p>I'm trying to create a daemon in python. I've found the <a href="http://stackoverflow.com/questions/473620/how-do-you-create-a-daemon-in-python">following question</a>, which has some good resources in it which I am currently following, but I'm curious as to why a double fork is necessary. I've scratched around google and found plenty of resources declaring that one is necessary, but not why.</p>
<p>Edit: Thanks for the excellent answers. Some mention that it is to prevent the daemon from acquiring a controlling terminal. How would it do this without the second fork? What are the repercussions?</p>
http://stackoverflow.com/questions/886201/what-causes-this-error-in-my-php-sql-query/886216#8862162Answer by Shabbyrobe for What causes this error in my PHP SQL query?Shabbyrobe2009-05-20T05:05:24Z2009-05-20T05:38:24Z<p>Your mysqli_query command will be returning false. Use <a href="http://php.net/mysqli%5Ferror" rel="nofollow">mysqli_error</a> to diagnose the problem.</p>
<pre><code>if (!mysqli_query($link, $query)) {
printf("Errormessage: %s\n", mysqli_error($link));
}
</code></pre>
<p>You will need to do the above check to determine for certain, but the problem with your query could relate to this section, which does not quote what appears to be a string value:</p>
<pre><code>if ($form_member_name !=0) {
$query .= "AND members.member_name = $form_member_name ";
}
</code></pre>
<p>$form_member_name should be surrounded with single quotes at the very least, but you should <em>definitely</em> be using parameterised statements for this rather than embedding unsanitised variables into your queries as you are leaving yourself wide open to a <a href="http://en.wikipedia.org/wiki/SQL%5Finjection" rel="nofollow">SQL injection attack</a>. Here is a revised version, but bear in mind I'm a bit rusty with mysqli and can't test it without your DB:</p>
<pre><code>$query = "
SELECT
photos.photo_id, members.member_name, photos.photo_title, photos.photo_film,
photos.photo_height, photos.photo_width
FROM members, photos
WHERE members.member_id = photos.member_id
";
$types = "";
$params = array();
if ($form_photo_title !="") {
$query.= "AND photos.photo_title = ? ";
$types .= "s";
$params[] = $form_photo_title;
}
if ($form_member_name !=0) {
$query .= "AND members.member_name = ? ";
$types .= "s";
$params[] = $form_member_name;
}
if ($form_type !="") {
$query .= "AND photo.photo_film = ? ";
$types .= "s";
$params[] = $form_type;
}
if (!($statement = mysqli_prepare($link, $query)))
throw new Exception(mysqli_error($link));
// this tells the statement to substitute those question marks with each of
// the values in the $params array. this is done positionally, so the first
// question mark corresponds to the first element of the array, and so on.
// the $types array is just a string with an indication of the type of the
// value stored at each position in the array. if all three of the above
// clauses are applied, then $types will equal "sss", indicating that the
// first, second and third elements in $params are string types.
// worse still, because the parameters to the query are dynamic, we can't
// call mysqli_stmt_bind_param directly as it does not allow an array to be
// passed, so we have to call it dynamically using call_user_func_array!
// i really hate this about mysqli.
// if all three of your above query clauses are applied, this call translates to
// mysqli_stmt_bind_param(
// $stmt, $types,
// $form_photo_title, $form_member_name, $form_type
// );
array_unshift($values, $stmt, $types);
call_user_func_array("mysqli_stmt_bind_param", $values);
mysqli_stmt_execute($stmt);
// this instructs mysqli to assign each field in your query to each of
// these variables for each row that is returned by mysqli_stmt_fetch().
// this is also positional - if you change the order or number of fields
// in your query, you will need to update this.
mysqli_stmt_bind_result($photo_id, $member_name, $photo_title, $photo_film, $photo_height, $photo_width);
while (mysqli_stmt_fetch($stmt)) {
// $photo_id will be reassigned to the value from the row on each
// loop iteration
echo $photo_id."<br />";
}
</code></pre>
<p>I forgot what a ghastly beast the mysqli extension is - if you have access to the <a href="http://php.net/manual/en/book.pdo.php" rel="nofollow">PDO extension</a>, I
cannot recommend any more strongly that you learn your way around it and use it instead.</p>
http://stackoverflow.com/questions/844446/preventing-web-site-links-and-email-addresses-in-a-form-when-submit-is-pressed/844554#8445540Answer by Shabbyrobe for Preventing web site links and email addresses in a form when "Submit" is pressedShabbyrobe2009-05-10T02:26:35Z2009-05-10T02:26:35Z<p>You would have to iterate over every field in the $_POST array (at least the ones you don't want to have emails or links in) and check it against a couple of regexes.</p>
<p>The suggestion to use CAPTCHA is also a good one. </p>
<p>Anyway, here's a crappy implementation of the checking:</p>
<pre><code>class ValidationHelper
{
// regex taken from http://code.google.com/p/prado3/source/browse/branches/3.2/framework/Web/UI/WebControls/TEmailAddressValidator.php?spec=svn2583&r=2583
const EMAIL_REGEX = "#\\w+([-+.]\\w+)*@\\w+([-.]\\w+)*\\.\\w+([-.]\\w+)*#";
// hacked up regex that I just cooked up - could be hugely improved i'm sure.
const LINK_REGEX = "#(h\s*t\s*t\s*p\s*s?|f\s*t\s*p)\s*:\s*/\s*/#";
public static function containsEmail($value)
{
if (preg_match(self::EMAIL_REGEX, $value))
return true;
return false;
}
public static function containsLink($value)
{
if (preg_match(self::LINK_REGEX, $value))
return true;
return false;
}
}
$errors = array();
foreach ($_POST as $key=>$value) {
// presumably you want at least one email field, yeah?
if ($key != 'email') {
// perhaps you should be running strip_tags over everything if you don't want html and such...
// see http://php.net/strip_tags for more info. without it (or something similar), there's nothing
// to stop people from putting <script type="text/javascript" src="http://notyourdomain.com/~1337skriptkiddy/haxxors.js"></script>
// into your form. even if you might not necessarily ever be displaying this in a scenario
// where it can cause trouble, it's never a bad idea to stop this stuff *before* it gets into your db
$_POST[$key] = $value = strip_tags($value);
if (ValidationHelper::containsEmail($value) || ValidationHelper::containsLink($value))
$errors[] = 'Please ensure the value you entered for '.$fieldNames[$key].' does not contain any links or email addresses';
}
}
if (!empty($errors)) {
// failed - show errors.
}
else {
// success!
}
</code></pre>
http://stackoverflow.com/questions/843464/contingency-plan-for-fopen-error-in-php/843488#8434882Answer by Shabbyrobe for Contingency plan for fopen error in phpShabbyrobe2009-05-09T15:22:23Z2009-05-09T19:56:42Z<p>If you store your settings in an array, you can serialize() them and write to a text file, rather than writing raw php to a php file and including it.</p>
<p>If you're not sanitising your input for those preferences, and say $mypref1 represents someone's name, there's nothing stopping them from filling this out in the form field:</p>
<pre><code>\"; echo \"PWNED
</code></pre>
<p>and your resulting PHP will become </p>
<pre><code><?php \$pref1 = \"$mypref\"; echo \"PWNED\"; ?>
</code></pre>
<p>So firstly, storing your preferences in an array and using serialize() is much safer:</p>
<pre><code>$prefs = array('mypref1' => 'somethingorother');
$handle = fopen ($file, 'w');
fwrite($handle, serialize($prefs));
fclose($h);
// example code demonstrating unserialization
$prefs2 = unserialize(file_get_contents($file));
var_dump($prefs == $prefs2); // should output "(bool) true"
</code></pre>
<p>In your question, you also mention that if the file does exist, it is unlinked. You can simply truncate it to zero length by passing "w" as the second argument to fopen - you don't need to manually delete it. This should set the mtime anyway, negating the need for the call to touch().</p>
<p>If the values being written to the file are preferences, surely each preference could have a default, unless there are hundreds? array_merge will allow you to overwrite on a per-key basis, so if you do something like this:</p>
<pre><code>// array of defaults
$prefs = array(
'mypref1' => 'pants',
'mypref2' => 'socks',
);
if (file_exists($file)) {
// if this fails, an E_NOTICE is raised. are you checking your server error
// logs regularly?
if ($userprefs = unserialize(file_get_contents($file))) {
$prefs = array_merge($prefs, $userprefs);
}
}
</code></pre>
<p>If the issue is that there are heaps, and you don't want to have to initialise them all, you could have a get_preference method which just wraps an isset call to the prefs array.</p>
<pre><code>function get_preference($name, &$prefs) {
if (isset($pref[$name]))
return $pref[$name];
return null;
}
var_dump(get_preference('mypref1', $prefs));
</code></pre>
<p>Beyond all of the questions this raises though, the reality is that with your app, in the unlikely event that something <em>does</em> go wrong with the fopen, it should be regarded as a serious failure anyway, and the handful of users you're likely to have making use of this feature are going to be contacting you pretty darn quick if something goes wrong.</p>
http://stackoverflow.com/questions/834446/how-to-identify-the-source-table-of-fields-from-a-mysql-query/834638#8346380Answer by Shabbyrobe for how to identify the source table of fields from a mysql queryShabbyrobe2009-05-07T13:26:08Z2009-05-07T21:20:19Z<p>Leaving aside any questions about why you might want to do this, and why you would want to do a cross join here at all, here's the best way I can come up with off the top of my head.</p>
<p>You could try doing an EXPLAIN on each table and build the select statement programatically from the result. Here's a poor example of a script which will give you a dynamically generated field list with aliases. This will increase the number of queries you perform though as each table in the dynamically generated query will cause an EXPLAIN query to be fired (although this could be mitigated with caching fairly easily).</p>
<pre><code><?php
$pdo = new PDO($dsn, $user, $pass, array(PDO::ATTR_ERRMODE=>PDO::ERRMODE_EXCEPTION));
function aliasFields($pdo, $table, $delim='__') {
$fields = array();
// gotta sanitise the table name - can't do it with prepared statement
$table = preg_replace('/[^A-z0-9_]/', "", $table);
foreach ($pdo->query("EXPLAIN `".$table."`") as $row) {
$fields[] = $table.'.'.$row['Field'].' as '.$table.$delim.$row['Field'];
}
return $fields;
}
$fieldAliases = array_merge(aliasFields($pdo, 'artist'), aliasFields($pdo, 'event'));
$query = 'SELECT '.implode(', ', $fieldAliases).' FROM artist, event';
echo $query;
</code></pre>
<p>The result is a query that looks like this, with the table and column name separated by two underscores (or whatever delimeter you like, see the third parameter to aliasFields()):</p>
<pre><code>// ABOVE PROGRAM'S OUTPUT (assuming database exists)
SELECT artist__artist_id, artist__event_id, artist__artist_name, event__event_id, event__event_name FROM artist, event
</code></pre>
<p>From there, when you iterate over the results, you can just do an explode on each field name with the same delimeter to get the table name and field name.</p>
<p><hr /></p>
<p>John Douthat's answer is much better than the above. It would only be useful if the field metadata was not returned by the database, as PDO threatens may be the case with some drivers.</p>
<p>Here is a simple snippet for how to do what John suggetsted using PDO instead of mysql_*():</p>
<pre><code><?php
$pdo = new PDO($dsn, $user, $pass, array(PDO::ATTR_ERRMODE=>PDO::ERRMODE_EXCEPTION));
$query = 'SELECT artist.*, eventartist.* FROM artist, eventartist LIMIT 1';
$stmt = $pdo->prepare($query);
$stmt->execute();
while ($row = $stmt->fetch()) {
foreach ($row as $key=>$value) {
if (is_int($key)) {
$meta = $stmt->getColumnMeta($key);
echo $meta['table'].".".$meta['name']."<br />";
}
}
}
</code></pre>
http://stackoverflow.com/questions/808348/is-it-really-that-wrong-not-using-setters-and-getters/813099#8130994Answer by Shabbyrobe for Is it really that wrong not using setters and getters?Shabbyrobe2009-05-01T20:21:30Z2009-05-01T20:52:35Z<p>If we're talking strictly about PHP here and not about C#, Java, etc (where the compiler will optimise these things), I find getters and setters to be a waste of resources where you simply need to proxy the value of a private field and do nothing else.</p>
<p>On my setup, I made two crappy classes, one with five private fields encapsulated by five getter/setter pairs proxying the field (which looked almost <em>exactly</em> like java code, funnily enough) and another with five public fields, and called memory_get_usage() at the end after creating an instance. The script with the getter/setters used 59708 bytes of memory and the script with the public fields used 49244 bytes.</p>
<p>In the context of a class library of any significant size, such as a web site framework, these useless getters and setters can add up to a HUGE black hole for memory. I have been developing a framework for my employer in PHP (their choice, not mine. i wouldn't use it for this if i had the choice but having said that, PHP is not imposing any insurmountable restrictions on us) and when I refactored the class library to use public fields instead of getters/setters, the whole shebang ended up using 25% less memory per request at least.</p>
<p>The __get(), __set() and __call() 'magic' methods really shine for handling interface changes. When you need to migrate a field to a getter/setter (or a getter/setter to a field) they can make the process transparent to any dependent code. With an interpreted language it's a bit harder to find all usages of a field or method even with the reasonably good support for code sensitivity provided by Eclipse PDT or Netbeans, so the magic methods are useful for ensuring that the old interface still delegates to the new functionality.</p>
<p>Say we have an object which was developed using fields instead of getters/setters, and we want to rename a field called 'field' to 'fieldWithBetterName', because 'field' was inappropriate, or no longer described the use accurately, or was just plain wrong. And say we wanted to change a field called 'field2' to lazy load its value from the database because it isn't known initially using a getter...</p>
<pre><code>class Test extends Object {
public $field;
public $field2;
}
</code></pre>
<p>becomes</p>
<pre><code>class Test extends Object {
public $fieldWithBetterName = "LA DI DA";
private $_field2;
public function getField2() {
if ($this->_field2 == null) {
$this->_field2 = CrapDbLayer::getSomething($this->fieldWithBetterName);
}
return $this->_field2;
}
public function __get($name) {
if ($name == 'field')) {
Logger::log("use of deprecated property... blah blah blah\n".DebugUtils::printBacktrace());
return $this->fieldWithBetterName;
}
elseif ($name == 'field2') {
Logger::log("use of deprecated property... blah blah blah\n".DebugUtils::printBacktrace());
return $this->getField2();
}
else return parent::__get($name);
}
}
$t = new Test;
echo $t->field;
echo $t->field2;
</code></pre>
<p>(As a side note, that 'extends Object' bit is just a base class I use for practically everything which has a __get() and a __set() declaration which throws an exception when undeclared fields are accessed)</p>
<p>You can go backwards with __call(). This example is quite brittle, but it's not hard to clean up:</p>
<pre><code>class Test extends Object {
public $field2;
public function __call($name, $args) {
if (strpos($name, 'get')===0) {
$field = lcfirst($name); // cheating, i know. php 5.3 or greater. not hard to do without it though.
return $this->$field;
}
parent::__call($name, $args);
}
}
</code></pre>
<p>Getter and setter methods in PHP are good if the setter has to do something, or if the getter has to lazy load something, or ensure something has been created, or whatever, but they're unnecessary and wasteful if they do nothing other than proxy the field, especially with a few techniques like the ones above to manage interface changes.</p>
http://stackoverflow.com/questions/812571/how-to-create-friendly-url-in-php/812972#8129720Answer by Shabbyrobe for How to create friendly URL in php?Shabbyrobe2009-05-01T19:55:47Z2009-05-01T19:55:47Z<p>There are lots of different ways to do this. One way is to use the RewriteRule techniques mentioned earlier to mask query string values.</p>
<p>One of the ways I really like is if you use the <a href="http://martinfowler.com/eaaCatalog/frontController.html" rel="nofollow">front controller</a> pattern, you can also use urls like <a href="http://yoursite.com/index.php/path/to/your/page/here" rel="nofollow">http://yoursite.com/index.php/path/to/your/page/here</a> and parse the value of $_SERVER['REQUEST_URI'].</p>
<p>You can easily extract the /path/to/your/page/here bit with the following bit of code:</p>
<pre><code>$route = substr($_SERVER['REQUEST_URI'], strlen($_SERVER['SCRIPT_NAME']));
</code></pre>
<p>From there, you can parse it however you please, but for pete's sake make sure you sanitise it ;)</p>
http://stackoverflow.com/questions/807476/searching-text-for-potentially-tens-of-thousands-of-tokens1Searching text for (potentially) tens of thousands of tokensShabbyrobe2009-04-30T15:22:40Z2009-04-30T17:27:40Z
<p>I am maintaining a simple php-based in-house cms. I'd like to search the text of articles as they are saved into the system for what will eventually be tens of thousands of different tokens, in order to automatically apply links to those tokens and also to establish a relationship in an association table between the article and the entity the token represents.</p>
<p>What is the best way to do this? Is there a faster/more efficient way to do it than to retrieve a list of all of the tokens and their relevant entity/id every time an article is saved?</p>
<p>I'm less interested in the replacement of the tokens than the best way to establish the list of tokens to search - they will come from several different tables, and I would think that on a per-request basis the data set which needs to be queried would be quite a burden on both the DB and the memory load of the script</p>
<p>Edit: I think I've posed the question incorrectly.</p>
<p>Consider the following text:</p>
<p>Steve McMuffin ate seventeen Fabulous Furry Fajitas at The Stinking Bean, while Johnson Fatlumps ate thirty-two.</p>
<p>I've got two people in there who are both in the 'person' table, one restaurant which is in the 'restaurant' table and one restaurant menu item which is in the 'restaurant_menu_item' table.</p>
<p>I want to know the best way, after that text is saved, to automatically go through and identify what is a person, what is a restaurant, and what is a restaurant menu item <em>without</em> resorting to custom markup as the intended audience has virtually no chance of ever getting that right.</p>
http://stackoverflow.com/questions/98606/favorite-visual-studio-keyboard-shortcuts/99766#997661Answer by Shabbyrobe for Favorite Visual Studio keyboard shortcutsShabbyrobe2008-09-19T05:00:53Z2009-03-11T01:55:04Z<p>If you have your keyboard settings set to the "Visual C# 2005" setting, the window switching and text editing chords are excellent. You hit the first combination of Ctrl + Key, then release and hit the next letter.</p>
<ul>
<li><kbd>Ctrl</kbd>+<kbd>E</kbd>, <kbd>C</kbd>: Comment Selected Text<br /><br /></li>
<li><kbd>Ctrl</kbd>+<kbd>E</kbd>, <kbd>U</kbd>: Uncomment Selected Text<br /><br /></li>
<li><kbd>Ctrl</kbd>+<kbd>W</kbd>, <kbd>E</kbd>: Show Error List<br /><br /></li>
<li><kbd>Ctrl</kbd>+<kbd>W</kbd>, <kbd>J</kbd>: Show Object Browser<br /><br /></li>
<li><kbd>Ctrl</kbd>+<kbd>W</kbd>, <kbd>S</kbd>: Show Solution Explorer<br /><br /></li>
<li><kbd>Ctrl</kbd>+<kbd>W</kbd>, <kbd>X</kbd>: Show Toolbox<br /><br /></li>
</ul>
<p>I still use <kbd>F4</kbd> to show the properties pane so I don't know the chord for that one.</p>
<p>If you go to the Tools > Customise menu option and press the Keyboard button, it gives you a list of commands you can search to see if a shortcut is available, or you can select the "Press Shortcut Keys:" textbox and test shortcut keys you want to assign to see if they conflict.</p>
<p><strong>Addendum:</strong> I just found another great one that I think I'll be using quite frequently: <kbd>Ctrl</kbd>+<kbd>K</kbd>, <kbd>S</kbd> <br /><br />pops up an intellisense box asking you what you would like to surround the selected text with. It's exactly what I've needed all those times I've needed to wrap a block in a conditional or a try/catch.</p>
http://stackoverflow.com/questions/113803/mysql-foreign-keys-how-to-enforce-one-to-one-across-tables4MySQL foreign keys - how to enforce one-to-one across tables?Shabbyrobe2008-09-22T08:29:30Z2009-02-28T20:41:10Z
<p>If I have a table in MySQL which represents a base class, and I have a bunch of tables which represent the fields in the derived classes, each of which refers back to the base table with a foreign key, is there any way to get MySQL to enforce the one-to-one relationship between the derived table and the base table, or does this have to be done in code?</p>
<p>Using the following quick 'n' dirty schema as an example, is there any way to get MySQL to ensure that rows in both product_cd and product_dvd cannot share the same product_id? Is there a better way to design the schema to allow the database to enforce this relationship, or is it simply not possible?</p>
<pre><code>CREATE TABLE IF NOT EXISTS `product` (
`product_id` int(10) unsigned NOT NULL auto_increment,
`product_name` varchar(50) NOT NULL,
`description` text NOT NULL,
PRIMARY KEY (`product_id`)
) ENGINE = InnoDB;
CREATE TABLE `product_cd` (
`product_cd_id` INT UNSIGNED NOT NULL AUTO_INCREMENT ,
`product_id` INT UNSIGNED NOT NULL ,
`artist_name` VARCHAR( 50 ) NOT NULL ,
PRIMARY KEY ( `product_cd_id` ) ,
INDEX ( `product_id` )
) ENGINE = InnoDB;
ALTER TABLE `product_cd` ADD FOREIGN KEY ( `product_id` )
REFERENCES `product` (`product_id`)
ON DELETE RESTRICT ON UPDATE RESTRICT ;
CREATE TABLE `product_dvd` (
`product_dvd_id` INT UNSIGNED NOT NULL AUTO_INCREMENT ,
`product_id` INT UNSIGNED NOT NULL ,
`director` VARCHAR( 50 ) NOT NULL ,
PRIMARY KEY ( `product_dvd_id` ) ,
INDEX ( `product_id` )
) ENGINE = InnoDB;
ALTER TABLE `product_dvd` ADD FOREIGN KEY ( `product_id` )
REFERENCES `product` (`product_id`)
ON DELETE RESTRICT ON UPDATE RESTRICT ;
</code></pre>
<p>@<a href="http://stackoverflow.com/questions/113803/mysql-foreign-keys-how-to-enforce-one-to-one-across-tables#113811">Skliwz</a>, can you please provide more detail about how triggers can be used to enforce this constraint with the schema provided?</p>
<p>@<a href="http://stackoverflow.com/questions/113803/mysql-foreign-keys-how-to-enforce-one-to-one-across-tables#113858">boes</a>, that sounds great. How does it work in situations where you have a child of a child? For example, if we added product_movie and made product_dvd a child of product_movie? Would it be a maintainability nightmare to make the check constraint for product_dvd have to factor in all child types as well?</p>
http://stackoverflow.com/questions/93791/are-there-many-users-of-prado-out-there1Are there many users of PRADO out there?Shabbyrobe2008-09-18T15:50:30Z2009-01-02T11:18:31Z
<p>After making <a href="http://stackoverflow.com/questions/75882/what-in-your-mind-is-the-best-php-mvc-framework#89095">some comments</a>, I've been inspired to get some feedback on the PHP MVC framework <a href="http://pradosoft.com/" rel="nofollow">PRADO</a>. I've been using it for over a year now and I've very much enjoyed working with it, however I notice that throughout Stack Overflow, it doesn't seem to rate a mention when <a href="http://www.symfony-project.org/" rel="nofollow">symfony</a> or <a href="http://cakephp.org/" rel="nofollow">CakePHP</a> are being talked about as potential candidates for a framework. </p>
<p>Is anybody using Stack Overflow using PRADO now? If so, how do you find it? Has anyone used it in the past but left it behind, and if so, why? Can anybody appraise its strengths and weaknesses against Cake or symfony?</p>
http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/228707#2287070Answer by Shabbyrobe for How to check if the given string is palindrome?Shabbyrobe2008-10-23T06:16:55Z2008-11-06T23:43:29Z<p>There isn't a <em>single</em> solution on here which takes into account that a palindrome can also be based on word units, not just character units.</p>
<p>Which means that none of the given solutions return true for palindromes like "Girl, bathing on Bikini, eyeing boy, sees boy eyeing bikini on bathing girl".</p>
<p>Here's a hacked together version in C#. I'm sure it doesn't need the regexes, but it does work just as well with the above bikini palindrome as it does with "A man, a plan, a canal-Panama!".</p>
<pre><code> static bool IsPalindrome(string text)
{
bool isPalindrome = IsCharacterPalindrome(text);
if (!isPalindrome)
{
isPalindrome = IsPhrasePalindrome(text);
}
return isPalindrome;
}
static bool IsCharacterPalindrome(string text)
{
String clean = Regex.Replace(text.ToLower(), "[^A-z0-9]", String.Empty, RegexOptions.Compiled);
bool isPalindrome = false;
if (!String.IsNullOrEmpty(clean) && clean.Length > 1)
{
isPalindrome = true;
for (int i = 0, count = clean.Length / 2 + 1; i < count; i++)
{
if (clean[i] != clean[clean.Length - 1 - i])
{
isPalindrome = false; break;
}
}
}
return isPalindrome;
}
static bool IsPhrasePalindrome(string text)
{
bool isPalindrome = false;
String clean = Regex.Replace(text.ToLower(), @"[^A-z0-9\s]", " ", RegexOptions.Compiled).Trim();
String[] words = Regex.Split(clean, @"\s+");
if (words.Length > 1)
{
isPalindrome = true;
for (int i = 0, count = words.Length / 2 + 1; i < count; i++)
{
if (words[i] != words[words.Length - 1 - i])
{
isPalindrome = false; break;
}
}
}
return isPalindrome;
}
</code></pre>
http://stackoverflow.com/questions/220601/what-is-some-good-software-for-designing-mysql-databases/220604#2206044Answer by Shabbyrobe for What is some good software for designing MySQL databases?Shabbyrobe2008-10-21T02:50:10Z2008-10-21T02:57:20Z<p><a href="http://dev.mysql.com/workbench/" rel="nofollow">MySQL Workbench</a>, while a little buggy, has been invaluable to me since I discovered it.</p>
<p><a href="http://office.microsoft.com/en-us/visio/default.aspx" rel="nofollow">Visio</a> has a good visual database designer, but it can't export the result to a MySQL database and is windows only.</p>
<p><a href="http://phpmyadmin.net/" rel="nofollow">phpMyAdmin</a> also has a <a href="http://wiki.cihar.com/pma/designer" rel="nofollow">designer tool</a> which can be used if you correctly configure the <a href="http://wiki.cihar.com/pma/pmadb" rel="nofollow">pma database</a>.</p>
http://stackoverflow.com/questions/75882/what-in-your-mind-is-the-best-php-mvc-framework/89095#890952Answer by Shabbyrobe for What, in your mind, is the best PHP MVC framework?Shabbyrobe2008-09-18T01:06:30Z2008-10-15T02:29:18Z<p>My personal preference is <a href="http://pradosoft.com/" rel="nofollow">PRADO</a>. They've taken a lot of the good ideas from ASP.NET and left a stack of the bad ones behind.</p>
<p>Unlike ASP.NET though, when you hit one of those ridiculous problems that could so easily be solved by overriding something in a base ASP.NET class if only MS didn't seal the class or protect the method, you can actually get your hands dirty hacking on the framework code.</p>
<p>There is a good image illustrating the separation of the view and the controller at the old PRADO website:</p>
<p><img src="http://xisc.com/images/event-driven.gif" alt="alt text" /></p>
<p>It ships with a truckload of controls out of the box:</p>
<h3>Standard Controls</h3>
<p>All of the regular form controls like text boxes, drop downs etc are represented, along with TDatePicker, TCaptcha, THtmlArea (a full html editor using <a href="http://tinymce.moxiecode.com/" rel="nofollow">TinyMCE</a>), among others.</p>
<h3>Validation Controls</h3>
<p>Similar to ASP.NET's validators, PRADO supports validator components and validation summaries. Validators also support client side operations, and all of the included validators come with client side support (except TCustomValidator, but there's TActiveCustomValidator for that).</p>
<p>The following snippet demonstrates two of the validators and how they are added to a page. The TValidationSummary component will display the contents of the ErrorMessage properties:</p>
<pre><code><com:TValidationSummary />
<com:TTextBox CssClass="fieldValue" ID="Email" />
<com:TRequiredFieldValidator
ValidationGroup="Accom"
ControlToValidate="Email"
Text="*"
ErrorMessage="Please enter your email address" />
<com:TEmailAddressValidator
ValidationGroup="Accom"
CheckMXRecord="false"
ControlToValidate="Email"
Text="*"
ErrorMessage="Please enter a valid email address" />
<com:TButton CausesValidation="true" />
</code></pre>
<h3>List and Data Controls</h3>
<p>List and Data controls are provided to allow you to bind arrays of objects, straight arrays or internal PRADO List classes (TList, TMap) to controls. PRADO supplies a TRepeater for simple template looping, TDataGrid for building sortable, pageable tables, as well as TRadioButtonList, TCheckBoxList and TDropDownList for simplifying form creation.</p>
<h3>AJAX Controls</h3>
<p>I've only just started to get my hands dirty with these, but there are loads of AJAX-based ActiveControls that ship out of the box with PRADO like TAutoComplete, TActivePanel (a div you can show or hide or populate on a javascript callback), T(Event|Value|Time)TriggeredCallback, etc, as well as high quality community contributions like <a href="http://www.pradosoft.com/forum/index.php/topic,8274.0.html" rel="nofollow">XActiveDataGrid</a></p>
<p>PRADO also has very good documentation. The <a href="http://www.pradosoft.com/demos/quickstart/" rel="nofollow">quickstart</a> and <a href="http://www.pradosoft.com/demos/blog-tutorial/" rel="nofollow">blog tutorial</a> are excellent resources (although there are a few pages here and there in the quickstart that are missing). The community has yet to really get the Wiki going full-steam, but the <a href="http://www.pradosoft.com/docs/manual/" rel="nofollow">API reference</a> is superb and the downloadable distribution comes with a .chm file which has since become indispensable to me. The <a href="http://www.pradosoft.com/forum/" rel="nofollow">forum</a> is very newcomer-friendly and I have almost always received a response within hours.</p>
http://stackoverflow.com/questions/163834/php-templates-with-php/165930#1659301Answer by Shabbyrobe for PHP templates - with PHPShabbyrobe2008-10-03T06:44:33Z2008-10-03T06:44:33Z<p><a href="http://www.phpsavant.com/" rel="nofollow">Savant</a> is a lightweight, pure PHP templating engine. Version 2 has a <a href="http://www.phpsavant.com/yawiki/index.php?area=Savant2&page=PluginCycle#" rel="nofollow">cycle</a> plugin similar to the Smarty one mentioned earlier. I haven't been able to find a reference to the same plugin in version 3, but I'm sure you could write it fairly easily.</p>
http://stackoverflow.com/questions/689963/does-anyone-use-right-outer-joins/689978#689978Comment by Shabbyrobe on Does anyone use Right Outer Joins?Shabbyrobe2009-08-28T04:09:36Z2009-08-28T04:09:36ZCan you please provide more detail?http://stackoverflow.com/questions/1309991/how-to-set-smtplib-sending-timeout-in-python-2-4/1310008#1310008Comment by Shabbyrobe on How to set smtplib sending timeout in python 2.4?Shabbyrobe2009-08-21T04:58:28Z2009-08-21T04:58:28ZBrilliant, worked a treathttp://stackoverflow.com/questions/1309991/how-to-set-smtplib-sending-timeout-in-python-2-4/1310008#1310008Comment by Shabbyrobe on How to set smtplib sending timeout in python 2.4?Shabbyrobe2009-08-21T04:09:14Z2009-08-21T04:09:14Zunfortunately this breaks starttls() functionality. my code now gets stuck at the smtp.ehlo() after smtp.starttls()http://stackoverflow.com/questions/1118006/most-pythonic-way-of-organising-class-attributes-constructor-arguments-and-sub/1118035#1118035Comment by Shabbyrobe on Most "pythonic" way of organising class attributes, constructor arguments and subclass constructor defaults?Shabbyrobe2009-07-13T07:22:25Z2009-07-13T07:22:25Zwhat is the main difference between self.old = kwargs.pop('old', False) and def __init__(self, bite, old=False, *args, **kwargs) ?http://stackoverflow.com/questions/1118006/most-pythonic-way-of-organising-class-attributes-constructor-arguments-and-sub/1118035#1118035Comment by Shabbyrobe on Most "pythonic" way of organising class attributes, constructor arguments and subclass constructor defaults?Shabbyrobe2009-07-13T07:13:00Z2009-07-13T07:13:00Zalso, what about the case where Dog.__init__ needs to add an extra constructor argument? is def__init__(self, legs=4, *args, **kwargs) the right way to go about it?http://stackoverflow.com/questions/1118006/most-pythonic-way-of-organising-class-attributes-constructor-arguments-and-sub/1118035#1118035Comment by Shabbyrobe on Most "pythonic" way of organising class attributes, constructor arguments and subclass constructor defaults?Shabbyrobe2009-07-13T07:11:30Z2009-07-13T07:11:30Zoh i didn't know you could use the *args and **kwargs in that way! 'coolness' most definitely needs to be upped to 'really cool!!!' :)http://stackoverflow.com/questions/1036409/recursively-convert-python-object-graph-to-dictionary/1036435#1036435Comment by Shabbyrobe on Recursively convert python object graph to dictionaryShabbyrobe2009-06-24T05:19:57Z2009-06-24T05:19:57ZThanks for the help and inspiration. I just realised that it doesn't handle lists of objects, so I've updated my version to test for <b>iter</b>. Not sure if that's a good idea though.http://stackoverflow.com/questions/1036409/recursively-convert-python-object-graph-to-dictionaryComment by Shabbyrobe on Recursively convert python object graph to dictionaryShabbyrobe2009-06-24T04:59:41Z2009-06-24T04:59:41Zpoint taken, but the exception thing is a bit of a holy war and i tend towards prefering them never to be thrown unless something is truly exceptional, rather than expected program flow. each to their own on that one :)http://stackoverflow.com/questions/136168/get-last-n-lines-of-a-file-with-python-similar-to-tail/136280#136280Comment by Shabbyrobe on Get last n lines of a file with Python, similar to tailShabbyrobe2009-06-03T04:27:06Z2009-06-03T04:27:06Zthe question doesn't say platform dependence is unacceptable. i fail to see why this deserves two downvotes when it provides a very unixy (may be what you're looking for... certainly was for me) way of doing exactly what the question asks.http://stackoverflow.com/questions/897941/python-equivalent-of-phps-memorygetusage/898406#898406Comment by Shabbyrobe on Python equivalent of PHP's memory_get_usage()?Shabbyrobe2009-05-25T13:14:27Z2009-05-25T13:14:27ZThanks heaps for the great answer. As an aside, would you have any idea why the peak ends up above 80mb(!!!) if I spawn a bunch of threads, even though the resident stays relatively low? Also, do you have any clues as to how to do this on Win32?http://stackoverflow.com/questions/900677/how-do-i-safely-perform-money-related-calculations-in-php/900739#900739Comment by Shabbyrobe on How do I safely perform money related calculations in PHP?Shabbyrobe2009-05-23T03:22:03Z2009-05-23T03:22:03ZWhat about for display? It still needs to be shown as $1.54. Is there any situation with a floating point number where I'll end up with 1.53 or 1.55?http://stackoverflow.com/questions/897941/python-equivalent-of-phps-memorygetusage/898406#898406Comment by Shabbyrobe on Python equivalent of PHP's memory_get_usage()?Shabbyrobe2009-05-23T01:58:42Z2009-05-23T01:58:42Zis the peak/resident in kb or bytes?http://stackoverflow.com/questions/897308/tell-me-something-interesting-i-dont-know-about-programmingComment by Shabbyrobe on Tell me something interesting I don't know (About Programming....) Shabbyrobe2009-05-22T10:56:07Z2009-05-22T10:56:07ZI can't look at that and not think it should be "Clool". "Cuil"?http://stackoverflow.com/questions/891335/php-vs/891340#891340Comment by Shabbyrobe on PHP "" vs ''Shabbyrobe2009-05-21T11:35:13Z2009-05-21T11:35:13ZOr xampp (<a href="http://www.apachefriends.org/en/xampp.html" rel="nofollow">apachefriends.org/en/xampp.html</a>) or equivalenthttp://stackoverflow.com/questions/102631/how-to-write-a-crawler/102725#102725Comment by Shabbyrobe on How to write a crawler?Shabbyrobe2009-05-18T04:20:19Z2009-05-18T04:20:19ZCan you please provide some insight into dealing with the issues you mention? In particular, black holes?