User Oli - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T03:03:41Zhttp://stackoverflow.com/feeds/user/12870http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1872796/changed-django-server-location-now-logins-dont-work0Changed Django server location, now logins don't workOli2009-12-09T09:54:21Z2009-12-09T16:04:19Z
<p>I've got a very strange problem. I moved a site from one server to another. There has now been more than enough time for DNS to propagate and as a precaution, I have turned off the old site so people just can't see it.</p>
<p>It's on a subdomain and this hasn't changed.</p>
<p>When people try to log in now, they can't. Django accuses them of not having cookies enabled which just isn't true.</p>
<p>The strange thing is I set up a new subdomain and put a redirect in to redirect everybody from the old one to it and it works. Great but there are still two problems:</p>
<ol>
<li><p>I don't know what's happened. It's clearly cookie or session related but if I hit something like this in the future, I need to be able to fix it.</p></li>
<li><p>I would like to return the site to the old subdomain one day. I need to know how to fix it to do that.</p></li>
</ol>
<p>So any ideas?</p>
http://stackoverflow.com/questions/1872744/how-to-design-a-wolfram-alpha-like-search-engine/1872852#18728525Answer by Oli for How to design a Wolfram Alpha-like search engine?Oli2009-12-09T10:03:29Z2009-12-09T10:03:29Z<p>As a deleted post here says, WA is by no means a simple search engine. Even a good simple search engine (read: google, et al) is by no means simple. Wolfram Alpha is fathoms more complex.</p>
<p>At the very least, you're going to need a proper programming language and you're going to need to know it. <em>I</em> would stay as far away from PHP as you can as it's only going to teach you bad programming habits.</p>
<p>Personally, I would have a look at a Python (a language) framework. Python is awesomely easy to understand for people who have done any programming before and I would expect that simplicity extends to those who haven't done any programming either. As for the framework Django is probably the best supported.</p>
<p>Or ruby on rails. Or even a Microsoft language on ASPNET.</p>
<p>The important thing to say is the web side of this project is far less important than the searching logic. You could easily do this from a command line instead of a web page. It's much easier to set up (as you don't have to worry about models, views, etc). When you've got that down, you can easily take that output and assemble it for website consumption.</p>
<p><strong>Again, forget about the website stuff; learn how to program first.</strong></p>
<p>If, and I suspect this is the truth, you're just looking for a good webdev project to step into, pick something simple. As I've said two times already, WA is far from a simple webdev problem in that it's only about 2% actual webdev.</p>
<p>Pick something dull. There's a reason people make blogs as their first applications: they're simple and they cover quite a lot of material.</p>
<p>My comment about Python and Django stand. You'll have much more fun and learn far fewer bad habits than you will with PHP.</p>
http://stackoverflow.com/questions/340888/navigation-in-django6Navigation in djangoOli2008-12-04T15:06:42Z2009-12-07T15:12:45Z
<p>I've just done my first little webapp in django and I love it. I'm about to start on converting an old production PHP site into django and as part its template, there is a navigation bar.</p>
<p>In PHP, I check each nav option's URL against the current URL, in the template code and apply a CSS class if they line up. It's horrendously messy.</p>
<p>Is there something better for django or a good way of handling the code in the template?</p>
<p>To start, how would I go about getting the current URL?</p>
http://stackoverflow.com/questions/1857488/divs-shift-when-content-gets-too-large/1857532#18575320Answer by Oli for Divs Shift When Content Gets Too LargeOli2009-12-07T02:49:29Z2009-12-07T03:02:37Z<p>My original answers are below but the truth is, there's only one good answer to this if you feel you need to do anything at all: <strong>modal windows</strong>.</p>
<p>A modal window is one that pops to the foreground and needs to be actioned before you can carry on doing what you were doing. You've used one before even if you didn't know the name. One example is an open file dialogue in an application. You have to pick a file or cancel to carry on.</p>
<p>On the web, you can replicate this functionality quite easily. It involves "overlay" over the content to stop the user touching it and the modal box on top of the overlay. Most web-examples shade the overlay to let the user know what has focus.</p>
<p>This fixes your problem because it stops the content getting longer by putting the new content over the old content and therefore the scroll-bar doesn't need to show.</p>
<p>Luckily for you, there are prefab solutions (see the last line of this) but I think the one that will work best for you is <a href="http://famspam.com/facebox" rel="nofollow">Facebox</a>. It's light and sexy and does the job of just showing some information. it doesn't look like you need to get too bogged down in other actions.</p>
<p><hr></p>
<p>Here, at least, it's because the scrollbar on the window pops up.</p>
<p>There are a few ways to fix this but all are pretty hacky or imperfect:</p>
<ol>
<li><p>Use a left-aligned design.</p></li>
<li><p>On load, if the height is bigger than the computed height of the content (no scroll bar) force the content to create a scrollbar. Compare widths. Deduct half this from your left margin on your content. Yuck!</p></li>
<li><p>Manually centre the content using <code>onload</code> and <code>onresize</code> hooks to change the margin on the content. Probably the cleanest and you can leave it on <code>margin:auto</code> just in case. This won't work for IE6 but I guess that's expected.</p></li>
<li><p>You can put the content into tabs that the user has to switch between.</p></li>
<li><p>Use pop-in modal layers instead of attaching the content to the bottom of the page. I'm thinking something like <a href="http://www.huddletogether.com/projects/lightbox2/" rel="nofollow">LightBox</a> but with content instead of images. I think there's probably a script out there that does this with content already.</p></li>
</ol>
<p>Edit: <a href="http://www.designlabelblog.com/2009/03/20-ways-to-create-javascript-modal.html" rel="nofollow">See this</a> for more tips on modal windows.</p>
http://stackoverflow.com/questions/1832802/django-redundancy-and-replication-over-two-vps-accounts1Django redundancy and replication over two VPS accountsOli2009-12-02T13:10:12Z2009-12-02T16:33:17Z
<p>I'm slowly getting into the position where one of my Django sites needs some robustness behind it. I'd currently running on a single VPS on a SQLite database with memcached.. It's about as un-scaled as things can get.</p>
<p>If I bought another VPS account, what would I want to do?</p>
<ul>
<li>Move to MySQL/PostgreSQL with replication? What's easiest? Does replication protect me from one server exploding? Are there concurrency downsides?</li>
<li>How do I load-balance between the two servers?</li>
<li>I'd put memcached on the new server too. If I put both IPs into the configuration, would that keep a copy of data on both servers? (I'm thinking of what happens to session data - currently stored in memcached)</li>
<li>I'm currently using Cherokee as the httpd - I'm sure this has its own set of issues. If you've any tips, let me know.</li>
</ul>
<p>Am I going at this the wrong way? Is there an easier way to have faster, more robust django sites?</p>
http://stackoverflow.com/questions/1200548/writing-a-template-tag-in-django0Writing a Template Tag in DjangoOli2009-07-29T14:12:16Z2009-12-01T20:08:33Z
<p>I'm trying to customise a CMS written in Django. The content editors aren't flexible enough so I'm trying to come up with a better solution.</p>
<p>Without over-explaining it, I'd like it to be a bit like <a href="http://bitbucket.org/hakanw/django-better-chunks/wiki/Home" rel="nofollow">django-better-chunks</a> or <code>django-flatblocks</code>. You set up an editable region entirely from within the template. I want to bind these editable regions to a mix of strings and object instances. One example would be having multiple editable regions based on one product:</p>
<pre><code>{% block product_instance "title" %}
{% block product_instance "product description" %}
</code></pre>
<p>So if you have a view with another product as <code>product_instance</code> those two <code>blocks</code> would show different data. I would also see there being use for site-wide blocks that only pass through the string part. Essentially, I would like to be able to pass 1-infinity identifiers.</p>
<p>But I'm really struggling on two fronts here:</p>
<ol>
<li><p>How do I define the relationship between the mixed identifier and the actual content "<code>block</code>" instance? I have a feeling contenttypes might feature here but I've really no idea where to start looking!</p></li>
<li><p>And how do I write a template tag to read the above syntax and convert that into an object for rendering?</p></li>
</ol>
http://stackoverflow.com/questions/1826737/google-hack-databaseghdb/1826802#18268022Answer by Oli for Google Hack Database(GHDB)Oli2009-12-01T15:09:09Z2009-12-01T15:09:09Z<p>The Google Hacking Database is a database list of queries that expose known issues with software that runs websites. There are some bugs that expose information you might not want the public reading (passwords, etc).</p>
<p>This isn't hacking you understand. This is just stuff Google has picked up while browsing around sites.</p>
<p>But turning to the scanner, anything which relies just on what Google can see isn't going to be very thorough for security analysis. Without looking too closely, I imaging wikto uses the patterns in the GHDB and tests them against your own site. If it finds matches, you might have a problem.</p>
<p>It's not going to test for actual exploits which are a real issue and will usually leave you much more open.</p>
http://stackoverflow.com/questions/1810757/only-validate-certain-fields-if-a-booleanfield-is-set0Only validate certain fields if a BooleanField is setOli2009-11-27T21:58:06Z2009-11-30T12:08:40Z
<p>Scenario: I'm building an order-form. Like every other order-form on the planet, it has separate invoicing shipping addresses. I've just added a "Use billing address" checkbox to let the user save time.</p>
<p>The problem is, the shipping fields are still there. They will fail validation if the user don't enter any shipping address data (like if they want to use the billing address).</p>
<p>What I think I'd like to do override the ModelForm validation for these duplicate fields. In there, if the box is checked (not sure how I get that data from within a validator), I return the billing version. If it's not checked, I pass it back to the original validation.</p>
<p>Sounds like a plan doesn't it? Well I fell at the first hurdle. My <code>clean_functions</code> aren't working. Doesn't look like they're even being called.</p>
<p>Here's some code:</p>
<pre><code># shipping_street is a field in my Order Model
class OrderForm(ModelForm):
class Meta:
model = Order
def clean_shipping_street(self):
print "JUST GET ME SOME OUTPUT!!!"
raise forms.ValidationError('RAWRAWR')
</code></pre>
<p>Here's how I'm testing:</p>
<pre><code>def checkout(request):
of = OrderForm()
if request.method == "POST":
of = OrderForm(request.POST)
print 'Form valid:', of.is_valid()
# ...
# return my HttpResponse with 'of' in the context.
</code></pre>
http://stackoverflow.com/questions/1810757/only-validate-certain-fields-if-a-booleanfield-is-set/1819427#18194270Answer by Oli for Only validate certain fields if a BooleanField is setOli2009-11-30T12:08:40Z2009-11-30T12:08:40Z<p>There were several problems with my last answer. Copied data wasn't rendered back into the form (might be something you want, I do) and it was a little unreliable.</p>
<p>Here is what I'm using now. Instead of adding dozens of <code>clean_field_name()</code> definitions, I have one just on the <code>BooleanField</code>:</p>
<pre><code>def clean_ship_to_billing(self):
if self.cleaned_data.get('ship_to_billing', False):
data = self.data.copy()
for f in ['street', 'street_2', 'post_code', 'city', 'county', 'country', ]:
data['shipping_%s' % f] = data['billing_%s' % f]
self.data = data
</code></pre>
<p>If checked, it copies the raw data across for billing fields into shipping fields. It's important that the field is before the shipping fields in the model's (or form's) field order.</p>
<p>And I'm copying self.data because the POST data is immutable.</p>
http://stackoverflow.com/questions/1810757/only-validate-certain-fields-if-a-booleanfield-is-set/1810856#18108562Answer by Oli for Only validate certain fields if a BooleanField is setOli2009-11-27T22:35:14Z2009-11-29T01:52:51Z<p>I'm not sure if I was just being a clutz but the following worked (and answers my whole question):</p>
<p>class OrderForm(ModelForm):
class Meta:
model = Order</p>
<pre><code>def clean_shipping_street(self):
print 'VALIDATING!!! YEY!'
if self.cleaned_data['ship_to_billing']:
return self.clean_billing_street()
return super(OrderForm, self).clean_shipping_street()
</code></pre>
<p>But if you think I'm going about this the wrong way, please let me know! </p>
<p>As Nick points out below, cleaned_data isn't filled in a guaranteed order, meaning <code>ship_to_billing</code> might not exist when <code>clean_shipping_street()</code> is called. The way around this is to call the <code>clean_shipping_street()</code> method instead accessing <code>cleaned_data</code>.</p>
<pre><code>def clean_shipping_street(self):
print 'VALIDATING!!! YEY!'
if self.clean_ship_to_billing():
return self.clean_billing_street()
return super(OrderForm, self).clean_shipping_street()
</code></pre>
<p>If you weren't as lazy as I was when I wrote the code, you might want to avoid so many duplicate validations of the boolean field. This should be faster (provided the default field isn't run unless it's needed - not sure on that myself):</p>
<pre><code>def clean_shipping_street(self):
print 'VALIDATING!!! YEY!'
if self.cleaned_data.get('ship_to_billing', self.clean_ship_to_billing):
return self.clean_billing_street()
return super(OrderForm, self).clean_shipping_street()
</code></pre>
<p><strong><em>OR</em></strong> <em>even</em> better than that:</p>
<pre><code>def clean_shipping_street(self):
if not self.cleaned_data.has_key['ship_to_billing']:
self.cleaned_data['ship_to_billing'] = self.clean_ship_to_billing()
if self.cleaned_data['ship_to_billing']:
return self.clean_billing_street()
return super(OrderForm, self).clean_shipping_street()
</code></pre>
<p>It's only slightly different but it should mean clean_ship_to_billing() gets called a lot less than my previous efforts. But seriously, I doubt you could even detect these "improvements" in a profiling session.</p>
http://stackoverflow.com/questions/1809874/get-type-of-django-form-widget-from-within-template0Get type of Django form widget from within templateOli2009-11-27T17:29:11Z2009-11-27T19:44:22Z
<p>I'm iterating through the fields of a form and for certain fields I want a slightly different layout, requiring altered HTML.</p>
<p>To do this accurately, I just need to know the widget type. It's class name or something similar. In standard python, this is easy! <code>field.field.widget.__class__.__name__</code></p>
<p>Unfortunately, you're not allowed access to underscore variables in templates. <strong>Great!</strong></p>
<p>You <em>can</em> test <code>field.field.widget.input_type</code> but this only works for text/password <code><input ../></code> types. I need more resolution that that.</p>
<p>To me, however difficult it might look, it makes most sense to do this at template level. I've outsourced the bit of code that handles HTML for fields to a separate template that gets included in the field-loop. This means it is consistent across <code>ModelForm</code>s and standard <code>Form</code>s (something that wouldn't be true if I wrote an intermediary Form class).</p>
<p>If you can see a universal approach that doesn't require me to edit 20-odd forms, let me know too!</p>
http://stackoverflow.com/questions/1804423/whats-the-difference-between-var-x-and-var-x-in-jquery/1804436#18044364Answer by Oli for What's the difference between ‘var $x’ and ‘var x’ in jQuery?Oli2009-11-26T15:48:29Z2009-11-26T15:48:29Z<p>The difference? One variable starts with <code>$</code>.</p>
<p>And neither has anything to do with jQuery - it's just javascript.</p>
http://stackoverflow.com/questions/182112/what-are-some-funny-loading-statements-to-keep-users-amused338What are some funny loading statements to keep users amused?Oli2008-10-08T10:51:34Z2009-11-24T15:19:59Z
<p>Nobody likes waiting but unfortunately in the <a href="http://en.wikipedia.org/wiki/Ajax%5F%28programming%29" rel="nofollow">Ajax</a> application I'm working on at the moment, there is one fair-sized pause (1-2 seconds a go) that users have to undergo each and every time they want to load up a chunk of data.</p>
<p>I've tried to make the load as interactive as possible. There's an animated GIF alongside a very plain, very dull "Loading..." message.</p>
<p>So I thought it might be quite fun to come up with a batch of 50-or-so funny-looking messages and pick from them randomly so the user never knows what they're going to see. The time they would have spent growing impatient is fruitfully used.</p>
<p>Here's what I've come up with so far, just to give you an idea. </p>
<pre><code>var randomLoadingMessage = function() {
var lines = new Array(
"Locating the required gigapixels to render...",
"Spinning up the hamster...",
"Shovelling coal into the server...",
"Programming the flux capacitor"
);
return lines[Math.round(Math.random()*(lines.length-1))];
}
</code></pre>
<p><em>(Yes -- I know some of those are pretty lame -- That's why I'm here :)</em></p>
<p>The funniest I see today will get the prestigious "Accepted Answer" award. Others get votes for participation.</p>
<p><strong>Enjoy!!</strong></p>
<p><strong><em>Edit:</em></strong> Why the downvote? I'll agree that this isn't about binary arithmetic or concatenating databases, but keeping users engaged in an unfortunately slow system <em>is</em> a system design issue.</p>
http://stackoverflow.com/questions/1783799/good-resources-for-experienced-web-developers-moving-to-php/1783909#17839090Answer by Oli for Good resources for experienced web developers moving to PHP?Oli2009-11-23T15:36:04Z2009-11-23T15:36:04Z<p>For your "specifically" part, you want to step away from raw PHP and spend some time playing with one of the numerous frameworks that spawned to overcome PHP's lack of RAD features.</p>
<p><a href="http://cakephp.org" rel="nofollow">http://cakephp.org</a> - <a href="http://www.symfony-project.org" rel="nofollow">http://www.symfony-project.org</a> - <a href="http://framework.zend.com" rel="nofollow">http://framework.zend.com</a></p>
<p>They all have their own slants on templating (all frameworks do) but none (and this extends outside of PHP) follow the same ideas as Microsoft. Server and User controls are fairly unique techniques.</p>
<p>As I said in my comments, they're nowhere near as clean as "proper" web frameworks (django, rails, even webpy etc) but they do work a lot better than just hacking away on your own.</p>
http://stackoverflow.com/questions/1772223/calling-small-app-in-template-django/1772285#17722851Answer by Oli for Calling small app in template : DjangoOli2009-11-20T18:05:41Z2009-11-20T18:05:41Z<ol>
<li>Create a template tag that you can call on the page</li>
<li>Create a context processor and inject extra context variables onto each pageload</li>
</ol>
<p>I'm sure there are other ways of doing this but those are probably the most logical two. The first gives you more power and will waste less processing time (for pages where you don't want to display the data) but a context processor is much more simple to write (you don't have to bend over backwards to please the template_tag gods).</p>
<p>Both are valuable things to know so there you go. Go and learn!</p>
http://stackoverflow.com/questions/1765030/asp-vs-asp-net-thin-client-vs-thick-client/1765133#17651331Answer by Oli for ASP vs. ASP.NET ( Thin client vs. thick client )Oli2009-11-19T17:37:07Z2009-11-19T17:37:07Z<p>Old ASP will waste your time. New development techniques and libraries let you do big things a fraction of the time you'd waste in classic ASP. Sure, for a one-off simple script, ASP might carry you, but a full site, no thanks.</p>
<p>Anyway...</p>
<p>I think you're right. I always get a site running in plain, no-JS code first. This ensures it works for people that don't use JS (probably not an issue for you) but it's not difficult to layer on the AJAX at a later point.</p>
<p>In fact, if you're willing to spend money on components (as it sounds you have in the past) there are plenty of extensions for AJAX.NET that can take you from zero-JS to lovely pages. They might not be as efficient as what you had before, but they'll be a lot easier to maintain.</p>
<p>Or you can layer on the AJAX after the site is done. You could even try to keep the API from the server to client the same as the old site so your old JS "just works".</p>
<p>There's clearly not just one best answer for this.</p>
<p>As for what you gain: So many benefits in terms of rapid development, a much better design, seriously improved language features (C# and VB.NET are proper programming languages after all) and the ability to do now-everyday things without having to run off to a third-party component.</p>
<p>And if you want to save a bit more time and a whole shed-load of infrastructure and licensing cash, you could even take a look at Django and/or Ruby on Rails.</p>
http://stackoverflow.com/questions/1764965/facebook-app-shows-a-blank-page/1764981#17649810Answer by Oli for Facebook app shows a blank pageOli2009-11-19T17:14:09Z2009-11-19T17:14:09Z<p>Don't you think you should output <code>$friends</code>?</p>
<p>Just something like:</p>
<pre><code>$friends = $facebook->api_client->friends_get();
echo $friends;
</code></pre>
<p>I'm not sure what format the API uses, you might need to cycle through the array... but if that means nothing to you, you might need to learn some programming before you start pulling external APIs.</p>
<p><strong>Edit:</strong> If you're actually getting a blank page, ignore above. Facebook can't see your server for some reason, or it's crashing out. Stick an echo (<code>echo "testing";</code>) right up at the top and see if you can see that on the output. </p>
<p>If you can, there's something dark and twisty happening, RTMA or haggle with the Facebook gods on their dev forums.</p>
<p>If you can't, I'd wager facebook isn't actually accessing your site and there's something wrong in the application settings.</p>
http://stackoverflow.com/questions/1757755/check-a-phrase-is-not-in-an-a-or-other-element1Check a phrase is not in an <a> (or other) elementOli2009-11-18T17:37:49Z2009-11-18T17:57:46Z
<p>A friend is writing an advertisement script that puts links around select phrases in HTML code. </p>
<p>Naturally if the phrase is already inside an <code><a></code> element (or another element that doesn't allow it - like if the phrase is found in the attribute of an element), he doesn't want the script to write out a link as it would break validation.</p>
<p>He asked me what I thought. After some bumbling around, I'm asking you all what you think.</p>
<p>Just to clarify, the input is a whole blog post in HTML. Example:</p>
<pre><code><p>This is a short blog post about ponies!</p>
<p>I have <a href="/ponies">written about ponies before</a>.</p>
<p><img src="/media/ponies.jpg" /></p>
</code></pre>
<p>For this example, say I want to replace <code>ponies</code> (any case) with <code><a href="http://www.ponies.com">ponies</a></code> (but with the original case).</p>
<p>The output from above should read:</p>
<pre><code><p>This is a short blog post about <a href="http://www.ponies.com">ponies</a>!</p>
<p>I have <a href="/ponies">written about ponies before</a>.</p>
<p><img src="/media/ponies.jpg" /></p>
</code></pre>
<p>We don't need full code but good ideas/regexes are immensely welcome. He's writing this in PHP but language-neutral is fine.</p>
http://stackoverflow.com/questions/1691041/how-to-mimic-dropbox-functionality-with-ruby-script/1691124#16911241Answer by Oli for How to mimic DropBox functionality with Ruby script?Oli2009-11-06T23:02:33Z2009-11-06T23:11:42Z<p>If I were faced with this, I would use something like git or bzr to handle the version checking and just call add then commit from your script and monitor which files have changed (and therefore need to be uploaded).</p>
<p>This adds the benefit of full version control over files and it's mostly cross platform (if you include binaries for each platform).</p>
<p>Note this doesn't handle your listening problem, just what you do when you know something has changed. You could schedule the task (via various routes) but I still like the idea of a proper VCS under the hood.</p>
<p>I just found this: <a href="http://www.codeforpeople.com/lib/ruby/dirwatch/" rel="nofollow">http://www.codeforpeople.com/lib/ruby/dirwatch/</a></p>
<p>You'd need to read over it as I can't vouch for its efficiency or reliability. It appears to use SQLite, so it might be better just to manually check once every 10 seconds (or something along those lines).</p>
http://stackoverflow.com/questions/1691085/obfuscating-your-jquery-code/1691102#16911021Answer by Oli for Obfuscating your jquery code.Oli2009-11-06T22:59:25Z2009-11-06T22:59:25Z<p>You could <a href="http://www.minifyjavascript.com/" rel="nofollow">minify it</a> (better) or <a href="http://dean.edwards.name/packer/" rel="nofollow">pack it</a> (smaller but slower).</p>
<p>They're not airtight but if you're doing complicated enough things, they'll deter 99.99% of people from reverse engineering.</p>
<p>Both these approaches work well on all modern (IE5+ browsers).</p>
http://stackoverflow.com/questions/346467/format-numbers-in-django-templates2Format numbers in django templatesOli2008-12-06T16:46:49Z2009-11-06T19:43:30Z
<p>I'm trying to format numbers. Examples:</p>
<pre><code>1 => 1
12 => 12
123 => 123
1234 => 1,234
12345 => 12,345
</code></pre>
<p>It strikes as a fairly common thing to do but I can't figure out which filter I'm supposed to use.</p>
<p>Edit: If you've a generic Python way to do this, I'm happy adding a formatted field in my model.</p>
http://stackoverflow.com/questions/477816/the-right-json-content-type33The *right* JSON content type?Oli2009-01-25T15:25:19Z2009-11-05T03:56:58Z
<p>Right I've been messing around with json for some time, just pushing it out as text and it hasn't hurt anybody (I know of) but I'd like to start doing things properly.</p>
<p>I have seen <em>so</em> many purported "standards" for the json content type:</p>
<pre><code>application/json
application/x-javascript
text/javascript
text/x-javascript
text/x-json
</code></pre>
<p>But which is right? Or best? I gather that there are security and browser support issues varying between them...</p>
<p>(I know there's <a href="http://stackoverflow.com/questions/404470/what-mime-type-if-json-is-being-returned-by-a-rest-api">a similar question</a> but I'd like a slightly more targeted answer.)</p>
http://stackoverflow.com/questions/1669104/edit-django-user-admin-template2Edit Django User admin templateOli2009-11-03T18:04:12Z2009-11-03T22:37:22Z
<p>I need to edit the template shown for editing a specific user. I need to display some additional data that doesn't fit in with an include-style.</p>
<p>I apologise for the short question... but that's pretty much all there is at the moment.</p>
http://stackoverflow.com/questions/1633932/slice-a-string-after-a-certain-phrase0Slice a string after a certain phrase?Oli2009-10-27T22:03:44Z2009-10-28T14:04:26Z
<p>I've got a batch of strings that I need to cut down. They're basically a descriptor followed by codes. I only want to keep the descriptor.</p>
<pre><code>'a descriptor dps 23 fd'
'another 23 fd'
'and another fd'
'and one without a code'
</code></pre>
<p>The codes above are <code>dps</code>, <code>23</code> and <code>fd</code>. They can come in any order, are unrelated to each other and might not exist at all (as in the last case).</p>
<p>The list of codes is fixed (or can be predicted, at least), so assuming a code is never used within a legitimate descriptor, how can I strip off everything after the first instance of a code.</p>
<p>I'm using Python.</p>
http://stackoverflow.com/questions/1548704/delete-multiple-files-matching-a-pattern0Delete multiple files matching a patternOli2009-10-10T18:32:43Z2009-10-10T19:22:33Z
<p>I have made an online gallery using Python and Django. I've just started to add editing functionality, starting with a rotation. I use sorl.thumbnail to auto-generate thumbnails on demand.</p>
<p>When I edit the original file, I need to clean up all the thumbnails so new ones are generated. There are three or four of them per image (I have different ones for different occasions). </p>
<p>I <em>could</em> hard-code in the file-varients... But that's messy and if I change the way I do things, I'll need to revisit the code.</p>
<p>Ideally I'd like to do a regex-delete. In regex terms, all my originals are named like so:</p>
<pre><code>^(?P<photo_id>\d+)\.jpg$
</code></pre>
<p>So I want to delete:</p>
<pre><code>^(?P<photo_id>\d+)[^\d].*jpg$
</code></pre>
<p>(Where I replace <code>photo_id</code> with the ID I want to clean.)</p>
http://stackoverflow.com/questions/1531402/for-list-unless-empty-in-python3For list unless empty in pythonOli2009-10-07T12:43:07Z2009-10-07T21:23:12Z
<p>I've been writing a lot of constructs like this the past couple of days:</p>
<pre><code>list = get_list()
if list:
for i in list:
pass # do something with the list
else:
pass # do something if the list was empty
</code></pre>
<p>Lot of junk and I assign the list to a real variable (keeping it in memory longer than needed). Python has simplified a lot of my code up til now... Is there a easy way to do this?</p>
<p>(My understanding is that the <code>else</code> in the <code>for: else:</code> construct always triggers after it has looped, empty or not - so not what I want)</p>
http://stackoverflow.com/questions/1527710/get-records-before-and-after-current-selection-in-django-query1Get records before and after current selection in Django queryOli2009-10-06T19:48:59Z2009-10-06T21:18:22Z
<p>It sounds like an odd one but it's a really simple idea. I'm trying to make a simple Flickr for a website I'm building. This specific problem comes when I want to show a single photo (from my <code>Photo</code> model) on the page but I also want to show the image before it in the stream and the image after it.</p>
<p>If I were only sorting these streams by date, or was only sorting by ID, that might be simpler... But I'm not. I want to allow the user to sort and filter by a whole variety of methods. The sorting is simple. I've done that and I have a result-set, containing 0-many <code>Photo</code>s.</p>
<p>If I want a single <code>Photo</code>, I start off with that filtered/sorted/etc stream. From it I need to get the current <code>Photo</code>, the <code>Photo</code> before it and the <code>Photo</code> after it.</p>
<p>Here's what I'm looking at, at the moment.</p>
<pre><code>prev = None
next = None
photo = None
for i in range(1, filtered_queryset.count()):
if filtered_queryset[i].pk = desired_pk:
if i>1: prev = filtered_queryset[i-1]
if i<filtered_queryset.count(): next = filtered_queryset[i+1]
photo = filtered_queryset[i]
break
</code></pre>
<p>It just seems disgustingly messy. And inefficient. Oh my lord, so inefficient. Can anybody improve on it though?</p>
<p>Django queries are late-binding, so it would be nice to make use of that though I guess that might be impossible given my horrible restrictions.</p>
<p>Edit: it occurs to me that I can just chuck in some SQL to re-filter queryset. If there's a way of selecting something with its two (or one, or zero) closest neighbours with SQL, I'd love to know!</p>
http://stackoverflow.com/questions/323313/django-versus-plone/323446#3234463Answer by Oli for Django versus Plone?Oli2008-11-27T10:46:30Z2009-10-05T23:07:13Z<p>If you want to build web applications, Django is probably the tool you want.</p>
<p>If you want to do a lot of content management and you'd prefer to have everything like that done for you, you might find it easier going with Plone, but as e-satis said, Plone can be a real pain in the behind when you want to make serious changes.</p>
<p>Django on the other hand doesn't give you that much to start with other than a great library of development tools.</p>
http://stackoverflow.com/questions/1508880/mashing-and-sorting-3-models-in-one-data-set1Mashing and sorting 3 models in one data setOli2009-10-02T10:55:49Z2009-10-02T14:37:17Z
<p>I've got three models that show some sort of activity on a website I'm making. Song, Vote and Comment. They all share a common column <code>when</code> which shows when a record was created.</p>
<p>I want to show a list of activity based on all three models. In short I want to munge them together, sort by <code>when</code>, and scrape off the first 10 records.</p>
<p><em>How</em> I do this is the question. I know I could get 10 recods for each model, put them in a dictionary and sort by date (well, once I know how to sort by date in Python), but this seems fairly inefficient.</p>
http://stackoverflow.com/questions/1508906/python-2-6-or-python-3-1/1508929#15089299Answer by Oli for python 2.6 or python 3.1?Oli2009-10-02T11:12:05Z2009-10-02T11:12:05Z<p>I would go with 2.6 for a couple of reasons.</p>
<ol>
<li><p>There's so much more material (books, examples, etc) based on 2.6. Some things might not work under 3.x, and you'll be able to get some good second-hand deals on 2.4-6 books.</p></li>
<li><p>The majority of libraries you'll want to pull in are still aimed at 2.6. This will change in time, but 2.6 support won't vanish overnight. Far from it. Linux distributions (that have a lot tied into python) aren't planning to move on for at least another year, so you're safe!</p></li>
</ol>
http://stackoverflow.com/questions/1872796/changed-django-server-location-now-logins-dont-work/1874894#1874894Comment by Oli on Changed Django server location, now logins don't workOli2009-12-09T16:59:42Z2009-12-09T16:59:42ZI can log in like a normal user (remotely) on Firefox I appear to be the only one. Other users over a variety of browsers in other places are having epic issues. I've got hundreds of users on this so I need something solid before I can go back to the old domain name.http://stackoverflow.com/questions/1872744/how-to-design-a-wolfram-alpha-like-search-engine/1872852#1872852Comment by Oli on How to design a Wolfram Alpha-like search engine?Oli2009-12-09T13:18:33Z2009-12-09T13:18:33ZI count PHP frameworks as a hack because you have to work right next to them. There's such little focus on packing PHP in any way apart from "download it into your working directory" that it makes me slightly sick to have to work with PHP espcially when I'm working on somebody elses code and they've hacked the framework even more to suit their own twisted coding ethos. Much worse than monkey-patching because it's a real PITA to see what they've done. That and 90+% of PHP tutorials start you writing wet (ie not-DRY), flabby, content-coupled, insecure, hard to read, probably uncommented code.http://stackoverflow.com/questions/1872744/how-to-design-a-wolfram-alpha-like-search-engine/1872852#1872852Comment by Oli on How to design a Wolfram Alpha-like search engine?Oli2009-12-09T11:18:01Z2009-12-09T11:18:01ZI honestly think PHP damages new developers by not having a strong handle on even remotely modern techniques like OOP and MVC/MVT. I know PHP+<framework> can hack in MVC support but you end up with a real mess of files and by itself, PHP teaches a very linear way of thinking with little regard for code-reuse.http://stackoverflow.com/questions/1832802/django-redundancy-and-replication-over-two-vps-accounts/1834127#1834127Comment by Oli on Django redundancy and replication over two VPS accountsOli2009-12-02T17:22:59Z2009-12-02T17:22:59ZIt's reliability I'm after more than raw performance -- I care if the system has to go down for upgrades or unknown reasons -- but I see your point about SQLite; it has to go.http://stackoverflow.com/questions/200640/are-php-short-tags-acceptable-to-use/200666#200666Comment by Oli on Are PHP short tags acceptable to use?Oli2009-12-01T11:49:20Z2009-12-01T11:49:20ZI'm not here to discuss the "big questions" like why we're here, how did it all begin, etc. Shorttag support is not guaranteed on shared servers and it's being removed completely next major version. That's all you need to know.http://stackoverflow.com/questions/722463/is-google-app-engine-better-than-webfaction-for-a-beginner-in-django-devComment by Oli on Is Google App Engine better than Webfaction for a beginner in Django dev?Oli2009-11-30T15:39:38Z2009-11-30T15:39:38ZWebfaction and Google App Engine are "the best choices for Django"? Since when? I find my VPS does an amazing job with tons more flexibility than either WebFaction or GAE give you.http://stackoverflow.com/questions/1810757/only-validate-certain-fields-if-a-booleanfield-is-set/1810856#1810856Comment by Oli on Only validate certain fields if a BooleanField is setOli2009-11-29T01:47:28Z2009-11-29T01:47:28ZI had an idea about thatm Nick. Instead of calling <code>self.cleaned_data['field_name']</code>, called <code>self.clean_field_name()</code> - That way you're guaranteed a result (unless your custom cleans have messy circular dependencies). It's a little more work for the CPU but it should always work.http://stackoverflow.com/questions/1809874/get-type-of-django-form-widget-from-within-template/1809982#1809982Comment by Oli on Get type of Django form widget from within templateOli2009-11-27T18:15:44Z2009-11-27T18:15:44ZWelcome to SO btw.http://stackoverflow.com/questions/145983/pitfalls-of-object-oriented-programming/146099#146099Comment by Oli on Pitfalls of Object oriented programmingOli2009-11-26T15:17:45Z2009-11-26T15:17:45ZThe "question" isn't a question; it's rhetorical. Seeing people rant on about over-using something being bad grinds my nuts. You don't <b>*have*</b> to over-OOP things, just as you don't <b>*have*</b> to over-normalise. If you're drowning in OOP, you've gone too far. You've abused it. Simple as that.http://stackoverflow.com/questions/1783799/good-resources-for-experienced-web-developers-moving-to-phpComment by Oli on Good resources for experienced web developers moving to PHP?Oli2009-11-23T17:02:24Z2009-11-23T17:02:24ZI'm not saying don't migrate - Just migrate to something else if you can. Django is miles better than ASPNET was when I used it (v2) IMO. But it's very different and that can be intimidating.http://stackoverflow.com/questions/1783799/good-resources-for-experienced-web-developers-moving-to-phpComment by Oli on Good resources for experienced web developers moving to PHP?Oli2009-11-23T15:28:48Z2009-11-23T15:28:48ZTo people reading the above: I'm not ragging on PHP just because I hate it - I used it professionally for many years after years on ASP.NET. I have done this exact migration and was very unhappy with it. I wish Django was as mature as it is now back then. I'd be happier and richer now.http://stackoverflow.com/questions/1783799/good-resources-for-experienced-web-developers-moving-to-phpComment by Oli on Good resources for experienced web developers moving to PHP?Oli2009-11-23T15:26:51Z2009-11-23T15:26:51ZDon't. Seriously, know it or not, you get a lot of structure from ASP.NET that you take for granted. PHP is a mess. You <i>can</i> do certain advanced things but even just on a language basis, it's a joke. If you have the choice, choose something with a real language behind it like Django (Python is awesome) or Ruby on Rails. Much faster for building websites and they're maintainable (something that is painful 6months on in PHP).http://stackoverflow.com/questions/1772223/calling-small-app-in-template-django/1772256#1772256Comment by Oli on Calling small app in template : DjangoOli2009-11-20T18:06:25Z2009-11-20T18:06:25ZNothing? Template tags do something.http://stackoverflow.com/questions/1757755/check-a-phrase-is-not-in-an-a-or-other-element/1757775#1757775Comment by Oli on Check a phrase is not in an <a> (or other) elementOli2009-11-18T22:08:50Z2009-11-18T22:08:50ZIndeed. I'm not trying to parse the HTML so much as just check an phrase is rendered text and isn't inside invalid elements. Sure the answer may be to parse the HTML to find that out, but telling us what not to do, doesn't get us any nearer to the best solution for this problem.http://stackoverflow.com/questions/1669104/edit-django-user-admin-template/1669169#1669169Comment by Oli on Edit Django User admin templateOli2009-11-03T18:58:02Z2009-11-03T18:58:02ZThanks Gabriel!