User Teifion - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T09:12:09Zhttp://stackoverflow.com/feeds/user/15http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1849924/looking-for-feedback-on-my-program-design0Looking for feedback on my program designTeifion2009-12-04T21:58:43Z2009-12-05T19:31:05Z
<p>I'm aware that SO is for questions but overall the aim is to help people learn so I figured I'd try my hand at sharing some code and asking for feedback on it.</p>
<p><hr></p>
<p>I'm looking to create a program that will rely on random numbers, specifically dice. These will be presented in the form of "2D6", "4D10+3", "2D2 + 3D3" and so on and so forth. I thus set out to create a dice roller module that would be able to accept input like in that form.</p>
<p>It works just fine for what's needed but has a bug for things that probably won't be needed (the docstring at the start of the file should explain). What I am interested in is what people think of my code and if anybody can see ways to improve it.</p>
<p>It is still WIP and I've not started on the unit tests yet.</p>
<p><a href="http://woarl.com/dice.txt" rel="nofollow">Link to code</a></p>
<pre><code>#!/usr/bin/env python3
"""
Created by Teifion Jordan
http://woarl.com
Notes: The roller does not correctly apply * and / signs:
A + B * C is worked out as (A + B) * C, not A + (B * C) as would be correct
"""
import random
import re
import math
class Roller_dict (object):
"""A 'dictionary' that stores rollers, if it's not got that roller it'll make a new one"""
def __init__(self, generator=random.randint):
super(Roller_dict, self).__init__()
self.rollers = {}
# Generator is used to supply a "rigged" random function for testing purposes
self.generator = generator
def __call__(self, constructor):
constructor = constructor.replace(" ", "")
if constructor not in self.rollers:
self.rollers[constructor] = Roller(constructor, self.generator)
return self.rollers[constructor]()
# Regular expressions used by the Roller class
# Compiled here to save time if we need to make lots of Roller objects
pattern_split = re.compile(r"(\+|-|\*|/)")
pattern_constant = re.compile(r"([0-9]*)")
pattern_die = re.compile(r"([0-9]*)[Dd]([0-9]*)")
pattern_sign = re.compile(r"^(\+|-|\*|/)")
class Roller (object):
def __call__(self):
return self.roll()
def __init__(self, constructor, generator=random.randint):
super(Roller, self).__init__()
self.items = []
self.rebuild(constructor)
self.generator = generator
def rebuild(self, constructor):
"""Builds the Roller from a new constructor string"""
# First we need to split it up
c = pattern_split.split(constructor.replace(" ", ""))
# Check for exceptions
if len(c) == 0:
raise Exception('String "%s" did not produce any splits' % constructor)
# Stitch signs back into their sections
parts = []
last_p = ""
for p in c:
if p in "+-*/":
last_p = p
continue
if last_p != "":
p = "%s%s" % (last_p, p)
last_p = ""
parts.append(p)
# We have the parts, now we need to evaluate them into items
for p in parts:
# Look for a sign, default to positive
sign = pattern_sign.search(p)
if sign == None: sign = "+"
else: sign = sign.groups()[0]
# Strip out the sign, we're left with just the pure value
body = p.replace(sign, "")
# Now we find out what our main body is
# Die
value = pattern_die.search(body)
if value != None:
# Sign, Number, Sides
self.items.append(("die", sign, int(value.groups()[0]), int(value.groups()[1])))
continue
# Constant
value = pattern_constant.search(body)
if value != None:
self.items.append(("constant", sign, int(value.groups()[0])))
continue
# No matches
raise Exception('The part string "%s" had no matches' % body)
def roll(self):
"""Rolls the die/dice and returns the result"""
result = 0
for i in self.items:
# Get value
if i[0] == "die": value = self._derive_die(i[2], i[3])
elif i[0] == "constant": value = self._derive_constant(i[2])
else: raise Exception('No handler for item type "%s"' % i[0])
# Apply sign
if i[1] == "+": result += value
elif i[1] == "-": result -= value
elif i[1] == "*": result *= value
elif i[1] == "/": result /= value
return result
def _derive_die(self, number, sides):
result = 0
for n in range(0, number):
result += self.generator(0, sides)
return result
def _derive_constant(self, value):
return value
# Useful for running the tests to make sure that it uses "random" numbers
false_numbers = (int(math.cos(x)*5)+5 for x in range(0,1000))
def false_numbers_func(*args):
return false_numbers.next()
# If it's main, run unit tests?
if __name__ == '__main__':
r = Roller_dict(false_numbers_func)
print(r("2D6"))
print(r("2D6"))
print(r("2D6"))
</code></pre>
http://stackoverflow.com/questions/3432/multiple-updates-in-mysql2Multiple Updates in MySQLTeifion2008-08-06T14:12:09Z2009-11-19T14:20:56Z
<p>I know that you can insert multiple rows at once, is there a way to update multiple rows at once (as in, in one query) in MySQL?</p>
<p>Edit:
For example I have the following</p>
<pre><code>Name id Col1 Col2<br>Row1 1 6 1<br>Row2 2 2 3<br>Row3 3 9 5<br>Row4 4 16 8<br></code></pre>
<p>I want to combine all the following Updates into one query</p>
<pre><code>UPDATE table SET Col1 = 1 WHERE id = 1;<br>UPDATE table SET Col1 = 2 WHERE id = 2;<br>UPDATE table SET Col2 = 3 WHERE id = 3;<br>UPDATE table SET Col1 = 10 WHERE id = 4;<br>UPDATE table SET Col2 = 12 WHERE id = 4;<br></code></pre>
http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with44What is the easiest language to start with?Teifion2008-08-07T14:31:55Z2009-11-16T03:03:51Z
<p>What is the language with the lowest barriers to entry, simplest syntax, easiest setup. I'm aware that there's not a best language but I am sure that there will be one that's got a good score in all three areas.</p>
<p>It's for teaching friends how to program, I like PHP and Python but I don't want to be narrow minded and limit myself when there is a better option out there.</p>
<p><strong>Common suggestions</strong></p>
<ol>
<li>Ruby</li>
<li>Python</li>
<li>Basic</li>
<li>C</li>
<li>Java</li>
<li>C#</li>
</ol>
<p><br>
<strong>Useful links</strong></p>
<ol>
<li><a href="http://beta.stackoverflow.com/questions/3088/best-ways-to-teach-a-beginner-to-program" rel="nofollow">Best Ways To Teach A Beginner to Program</a></li>
<li><a href="http://mislav.uniqpath.com/poignant-guide/" rel="nofollow">Why's (Poignant) Guide to Ruby</a></li>
<li><a href="http://www.greenteapress.com/thinkpython/" rel="nofollow">Think Python</a></li>
</ol>
http://stackoverflow.com/questions/395541/graphs-charts-in-php12Graphs/Charts in PHPTeifion2008-12-27T22:49:21Z2009-11-15T04:26:41Z
<p>I'm trying to find a good Graph drawing library for my PHP application. Currently I am limited to viewing the data in a table which while specific, is a bit ugly.</p>
<p>I require a non-flash system if possible.</p>
http://stackoverflow.com/questions/526125/why-is-python-ordering-my-dictionary-like-so4Why is python ordering my dictionary like so?Teifion2009-02-08T18:03:46Z2009-11-12T08:36:45Z
<p>Here is the dictionary I have</p>
<pre><code>propertyList = {
"id": "int",
"name": "char(40)",
"team": "int",
"realOwner": "int",
"x": "int",
"y": "int",
"description": "char(255)",
"port": "bool",
"secret": "bool",
"dead": "bool",
"nomadic": "bool",
"population": "int",
"slaves": "int",
}
</code></pre>
<p>But when I print it out with "\n".join(myDict) I get this</p>
<pre><code>name
nomadic
dead
port
realOwner
secret
slaves
team
y
x
population
id
description
</code></pre>
<p>I know that a dictionary is unordered but it comes out the same every time and I've no idea why.</p>
http://stackoverflow.com/questions/62333/python-vs-php-python-runs-slower8Python vs PHP, Python runs slower?Teifion2008-09-15T12:27:20Z2009-11-11T11:54:26Z
<p>I've heard that Python is meant to be faster than PHP in terms of Runtime, I simply took this as a given and sat down today to make a blog post about it. After being told by <a href="http://stackoverflow.com/questions/62079/comparing-runtimes#62094">Vinko Vrsalovic</a> how to time scripts I took converted <a href="http://stackoverflow.com/questions/622/most-efficient-code-for-the-first-10000-prime-numbers#2753">some code for getting prime numbers</a> into Python and PHP then ran each 3 times and recorded the numbers. All times are in seconds.</p>
<pre><code>Python => 144.829, 144.771, 144.862 (Average 144.8206)
PHP => 102.783, 100.707, 100.663 (Average 101.3843)
</code></pre>
<p>I tried 3 different methods of storing the output in Python but they made a difference of approximately 2 seconds and when both scripts were set to output the data as soon as they got it rather than all at once the results were also only a few seconds off the above numbers.</p>
<p>Was all the stuff I heard about Python being faster wrong or have I done something appalling with my Python code?</p>
<p>Here is the Python code</p>
<pre><code>#!/usr/bin/env python
primeNumbers = []
output = []
for i in xrange(2, 100000):
divisible = False
for number in primeNumbers:
if i % number == 0:
divisible = True
if divisible == False:
primeNumbers.append(i)
output.append(str(i))
print ''.join(output)
</code></pre>
<p>And here is the PHP code</p>
<pre><code>#!/usr/bin/env php
<?php
$primeNumbers = array();
$output = '';
for ($i = 2; $i < 100000; $i++)
{
$divisible = false;
foreach ($primeNumbers as $number)
{
if ($i % $number == 0)
{
$divisible = true;
}
}
if ($divisible == false)
{
$primeNumbers[] = $i;
$output .= $i;
}
}
echo $output;
?>
</code></pre>
<p>All tests were run with the following command and under near identical conditions</p>
<pre><code>$ time ./script.ext
</code></pre>
http://stackoverflow.com/questions/10872/how-to-encourage-someone-to-learn-programming3How to encourage someone to learn programming?Teifion2008-08-14T10:34:05Z2009-11-06T17:49:35Z
<p>I have a friend that has a little bit of a holiday coming up and they want ideas on what they should do during the holiday, I plan to suggest programming to them, what are the pros and cons that I need to mention?</p>
<p>I'll add to the list below as people reply, I apologise if I duplicate any entries.</p>
<p><strong>Pros I have so far</strong></p>
<ol>
<li>Minimal money requirement (they already have a computer)</li>
<li>Will help them to think in new ways</li>
<li>(Rob Cooper) Great challenge, every day really is a fresh challenge in some way, shape or form. Not many jobs can truly offer that.</li>
<li>(Rob Cooper) I like the way it makes me think.. I look at EVERYTHING more logically as my skills improve.. This helps with general living as well as programming.</li>
<li>(Rob Cooper) Money is/can be pretty good.</li>
<li>(Rob Cooper) Its a pretty portable trade.. With collaboration tech as it is, you can pretty much work anywhere in the world so long as you have an Internet connection.</li>
<li>(Rob Cooper) It's an exciting industry to work in, theres massive amounts of tech to work and play with!</li>
<li>(Quarrelsome) Jetpacks. Programming is Technology and the more time we spend with technology the closer we get to having Jetpacks. (<em>Teifion: This is a really cool analogy!</em>)</li>
<li>(Saj) Profitable way of Exercising Brain Muscles.</li>
<li>(Saj) It makes you look brilliant to some audience.</li>
<li>(Saj) Makes you tech-smart.</li>
<li>(Saj) Makes you eligible to the future world.</li>
<li>(Saj) It's easy, fun, not in a math way..</li>
<li>(kiwiBastard) If the person likes problem solving then programming is no better example.</li>
<li>(kiwiBastard) Brilliant sense of achivement when you can interact with something you have designed and coded</li>
<li>(kiwiBastard) Great way to meet chicks/chaps - erm, maybe not that one (<em>Teifion: I dunno where you do programming but I want to come visit some time</em>)</li>
<li>(epatel) Learning how to program is like learning spell casting at Hogwarts . The computer will be your servant forever...</li>
</ol>
<p><strong>Cons I have so far</strong></p>
<ol>
<li>Can be frustrating when it's not working</li>
<li>Not physical exercise</li>
<li>(Rob Cooper) There are a lot of people doing it just for the money. They have no love for the craft and just appear lazy, annoying and sometimes it can really grind my gears seeing an industry and workforce I enjoy so much being diluted with crap. Which can often reflect badly on all of us.</li>
<li>(Rob Cooper) Not so sure about the initial cost.. Yeah you can get started with Java or something at low cost, but for me, locally, the vast demand is for .NET developers, which can be costly getting up and running with. However, this is rapidly/has not becoming the case with the amount of work put in by MS with releasing pretty damn good Express editions of their main development product line.</li>
<li>(Rob Cooper) Its a lifelong career.. I truly feel you never really become a "master" by nature of the industry, you stop for 1-2 years. You're behind the times.. Some people do not like the pace.</li>
<li>(Rob Cooper) Some geeks can be hard to work with.. While I think the general geek movement is really changing for the better, you will always have the classic "I am more intelligent than you" geeks that can really just be a pain in the ass for all!</li>
<li>(Saj) Can cause virtual damage.</li>
<li>(Saj) Can make one throw their computer away.</li>
<li>(Saj) Can make one only virtually available to the world.</li>
</ol>
http://stackoverflow.com/questions/141912/alternatives-to-the-mvc3Alternatives to the MVCTeifion2008-09-26T20:53:22Z2009-10-26T09:45:44Z
<p>What are the alternative "design methods" to the Model View Controller? MVC seems to be popular (SO was built with it, I know that much) but is it the only method used?</p>
http://stackoverflow.com/questions/35050/comparison-of-javascript-libraries2Comparison of Javascript librariesTeifion2008-08-29T19:03:01Z2009-10-09T08:09:15Z
<p>After the suggestion to use a library for <a href="http://beta.stackoverflow.com/questions/34486/what-more-is-needed-for-ajax-than-this-function" rel="nofollow">my ajax needs</a> I am going to use one, the problem is that there are so many and I've no idea how to even begin telling them apart.</p>
<p>Thus, can anybody A) Give a rundown of the differences or B) Point me (and others like me) somewhere that has such a list. Failing that plan C is to go with whichever gets mentioned the most here.</p>
http://stackoverflow.com/questions/1537202/variables-inside-and-outside-of-a-class-init-function2Variables inside and outside of a class __init__() functionTeifion2009-10-08T11:25:27Z2009-10-08T12:43:35Z
<p>I'm trying to understand, is there any difference at all between these classes besides the name? Does it make any difference if I use or don't use the __init__() function in declaring the variable "value"?</p>
<pre><code>class WithClass ():
def __init__(self):
self.value = "Bob"
def my_func(self):
print(self.value)
class WithoutClass ():
value = "Bob"
def my_func(self):
print(self.value)
</code></pre>
<p>My main worry is that I'll be using it one way when that'll cause me problems further down the road (currently I use the init call).</p>
http://stackoverflow.com/questions/854/keyboard-layout7Keyboard layoutTeifion2008-08-03T22:03:23Z2009-10-02T10:25:33Z
<p>Similar but different to <a href="http://beta.stackoverflow.com/questions/687/keyboard-for-programmers" rel="nofollow">Keyboard for programmers</a>, simply put, what keyboard layout is the best?</p>
<p>I'm using <a href="http://colemak.com/" rel="nofollow">Colemak</a> and it's good but I don't think it's actually faster than <a href="http://en.wikipedia.org/wiki/QWERTY" rel="nofollow">Qwerty</a>. <a href="http://en.wikipedia.org/wiki/Dvorak_Simplified_Keyboard" rel="nofollow">Dvorak</a> was certainly (for me anyway) not very fast at all. I have however found that Colemak is not so strain-inducing as Qwerty.</p>
http://stackoverflow.com/questions/3630/sqlite-vs-mysql29SQLite vs MySQLTeifion2008-08-06T16:22:32Z2009-09-23T15:36:07Z
<p>SQLite is a flat-file database and MySQL is a normal database. That's great but I'm not sure which is faster where or better for what? What are the pros and cons of each option?</p>
http://stackoverflow.com/questions/1137060/where-does-postgresql-store-the-database2Where does PostgreSQL store the database?Teifion2009-07-16T11:55:29Z2009-09-14T22:01:19Z
<p>Where are the files for my PostgreSQL database stored? I know that with MySQL it stores a file for each table and that PostgreSQL does something different but it's got to store it's data somewhere when I turn my computer off and I'm trying to figure out where.</p>
http://stackoverflow.com/questions/3088/best-ways-to-teach-a-beginner-to-program/3198#319823Answer by Teifion for Best ways to teach a beginner to program?Teifion2008-08-06T09:02:39Z2009-09-12T22:21:26Z<p>I recently wrote an article titled <a href="http://woarl.com/girlfriend.html" rel="nofollow">How to teach your girlfriend programming</a>, it has little to do with girlfriends and everything about teaching something technical to someone that does not understand it.</p>
<p>I'm told it's also funny.</p>
http://stackoverflow.com/questions/141945/lightest-possible-php-mvc10Lightest possible PHP MVCTeifion2008-09-26T20:59:04Z2009-08-20T13:53:49Z
<p>I currently use <a href="http://codeigniter.com/" rel="nofollow">CodeIgniter</a> for an MVC framework in PHP because it's a very bare framework, is there anything even more bare than CodeIgniter?</p>
http://stackoverflow.com/questions/466437/minifying-html6Minifying HTMLTeifion2009-01-21T18:31:23Z2009-08-19T11:33:33Z
<p>I've googled around but can't find any HTML minifacation scripts.</p>
<p>It occoured to me that maybe there's nothing more to HTML minifacation than removing all unneeded whitespace.</p>
<p>Am I missing something or has my Google Fu been lost?</p>
http://stackoverflow.com/questions/19461/click-an-image-get-coordinates2Click an image, get coordinatesTeifion2008-08-21T08:02:12Z2009-08-03T14:24:18Z
<p>I know it can be done and I even have a vague idea of how to do it but it stops at being vague.</p>
<p>I have a standard HTML image tag with an image in it, 100 by 100 pixels in size. I want people to be able to click the image and for that to pass the X and Y that they click into a function.</p>
<p>The coordinates need to be relative to the image top and left.</p>
<p>Thank you in advance for any help.</p>
http://stackoverflow.com/questions/43283/remote-working7Remote workingTeifion2008-09-04T07:29:08Z2009-08-02T18:11:10Z
<p>I've got an interview on Tuesday for a job that's just a little too far to commute to, I would very much like to work remotely 4 out of 5 days a week so I'm asking what are the best ways to sell remote working to a prospective boss.</p>
http://stackoverflow.com/questions/100959/mac-sqlite-editor9Mac SQLite editorTeifion2008-09-19T10:24:18Z2009-08-02T01:36:47Z
<p>I am aware of <a href="http://cocoamysql.sourceforge.net/" rel="nofollow">CocoaMySQL</a> but I have not seen a Mac GUI for SQLite, is there one?</p>
<p>My Google search didn't turn up any Mac related GUI's which is why I'm asking here rather than Google.</p>
http://stackoverflow.com/questions/769135/run-javascript-when-an-element-loses-focus2Run JavaScript when an element loses focusTeifion2009-04-20T16:50:34Z2009-07-30T00:35:18Z
<p>I have a standard HTML input that I want to run JavaScript code when it loses focus, sadly my Google searches did not reveal how to do this.</p>
<p>To make it clear, I'm looking for a way to do this:</p>
<pre><code><input type="text" name="name" value="value" onlosefocus="alert(1);"/>
</code></pre>
http://stackoverflow.com/questions/5138/webcomics-besides-xkcd31Webcomics besides XKCDTeifion2008-08-07T18:49:42Z2009-07-28T18:03:03Z
<p>Granted this is not a question directly related to programming but when I <a href="http://beta.stackoverflow.com/questions/4510/when-to-take-a-break" rel="nofollow">take a break</a> I quite like to read web comics. What webcomics aside from <a href="http://xkcd.com/" rel="nofollow">XKCD</a> can people recommend?</p>
http://stackoverflow.com/questions/4736/learning-regular-expressions25Learning Regular ExpressionsTeifion2008-08-07T14:05:23Z2009-07-18T01:22:11Z
<p>I already know the basics of RegEx but I'm not sure where to go from here, I'm looking for both a good and above all easy to understand guide but I am also looking for things to use RegEx's for, it's all well and good reading about it but if you never use them then they will not stick in your mind.</p>
<p>I have already found <a href="http://www.regular-expressions.info/" rel="nofollow">regular-expressions.info</a> but I'm sure there are more.</p>
http://stackoverflow.com/questions/218174/combining-php-arrays4Combining php arraysTeifion2008-10-20T11:59:14Z2009-07-15T13:39:16Z
<p>I have the following arrays in PHP (okay they are a bit bigger but the idea is what counts).</p>
<pre><code>$array1 = array(1 => 'a', 2 => 'b');
$array2 = array(3 => 'c', 4 => 'd');
</code></pre>
<p>Essentially I want to combine the two arrays as if it were something like this</p>
<pre><code>$array3 = array(1 => 'a', 2 => 'b', 3 => 'c', 4 => 'd');
</code></pre>
<p>Thanks</p>
http://stackoverflow.com/questions/3999/why-use-net20Why use .NET?Teifion2008-08-06T21:16:23Z2009-07-14T21:24:39Z
<p>I've often wondered, what is so great about .NET and MsSQL?</p>
<p>I can see a downside being that you <strong>have</strong> to run it on Windows but I am unaware of any upsides besides it being quite fast, yet so many here use it.</p>
<p>Edit: You are meant to run it on Windows but as Atrophius pointed out you can use <a href="http://www.mono-project.com/Main_Page" rel="nofollow">Mono</a></p>
http://stackoverflow.com/questions/1109061/insert-on-duplicate-update-postgresql1Insert, on duplicate update (postgresql)Teifion2009-07-10T11:38:49Z2009-07-10T22:57:55Z
<p>Several months ago I learnt from here how to perform multiple updates at once in MySQL using the following syntax</p>
<pre><code>INSERT INTO table (id, field, field2) VALUES (1, A, X), (2, B, Y), (3, C, Z)
ON DUPLICATE KEY UPDATE field=VALUES(Col1), field2=VALUES(Col2);
</code></pre>
<p>I've now switched over to PostgreSQL and apparently this is not correct. It's referring to all the correct tables so I assume it's a matter of different keywords being used but I'm not sure where in the PostgreSQL documentation this is covered.</p>
<p>To clarify, I want to insert several things and if they already exist to update them.</p>
http://stackoverflow.com/questions/13293/code-igniter-php-framework6Code igniter (PHP framework)Teifion2008-08-16T19:27:20Z2009-07-04T00:46:47Z
<p>I am thinking of using a PHP framework called <a href="http://codeigniter.com/" rel="nofollow" title="S">Code Igniter</a>. One of the things I am interested in about it is that it's fast, I have however no way to find out how fast and would rather not simply take the word of their website for it. Does anybody know how I can determine it's speed or tell me of a site that can?</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/5794/other-browsers5Other browsersTeifion2008-08-08T09:58:11Z2009-06-16T21:46:50Z
<p>I'm aware of <a href="http://www.microsoft.com/windows/products/winfamily/ie/default.mspx" rel="nofollow">IE</a>, <a href="http://www.apple.com/safari/" rel="nofollow">Safari</a>, <a href="http://www.mozilla.com/en-US/firefox/?from=getfirefox" rel="nofollow">Firefox</a> and <a href="http://www.opera.com/" rel="nofollow">Opera</a> but are there any other browsers out there that are worth knowing about? I've had several friends that don't like IE but then some of the above don't work on their computer either and I felt it'd be nice to have a few more alternatives.</p>
http://stackoverflow.com/questions/3636/two-man-team8Two man teamTeifion2008-08-06T16:28:16Z2009-06-16T08:14:11Z
<p>I'll soon be starting a company with a friend. There will be several parts of it where we work on the same section of a site and as far as I can forsee, the potential for muck-ups is huge.</p>
<p>It's just two people so do we really need to use a version control system and are there any suggestions that you can give in helping us work as a more seamless team?</p>
http://stackoverflow.com/questions/389688/producing-documentation-for-python-classes6Producing documentation for Python classesTeifion2008-12-23T18:30:53Z2009-06-15T20:00:12Z
<p>I'm about to start a project where I will be the only one doing actual code and two less experienced programmers (scary to think of myself as experienced!) will be watching and making suggestions on the program in general.</p>
<p>Is there a good (free) system that I can use to provide documentation for classes and functions based on the code I've written? It'd likely help them a lot in getting to grips with the structure of the data.</p>
http://stackoverflow.com/questions/938967/php-script-ending-prematurely-1PHP script ending prematurelyTeifion2009-06-02T11:17:46Z2009-06-02T12:43:39Z
<p>My site has a php page that prints out XML, for some reason though it's being truncated to 8KB in size, I've never encountered this before and all the other pages on the site remain un-truncated.</p>
<p>Where should I start looking for the problem and what could cause it to stop like this?</p>
<p>The site uses the Zend framework and the page in question uses the soap server.</p>
http://stackoverflow.com/questions/1849924/looking-for-feedback-on-my-program-design/1853100#1853100Comment by Teifion on Looking for feedback on my program designTeifion2009-12-05T20:45:29Z2009-12-05T20:45:29ZThat's awesome and really useful.http://stackoverflow.com/questions/1849924/looking-for-feedback-on-my-program-design/1851938#1851938Comment by Teifion on Looking for feedback on my program designTeifion2009-12-05T18:50:55Z2009-12-05T18:50:55ZCheers, that's a really good idea!http://stackoverflow.com/questions/1849924/looking-for-feedback-on-my-program-design/1849950#1849950Comment by Teifion on Looking for feedback on my program designTeifion2009-12-04T22:10:06Z2009-12-04T22:10:06ZThe majority of the complexity looks to be in the rebuild function where it takes the string and works out what's in it. Cheers for the PEP08 comment, my code is very rarely seen by others so I'd not thought about that!http://stackoverflow.com/questions/1537202/variables-inside-and-outside-of-a-class-init-function/1537226#1537226Comment by Teifion on Variables inside and outside of a class __init__() functionTeifion2009-10-08T18:54:44Z2009-10-08T18:54:44ZI suspected that might be the case but figured that if I stated my assumptions it might distract from the question itself, cheers for clearing it up :)http://stackoverflow.com/questions/100518/the-programmers-bill-of-rights/101102#101102Comment by Teifion on The Programmer's Bill of RightsTeifion2009-10-08T11:03:55Z2009-10-08T11:03:55ZTouché my good manhttp://stackoverflow.com/questions/3088/best-ways-to-teach-a-beginner-to-program/3198#3198Comment by Teifion on Best ways to teach a beginner to program?Teifion2009-09-12T22:21:49Z2009-09-12T22:21:49ZThanks, I've re-uploaded it somewhere the link won't break so fast.http://stackoverflow.com/questions/1109061/insert-on-duplicate-update-postgresql/1109198#1109198Comment by Teifion on Insert, on duplicate update (postgresql)Teifion2009-07-10T13:00:41Z2009-07-10T13:00:41Z"Upsert"? Is that a typo or a name/process I've never heard of?http://stackoverflow.com/questions/1109061/insert-on-duplicate-update-postgresql/1109159#1109159Comment by Teifion on Insert, on duplicate update (postgresql)Teifion2009-07-10T12:10:22Z2009-07-10T12:10:22ZSurely locking the table would delay any concurrent queries but allow this one to run uninterrupted?http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/4947#4947Comment by Teifion on What is the single most influential book every programmer should read?Teifion2009-07-02T17:15:19Z2009-07-02T17:15:19ZEvery programmer that needs to meet people should read the latter. As for the former I'm aware that there may be some disagreement over that which is not best discussed through the medium of comments on stackoverflow.http://stackoverflow.com/questions/938967/php-script-ending-prematurelyComment by Teifion on PHP script ending prematurelyTeifion2009-06-03T11:46:40Z2009-06-03T11:46:40ZThe problem has magically fixed itself and it's stopped stopping at 8KB, I'd not had a chance to implement any of the suggestions.http://stackoverflow.com/questions/860169/django-and-modwsgi-having-database-connection-issuesComment by Teifion on django and mod_wsgi having database connection issuesTeifion2009-05-13T20:19:59Z2009-05-13T20:19:59ZSwapping it to sqlite3 "fixes" the problem in that it works but I'd much rather use mysql.http://stackoverflow.com/questions/859192/about-20-models-in-1-django-app/859442#859442Comment by Teifion on About 20 models in 1 django appTeifion2009-05-13T18:11:01Z2009-05-13T18:11:01ZBut if the models have to relate to each other how can I place them in separate apps?http://stackoverflow.com/questions/859192/about-20-models-in-1-django-app/859222#859222Comment by Teifion on About 20 models in 1 django appTeifion2009-05-13T17:52:24Z2009-05-13T17:52:24ZIt's theoretically working but running the line from the tutorial "python manage.py sql gui" doesn't do anything, any idea what's up?http://stackoverflow.com/questions/855408/running-django-on-osxComment by Teifion on Running django on OSXTeifion2009-05-13T15:35:33Z2009-05-13T15:35:33ZWell it's actually a site that's just for me though it may need to go public one day.http://stackoverflow.com/questions/855408/running-django-on-osx/855573#855573Comment by Teifion on Running django on OSXTeifion2009-05-13T13:15:45Z2009-05-13T13:15:45ZBrilliant, I have mod_wsgi working and will as soon as I can work out the correct path for my app in the django.wsgi file I'll be away. Cheers!