User pjbeardsley - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T13:57:27Zhttp://stackoverflow.com/feeds/user/6812http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/957577/serving-gzipped-content-from-django4Serving gzipped content from djangopjbeardsley2009-06-05T19:07:53Z2009-12-08T03:28:26Z
<p>I'm trying to serve a gzipped version of a text/html page in Django, but Firefox is telling me there's a content encoding error.</p>
<p>NOTES:</p>
<ul>
<li>I realize this is not a best practice and I'm most likely going to use mod_gzip. This is just a learning exercise to understand what's going on.</li>
<li>I know about the Django gzip middleware-- it has problems with binary files. </li>
</ul>
<p>Here's my code:</p>
<pre><code>rendered_page = zlib.compress(template.render(context).encode('utf-8'))
response = HttpResponse(rendered_page)
response['Content-Encoding'] = 'gzip'
response['Content-Length'] = len(rendered_page)
return response
</code></pre>
<p>Am I missing something here? Is it possible that the content length is wrong? Are there additional headers I'm missing?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1725165/php-calling-a-function-within-a-class-method/1725272#17252720Answer by pjbeardsley for PHP Calling a function within a Class method?pjbeardsley2009-11-12T20:48:19Z2009-11-12T20:48:19Z<p>The sample you provided is not valid PHP and has a few issues:</p>
<pre><code>public scoreTest() {
...
}
</code></pre>
<p>is not a proper function declaration -- you need to declare functions with the 'function' keyword.</p>
<p>The syntax should rather be:</p>
<pre><code>public function scoreTest() {
...
}
</code></pre>
<p>Second, wrapping the bigTest() and smallTest() functions in public function() {} does not make them private — you should use the private keyword on both of these individually:</p>
<pre><code>class test () {
public function newTest(){
$this->bigTest();
$this->smallTest();
}
private function bigTest(){
//Big Test Here
}
private function smallTest(){
//Small Test Here
}
public function scoreTest(){
//Scoring code here;
}
}
</code></pre>
<p>Also, it is convention to capitalize class names in class declarations ('Test').</p>
<p>Hope that helps.</p>
http://stackoverflow.com/questions/1445087/adjusting-time-zone-in-php-with-datetime-datetimezone1Adjusting time zone in PHP with DateTime / DateTimeZonepjbeardsley2009-09-18T14:57:08Z2009-09-18T21:42:31Z
<p>There's a lot of info on doing time zone adjustments in PHP, but I haven't found an answer for specifically what I want to do due to all the noise.</p>
<p>Given a time in one timezone, I want to convert it to the time in another timezone. </p>
<p><a href="http://stackoverflow.com/questions/1074290/calculate-the-difference-between-date-times-in-php">This</a> is essentially what I want to do, but I need to be able to do it using only the built-in PHP libs, not PEAR Date.</p>
<p>This is what I've been doing, but it seems to always give me the offset relative to GMT:</p>
<pre><code>$los_angeles_time_zone = new DateTimeZone('America/Los_Angeles');
$hawaii_time_zone = new DateTimeZone('Pacific/Honolulu');
$date_time_los_angeles = new DateTime('2009-09-18 05:00:00', $los_angeles_time_zone);
printf("LA Time: %s<br/>", $date_time_los_angeles->format(DATE_ATOM));
$time_offset = $hawaii_time_zone->getOffset($date_time_los_angeles);
printf("Offset: %s<br/>", $time_offset);
</code></pre>
<p>This is the output:</p>
<blockquote>
<p>LA Time: 2009-09-18T05:00:00-07:00<br/>
Offset: -36000</p>
</blockquote>
<p>I was expecting 3 hours (10800 seconds). but the '-7:00' thing tells me it's keeping everything relative to GMT, which maybe explains why it's giving me the "absolute" offset.</p>
<p>How do I just get the offset between the two timezones without all of this GMT hoohah?</p>
<p>Thanks.</p>
<p>UPDATE:</p>
<p>I occured to me that I could do this and get what I want:</p>
<pre><code> $date_time_los_angeles = new DateTime('2009-09-18 05:00:00', $los_angeles_time_zone);
printf("LA Time: %s<br/>", $date_time_los_angeles->format(DATE_ATOM));
$date_time_hawaii = new DateTime('2009-09-18 05:00:00', $hawaii_time_zone);
printf("Hawaii Time: %s<br/>", $date_time_hawaii->format(DATE_ATOM));
$time_offset = $los_angeles_time_zone->getOffset($date_time_los_angeles) - $hawaii_time_zone->getOffset($date_time_los_angeles);
printf("Offset: %s<br/>", $time_offset);
</code></pre>
<p>But it feels awkward to me. Anyone know a cleaner way to do it?</p>
http://stackoverflow.com/questions/1349040/can-cufon-style-form-text-input-and-textarea1Can cufon style form text input and textarea?pjbeardsley2009-08-28T19:58:50Z2009-08-28T20:03:43Z
<p>Is it possible to do this? I haven't been able to find anything in the documenation that says you CAN'T do it, but the following selector is not working for me:</p>
<pre><code>Cufon.set('fontFamily', 'Museo');
Cufon.set('fontWeight', '300');
Cufon.replace('input.text, input.password, textarea');
</code></pre>
<p>Any ideas, or does Cufon simply not support this?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1126418/using-parent-variables-in-extending-class/1126757#11267572Answer by pjbeardsley for Using parent variables in extending classpjbeardsley2009-07-14T17:11:52Z2009-07-14T17:11:52Z<p>Take a step back and look at the relationships between your classes. In your database, a Project "has a" Member(or 'user' in the DB).</p>
<p>Your class implementations do not reflect this relationship. MainClass "has a" Member, but Project does not. You're using a member of the base class to create this relationship.</p>
<p>Unless $member in MainClass is static, an instance of Project can't see what another instance of MainClass has set for it, because they're separate instances. I would not recommend making $member static, because you'd essentially be using it like a global variable.</p>
<p>Like I said, take a step back and look at the relationships. Do they generally follow the relationships in your database schema? Why do Member and Project derive from MainClass? What is their common behavior?</p>
<p>I realize I'm asking more questions than I'm answering, but my gut reaction is that this particular technical issue isn't your real problem-- it's that your class design needs to be rethunk a little bit.</p>
<p>Hope that helps.</p>
http://stackoverflow.com/questions/1065089/auto-increment-a-value-in-django-with-respect-to-the-previous-one/1065144#10651440Answer by pjbeardsley for Auto increment a value in Django with respect to the previous onepjbeardsley2009-06-30T18:12:33Z2009-06-30T18:12:33Z<p>AutoField is the field type that Django uses for the model base class' 'id' property, but you can use it for additional autoincremented fields.</p>
<p>I don't think you can do any formatting like in your example, but a good approach would be to make a custom field type that overrides the save() method to perform the desired formatting.</p>
http://stackoverflow.com/questions/1049947/should-utf-16-be-considered-harmful/1050186#10501860Answer by pjbeardsley for Should UTF-16 be considered harmful?pjbeardsley2009-06-26T17:06:58Z2009-06-26T17:06:58Z<p>My guesses as to the why the Windows API (and presumably the Qt libraries) use UTF-16:</p>
<ul>
<li>UTF-8 wasn't around when these APIs were being developed.</li>
<li>The OS needs to do a lookup on the code points to display the glyphs-- if the data is passed around internally as UTF-8, every time it needs to do that for a multibyte character, it would have to convert from UTF-8 to UTF-16/32. If the bytestream is stored as "wide" chars in memory, it won't need to do this conversion. So increased memory usage is a tradeoff for decreased conversion work and complexity.</li>
</ul>
<p>When writing to a stream, however, it's considered best practice to use UTF-8 for the reasons outlined in the Joel article referenced above.</p>
http://stackoverflow.com/questions/10426/what-is-a-good-windows-hex-editor-viewer/1038800#10388000Answer by pjbeardsley for What is a good Windows hex editor / viewer?pjbeardsley2009-06-24T14:39:20Z2009-06-24T14:39:20Z<p>I've always been a fan of XVII:</p>
<p><a href="http://www.chmaas.handshake.de/delphi/freeware/xvi32/xvi32.htm" rel="nofollow">http://www.chmaas.handshake.de/delphi/freeware/xvi32/xvi32.htm</a></p>
http://stackoverflow.com/questions/970847/firebug-vs-safari-javascript-debugger2Firebug vs. Safari Javascript debuggerpjbeardsley2009-06-09T15:36:39Z2009-06-12T20:28:52Z
<p><strong>[DISCLAIMER: My development machine is running OS X Tiger, so my question and experiences are specific to that. But I would not mind hearing feedback on Webkit for Windows.]</strong></p>
<p>I've been a longtime Firebug user, but I've grown tired of it's twitchiness. I'm talking specifically about when it will not stop on breakpoints, lose the current line in the debugger pane, or slow execution to a crawl.</p>
<p>I briefly played around with the debugger in Safari's Web Inspector, and it just feels more solid.</p>
<p>Has anyone else switched to the Safari debugger? If so, were you glad you did? Are there any reasons I shouldn't consider it?</p>
http://stackoverflow.com/questions/982564/measuring-bluetooth-signal-strength-via-applescript-on-mac-os-x/982722#9827220Answer by pjbeardsley for Measuring bluetooth signal strength via AppleScript on Mac OS Xpjbeardsley2009-06-11T18:10:15Z2009-06-11T18:10:15Z<p>From looking at the <a href="http://developer.apple.com/documentation/DeviceDrivers/Reference/IOBluetooth/IOBluetoothDevice%5Fh/Classes/IOBluetoothDevice/CompositePage.html" rel="nofollow">Cocoa IOBluetoothDevice docs</a>, it appears there is no way to query signal strength.</p>
<p>You can only query if the device is connected or not.</p>
http://stackoverflow.com/questions/971660/interfacing-web-crawler-with-django-front-end/971729#9717291Answer by pjbeardsley for Interfacing web crawler with Django front endpjbeardsley2009-06-09T18:28:06Z2009-06-09T18:28:06Z<p>If you insert your django project's app directories into sys.path, you can write standard Python scripts that utilize the Django ORM functionality. We have an /admin/ directory that contains scripts to perform various tasks-- at the top of each script is a block that looks like:</p>
<pre><code>sys.path.insert(0,os.path.abspath('../my_django_project'))
sys.path.insert(0,os.path.abspath('../'))
sys.path.insert(0,os.path.abspath('../../'))
os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'
</code></pre>
<p>Then it's just a matter of using your tool of choice to crawl the web and using the Django database API to store the data.</p>
http://stackoverflow.com/questions/969712/best-way-to-debug-javascript-on-an-iphone-app/969764#9697642Answer by pjbeardsley for Best way to debug Javascript on an iPhone app?pjbeardsley2009-06-09T12:23:50Z2009-06-09T12:23:50Z<p>Since Safari on the iPhone is using webkit, you could use the debugger built into desktop Safari's web inspector. While there will probably be some quirks that are different between platforms, it will give you a pretty good idea of what's going on in the interpreter.</p>
http://stackoverflow.com/questions/957592/functions-inside-functions-in-c/957623#9576230Answer by pjbeardsley for Functions inside functions in Cpjbeardsley2009-06-05T19:14:50Z2009-06-05T19:14:50Z<p>I'm not an expert, but I'm willing to bet this is either explicitly not allowed or undefined by the C99 spec, so it's probably best to stay away from it.</p>
http://stackoverflow.com/questions/854406/using-string-literals-as-parameters-to-template-tags-in-django-templates0Using string literals as parameters to template tags in Django templatespjbeardsley2009-05-12T19:22:42Z2009-05-12T19:30:19Z
<p>One of the things I find myself doing often is passing string literals as parameters to template tags or functions; for instance:</p>
<pre><code>{% url my-url 'my_param' %}
</code></pre>
<p>Unfortunately, the django template engine doesn't let you do this. So I find myself doing this a lot in my view code:</p>
<pre><code>my_context_dict['MY_PARAM'] = 'my_param'
</code></pre>
<p>and then in my view code:</p>
<pre><code>{% url my-url MY_PARAM %}
</code></pre>
<p>Or creating a series of URL mappings, which I personally try to avoid.</p>
<p>Is it possible to use a string literal in Django templates? Or possibly a more elegant solution? I haven't seen anything on here or in the documentation.</p>
http://stackoverflow.com/questions/164137/how-do-i-deploy-a-python-desktop-application/164272#1642722Answer by pjbeardsley for How do I deploy a Python desktop application?pjbeardsley2008-10-02T19:56:36Z2008-10-02T19:56:36Z<p>Wow, there are a lot of questions in there:</p>
<ul>
<li><p>It is possible to run the bytecode (.pyc) file directly from the Python interpreter, but I haven't seen any bytecode obfuscation tools available.</p></li>
<li><p>I'm not aware of any "all in one" deployment solution, but:</p>
<ul>
<li><p>For Windows you could use NSIS(<a href="http://nsis.sourceforge.net/Main_Page" rel="nofollow">http://nsis.sourceforge.net/Main_Page</a>). The problem here is that while OSX/*nix comes with python, Windows doesn't. If you're not willing to build a binary with py2exe, I'm not sure what the licensing issues would be surrounding distribution of the Python runtime environment (not to mention the technical ones).</p></li>
<li><p>You could package up the OS X distribution using the "bundle" format, and *NIX has it's own conventions for installing software-- typically a "make install" script.</p></li>
</ul></li>
</ul>
<p>Hope that was helpful.</p>
http://stackoverflow.com/questions/33813/what-are-some-useful-textmate-features/66060#660604Answer by pjbeardsley for What are some useful TextMate features?pjbeardsley2008-09-15T19:38:56Z2008-09-15T19:38:56Z<p>I like the integrated HTML/XML Tidy. Cmd-shift-H is your friend.</p>
<p>Also, nice integration with a variety of scp/sftp clients.</p>
http://stackoverflow.com/questions/64387/how-can-i-perform-an-action-n-many-times-in-textmate-both-emacs-and-vim-can-do/64975#649752Answer by pjbeardsley for How can I perform an action n-many times in TextMate ( both Emacs and Vim can do it easily! )?pjbeardsley2008-09-15T17:33:52Z2008-09-15T17:33:52Z<p>I would create a bundle command to do this.</p>
<p>You can take editor selection as input to your script, then replace it with the result of execution. This command, for example, will take a selected number and print the character '#' that number of times.</p>
<pre><code>python -c "print '#' * $TM_SELECTED_TEXT"
</code></pre>
<p>Of course this example doesn't allow you to specify the character, but it gives you an idea of what's possible.</p>
http://stackoverflow.com/questions/1126418/using-parent-variables-in-extending-class/1126757#1126757Comment by pjbeardsley on Using parent variables in extending classpjbeardsley2009-07-15T18:47:22Z2009-07-15T18:47:22ZI think you're having trouble with the difference between classes and instances.
Member and Project both derive from MainClass. If you create an instance of Member, and then you create an instance of MainClass and call setMember(), now only that PARTICULAR instance of MainClass has it's $member field set-- any other instance of MainClass, Project, or Member will NOT be able to see that field, because they all have their own "personal" copy and it's not set.
To do what you're trying to do, you'd need to create an instance of Project, call it's setMember(), then addProject() should work.http://stackoverflow.com/questions/985800/template-in-djangoComment by pjbeardsley on Template in Djangopjbeardsley2009-06-12T18:47:14Z2009-06-12T18:47:14ZI don't fully understand the question, so I don't feel qualified answering it. But I will tell you that the markup for #2 is correct-- all the other examples are invalid HTML. I think we need to know more about what your 'field' object to answer the question.http://stackoverflow.com/questions/750606/what-technologies-are-you-using-even-though-they-are-embarassingly-out-of-date/750630#750630Comment by pjbeardsley on What technologies are you using even though they are embarassingly out of date?pjbeardsley2009-06-12T18:38:40Z2009-06-12T18:38:40ZI worked on a very monolithic VC6 project where we attempted to drag it kicking and screaming into the modern age. If I recall correctly, the deal breaker was getting it to compile with the _UNICODE flag-- it just required too many risky changes all over the place.http://stackoverflow.com/questions/965082/option-level-control-of-select-inputs-using-django-forms-apiComment by pjbeardsley on <option> Level control of Select inputs using Django Forms APIpjbeardsley2009-06-08T14:30:19Z2009-06-08T14:30:19ZAre you trying to do <optgroup>s? If so, ChoiceField post 1.0 has the ability to do so as described in this ticket:
<a href="http://code.djangoproject.com/ticket/4412" rel="nofollow">code.djangoproject.com/ticket/4412</a>
It doesn't use the label attribute in the <option> tags as you explicitly requested. As far as I know it's still valid markup, however.http://stackoverflow.com/questions/11598/what-is-the-worst-interviewee-answer/385093#385093Comment by pjbeardsley on What is the worst interviewee answer?pjbeardsley2009-06-03T16:56:08Z2009-06-03T16:56:08Z"Add that to the fact that they are in a situation where anything they say can, and will, be used against them."
Yeah-- like right here in this thread!http://stackoverflow.com/questions/859238/apple-genius-mac-mini-hard-cannot-mount-me-tears-softwary-recoveryComment by pjbeardsley on Apple Genius: Mac Mini Hard cannot mount ...Me: <tears>... .. softwary recovery recommendationspjbeardsley2009-05-13T17:32:49Z2009-05-13T17:32:49ZTry mounting from Linux? There's a chance the drivers might be less picky.