User Mark - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T18:17:54Zhttp://stackoverflow.com/feeds/user/65387http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1854237/django-edit-form-based-on-add-form0Django edit form based on add form?Mark2009-12-06T03:18:48Z2009-12-06T05:32:31Z
<p>I've made a nice form, and a big complicated 'add' function for handling it. It starts like this...</p>
<pre><code>def add(req):
if req.method == 'POST':
form = ArticleForm(req.POST)
if form.is_valid():
article = form.save(commit=False)
article.author = req.user
# more processing ...
</code></pre>
<p>Now I don't really want to duplicate all that functionality in the <code>edit()</code> method, so I figured <code>edit</code> could use the exact same template, and maybe just add an <code>id</code> field to the form so the <code>add</code> function knew what it was editing. But there's a couple problems with this</p>
<ol>
<li>Where would I set <code>article.id</code> in the <code>add</code> func? It would have to be after <code>form.save</code> because that's where the article gets created, but it would never even reach that, because the form is invalid due to unique constraints (unless the user edited everything). I can just remove the <code>is_valid</code> check, but then <code>form.save</code> fails instead.</li>
<li>If the form actually <em>is</em> invalid, the field I dynamically added in the edit function isn't preserved.</li>
</ol>
<p>So how do I deal with this?</p>
http://stackoverflow.com/questions/1854236/trigger-jquery-with-php/1854243#18542433Answer by Mark for trigger jquery with php?Mark2009-12-06T03:22:03Z2009-12-06T03:22:03Z<p>Well, you could only trigger it on page load. The way you would do that is by using PHP to write some javascript:</p>
<pre><code><?php
if($some_condition) {
echo '<script>var executeCode = true;</script>';
}
?>
</code></pre>
http://stackoverflow.com/questions/1635995/django-wsgi-refreshing-issues0Django + WSGI: Refreshing Issues?Mark2009-10-28T09:06:04Z2009-12-05T02:38:08Z
<p>I'm developing a Django site. I'm making all my changes on the live server, just because it's easier that way. The problem is, every now and then it seems to like to cache one of the *.py files I'm working on. Sometimes if I hit refresh a lot, it will switch back and forth between an older version of the page, and a newer version.</p>
<p>My set up is more or less like what's described in the Django tutorials: <a href="http://docs.djangoproject.com/en/dev/howto/deployment/modwsgi/#howto-deployment-modwsgi" rel="nofollow">http://docs.djangoproject.com/en/dev/howto/deployment/modwsgi/#howto-deployment-modwsgi</a></p>
<p>I'm <em>guessing</em> it's doing this because it's firing up multiple instances of of the WSGI handler, and depending on which handler the the http request gets sent to, I may receive different versions of the page. Restarting apache seems to fix the problem, but it's annoying.</p>
<p>I really don't know much about WSGI or "MiddleWare" or any of that request handling stuff. I come from a PHP background, where it all just works :)</p>
<p>Anyway, what's a nice way of resolving this issue? Will running the WSGI handler is "daemon mode" alleviate the problem? If so, how do I get it to run in daemon mode?</p>
http://stackoverflow.com/questions/978708/jquery-append-fadein0jQuery append fadeInMark2009-06-11T00:03:52Z2009-12-05T01:44:11Z
<p>Similar to: <a href="http://stackoverflow.com/questions/327682/using-fadein-and-append">http://stackoverflow.com/questions/327682/using-fadein-and-append</a></p>
<p>But the solutions there aren't working for me. I'm trying:</p>
<pre><code> $('#thumbnails').append('<li><img src="/photos/t/'+data.filename+'"/></li>').hide().fadeIn(2000);
</code></pre>
<p>But then the whole list fades in at once, not as each item is added. It looks like <code>hide()</code> and <code>fadeIn()</code> are being applied to <code>$('#thumbnails')</code> not the <code><li></code>. How would I get them to apply to that instead? This doesn't work either:</p>
<pre><code>$('#thumbnails').append('<li stle="display:none"><img src="/photos/t/'+data.filename+'"/></li>').filter(':last').fadeIn(2000);
</code></pre>
<p>Other suggestions?</p>
<p><hr></p>
<p>Here's the solution I went with:</p>
<pre><code>function onComplete(event, queueID, fileObj, response, info) {
var data = eval('(' + response + ')');
if (data.success) {
$('#file-' + queueID).fadeOut(1000);
var img = new Image();
$(img).load(function () { // wait for thumbnail to finish loading before fading in
var item = $('<li id="thumb-' + data.photo_id + '"><a href="#" onclick="deletePhoto(' + data.photo_id + ')" class="delete" alt="Delete"></a><a href="#" class="edit" alt="Edit"></a><div class="thumb-corners"></div><img class="thumbnail" src="/photos/t/' + data.filename + '" width=150 height=150/></li>');
$('#thumbnails').append(item.hide().fadeIn(2000));).attr('src', '/photos/t/' + data.filename);
} else {
$('#file-' + queueID).addClass('error');
//alert('error ' + data.errno); // TODO: delete me
$('#file-' + queueID + ' .progress').html('error ' + data.errno);
}
}
}
</code></pre>
<p>This works with <a href="http://www.uploadify.com/" rel="nofollow">uploadify</a>. It uses jquery's <code>load</code> event to wait for the image to finish loading before it appears. Not sure if this is the best approach, but it worked for me.</p>
http://stackoverflow.com/questions/974232/why-does-yui-uploader-return-all-queued-files-after-file-select1Why does YUI Uploader return all queued files after file select?Mark2009-06-10T08:02:01Z2009-12-04T12:44:29Z
<p>Not sure if you guys are familiar with <a href="http://developer.yahoo.com/yui/uploader/" rel="nofollow">YUI Uploader</a>, but after you click "browse" and select a bunch of files, the callback event returns a list of <em>all</em> the files that are queued, not just the ones you just finished selecting. This poses a bit of a problem because now instead of just adding the selected files to the UI, you have to clear the list and re-add them all. You can't even compute the difference between the existing files, and all the files, because their file id's are randomly changed too, as with the order of the files in the queue. This slows down the UI because it has to re-add stuff that was already there, <em>and</em> confuses the user as all their stuff is randomly reordered. How have people dealt with this? Would it be logical to sort the files by filename to maintain some sort of consistency (even though adding to the end would be more logical), or has anyone devised some complex solution to figure out which files were actually selected in the last operation?</p>
http://stackoverflow.com/questions/1823880/relatedmanager-object-has-no-attribute1'RelatedManager' object has no attribute...Mark2009-12-01T03:49:18Z2009-12-01T04:23:19Z
<p>I have a model defined like this:</p>
<pre><code>class UserDetail(models.Model):
user = models.ForeignKey(User, db_index=True, unique=True, related_name='details')
favourites = models.ManyToManyField(Article, related_name='favourited_by', blank=True)
</code></pre>
<p>And I'm trying to do something like this:</p>
<pre><code>article = get_object_or_404(Article, pk=id)
request.user.details.favourites.add(article)
</code></pre>
<p>Why isn't it working?</p>
<p>I'm getting this error:</p>
<blockquote>
<p>'RelatedManager' object has no attribute 'favourites'</p>
</blockquote>
<p>I guess <code>details</code> isn't the right type, but why isn't it? And how can I perform a query like that?</p>
http://stackoverflow.com/questions/1816573/how-to-do-this-with-pure-mysql/1816591#18165915Answer by Mark for how to do this with pure mysql?Mark2009-11-29T20:00:21Z2009-11-29T20:00:21Z<p>Is this what you're looking for?</p>
<pre><code>INSERT INTO table (a,b,c) VALUES (1,2,3)
ON DUPLICATE KEY UPDATE c=c+1;
</code></pre>
<p><a href="http://dev.mysql.com/doc/refman/5.0/en/insert-on-duplicate.html" rel="nofollow">http://dev.mysql.com/doc/refman/5.0/en/insert-on-duplicate.html</a></p>
http://stackoverflow.com/questions/1806937/why-do-i-need-to-save-this-model-before-adding-it-to-another-one0Why do I need to save this model before adding it to another one?Mark2009-11-27T05:34:57Z2009-11-27T10:58:51Z
<p>In django, I'm trying to do something like this:</p>
<pre><code># if form is valid ...
article = form.save(commit=False)
article.author = req.user
product_name = form.cleaned_data['product_name']
try:
article.product = Component.objects.get(name=product_name)
except:
article.product = Component(name=product_name)
article.save()
# do some more form processing ...
</code></pre>
<p>But then it tells me:</p>
<blockquote>
<p>null value in column "product_id" violates not-null constraint</p>
</blockquote>
<p>But I don't understand why this is a problem. When <code>article.save()</code> is called, it should be able the create the product <em>then</em> (and generate an id).</p>
<p>I can get around this problem by using this code in the <code>except</code> block:</p>
<pre><code>product = Component(name=product_name)
product.save()
article.product = product
</code></pre>
<p>But the reason this concerns me is because if <code>article.save()</code> fails, it will already have created a new component/product. I want them to succeed or fail together.</p>
<p>Is there a nice way to get around this?</p>
http://stackoverflow.com/questions/1806278/convert-fraction-to-float0Convert fraction to float?Mark2009-11-27T00:36:10Z2009-11-27T01:33:07Z
<p>Kind of <a href="http://stackoverflow.com/questions/95727/how-to-convert-floats-to-human-readable-fractions">like this question</a>, but in reverse.</p>
<p>Given a string like <code>1</code>, <code>1/2</code>, or <code>1 2/3</code>, what's the best way to convert it into a float? I'm thinking about using regexes on a case-by-case basis, but perhaps someone knows of a better way, or a pre-existing solution. I was hoping I could just use <code>eval</code>, but I think the 3rd case prevents that.</p>
http://stackoverflow.com/questions/1781823/c-put-thread-to-sleep-on-dequeue0C# put thread to sleep on dequeue?Mark2009-11-23T08:38:20Z2009-11-23T10:12:19Z
<p>I'm trying to use <a href="http://msdn.microsoft.com/en-us/library/system.net.webclient%28VS.80%29.aspx" rel="nofollow">WebClient</a> to download a bunch of files asynchronously. From my understanding, this is possible, but you need to have one <code>WebClient</code> object for each download. So I figured I'd just throw a bunch of them in a queue at the start of my program, then pop them off one at a time and tell them to download a file. When the file is done downloading, they can get pushed back onto the queue. </p>
<p>Pushing stuff onto my queue shouldn't be too bad, I just have to do something like:</p>
<pre><code>lock(queue) {
queue.Enqueue(webClient);
}
</code></pre>
<p>Right? But what about popping them off? I want my main thread to sleep when the queue is empty (wait until another web client is ready so it can start the next download). I suppose I could use a <code>Semaphore</code> alongside the queue to keep track of how many elements are in the queue, and that would put my thread to sleep when necessary, but it doesn't seem like a very good solution. What happens if I forget to decrement/increment my Semaphore every time I push/pop something on/off my queue and they get out of sync? That would be bad. Isn't there some nice way to have <code>queue.Dequeue()</code> automatically sleep until there is an item to dequeue then proceed?</p>
<p>I'd also welcome solutions that don't involve a queue at all. I just figured a queue would be the easiest way to keep track of which WebClients are ready for use.</p>
http://stackoverflow.com/questions/1781540/httpd-conf-ignore-certain-directories0httpd.conf: ignore certain directories?Mark2009-11-23T07:12:02Z2009-11-23T07:57:29Z
<p>I have an <code>httpd.conf</code> file that looks like this:</p>
<pre><code>Alias /media/ /var/projects/potato_gun/media/
WSGIScriptAlias / /var/projects/potato_gun/django.wsgi
</code></pre>
<p>The problem is, I broke all my URLs that start with <code>/~username</code> because they get sent off to <code>django.wsgi</code> instead. Is there anyway I can get it to ignore any URL that starts with <code>/~</code>?</p>
http://stackoverflow.com/questions/1781272/c-get-width-height-of-image-on-web-without-downloading-whole-file1C# get width/height of image on web without downloading whole file?Mark2009-11-23T05:34:29Z2009-11-23T06:34:40Z
<p>I believe with JPGs, the width and height information is stored <a href="http://en.wikipedia.org/wiki/JPEG#Syntax%5Fand%5Fstructure" rel="nofollow">within the first few bytes</a>. What's the easiest way to get this information given an absolute URI?</p>
http://stackoverflow.com/questions/1777799/c-net-use-htmldocument-from-console1C#.net Use HTMLDocument from Console?Mark2009-11-22T04:21:47Z2009-11-22T07:51:01Z
<p>I'm trying to use <code>System.Windows.Forms.HTMLDocument</code> in a console application. First, is this even possible? If so, how can I load up a page from the web into it? I was trying to use <code>WebBrowser</code>, but it's telling me:</p>
<blockquote>
<p>Unhandled Exception:
System.Threading.ThreadStateException:
ActiveX control '885
6f961-340a-11d0-a96b-00c04fd705a2'
cannot be instantiated because the
current th read is not in a
single-threaded apartment.</p>
</blockquote>
<p>There seems to be a severe lack of tutorials on the <code>HTMLDocument</code> object (or Google is just turning up useless results).</p>
<p><hr></p>
<p>Just discovered <code>mshtml.HTMLDocument.createDocumentFromUrl</code>, but that throws me</p>
<blockquote>
<p>Unhandled Exception:
System.Runtime.InteropServices.COMException
(0x80010105): T he server threw an
exception. (Exception from HRESULT:
0x80010105 (RPC_E_SERVERF AULT)) at
System.RuntimeType.ForwardCallToInvokeMember(String
memberName, BindingFla gs flags,
Object target, Int32[] aWrapperTypes,
MessageData& msgData) at
mshtml.HTMLDocumentClass.createDocumentFromUrl(String
bstrUrl, String bstr Options) at
iget.Program.Main(String[] args)</p>
</blockquote>
<p>What the heck? All I want is a list of <code><a></code> tags on a page. Why is this so hard?</p>
<p><hr></p>
<p>For those that are curious, here's the solution I came up with, thanks to <a href="http://stackoverflow.com/questions/1777799/c-net-use-htmldocument-from-console/1777868#1777868">TrueWill</a>:</p>
<pre><code>using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net;
using System.IO;
using HtmlAgilityPack;
namespace iget
{
class Program
{
static void Main(string[] args)
{
WebClient wc = new WebClient();
HtmlDocument doc = new HtmlDocument();
doc.Load(wc.OpenRead("http://google.com"));
foreach(HtmlNode a in doc.DocumentNode.SelectNodes("//a[@href]"))
{
Console.WriteLine(a.Attributes["href"].Value);
}
}
}
}
</code></pre>
http://stackoverflow.com/questions/1677632/adding-more-coc-to-django0Adding more CoC to DjangoMark2009-11-05T00:33:53Z2009-11-20T01:53:09Z
<p>I come from a <a href="http://cakephp.org/" rel="nofollow">Cake</a> background, and I'm just starting to learn Django now. I'm liking it quite a bit, but I kinda wish it used convention over configuration like cake does. So,</p>
<ol>
<li><p>How can I get Cake-style URLs automatically? For example, if I went to <code>mysite.com/posts/view/5</code> it would load up <code>mysite.posts.views.view</code> and pass an argument <code>5</code> to it? I was thinking I could add something like <code>(r'^(.*)/(.*)', 'mysite.$1.$2'),</code> to urls.py, but of course, that won't work.</p></li>
<li><p>How can I automatically load up a template? Each view function should automatically load a template like <code>templates/posts/view.html</code>.</p></li>
</ol>
<p>Is this even possible, or do I have to hack the core of Django?</p>
<p><hr></p>
<p>Here's my solution, based on what <a href="http://stackoverflow.com/questions/1677632/adding-more-coc-to-django/1678072#1678072">Carl</a> suggested:</p>
<pre><code>urlpatterns = patterns('',
# url pats here
url(r'^(?P<app>\w+)/(?P<view>\w+)/(?P<args>.*)$', 'urls.dispatch')
)
def dispatch(req, app, view, args): # FIXME: ignores decorators on view func!
func = get_callable(app+'.views.'+view)
if args:
ret = func(req, *args.split('/'))
else:
ret = func(req)
if type(ret) is dict:
return render_to_response(app+'/'+view+'.html', ret)
else:
return ret
</code></pre>
<p>Seems to be working pretty well with initial tests. Solves both problems with a single function. Probably won't support GET-style arguments tho.</p>
http://stackoverflow.com/questions/1761904/angle-brackets-in-php/1761934#17619341Answer by Mark for Angle brackets in phpMark2009-11-19T09:16:19Z2009-11-19T09:16:19Z<p>Have you inspected the HTML that gets echo'd out? You probably have the wrong image path. Also, if you're going to be emailing that, you need to use an absolute path (<a href="http://yoursite.com/images/theimage.jpg" rel="nofollow">http://yoursite.com/images/theimage.jpg</a> rather than images/theimage.jpg).</p>
<p>Also, make sure that you have the headers set up right in the <a href="http://ca3.php.net/manual/en/function.mail.php" rel="nofollow">mail()</a> function so that it gets sent as HTML instead of plaintext.</p>
http://stackoverflow.com/questions/1761347/the-jquery-displays-20-099999999999998-instead-of-20-1/1761368#17613682Answer by Mark for The Jquery displays $20.099999999999998 instead of $20.1Mark2009-11-19T06:52:19Z2009-11-19T06:52:19Z<p>Just use <code>.toFixed(2)</code>. <a href="http://www.mredkj.com/javascript/numberFormat.html" rel="nofollow">(link)</a></p>
<p>The problem is that computers can't exactly represent some numbers (they're finite, and operate in binary), so stuff like this happens.</p>
http://stackoverflow.com/questions/1761305/the-modern-way-to-clear-floated-content/1761317#17613172Answer by Mark for The modern way to clear floated content?Mark2009-11-19T06:40:43Z2009-11-19T06:40:43Z<p>Just add <code>overflow:auto</code> to the containing <code>div</code>. <a href="http://www.sitepoint.com/blogs/2005/02/26/simple-clearing-of-floats/#" rel="nofollow">(explanation)</a></p>
http://stackoverflow.com/questions/1760963/shorten-python-imports0Shorten Python imports?Mark2009-11-19T04:53:34Z2009-11-19T06:06:45Z
<p>I'm working on a Django project. Let's call it <code>myproject</code>. Now my code is littered with <code>myproject.folder.file.function</code>. Is there anyway I can remove the need to prefix all my imports and such with <code>myproject.</code>? What if I want to rename my project later? It kind of annoys me that I need to prefix stuff like that when the very file I'm importing it from is inside that same project. Shouldn't be necessary.</p>
http://stackoverflow.com/questions/1760515/how-to-build-an-hierarchy/1760568#17605681Answer by Mark for How to build an hierarchy?Mark2009-11-19T02:42:51Z2009-11-19T02:42:51Z<p>That is pretty broad. But yes, trees are good for hierarchies. They pretty much <em>are</em> hierarchies. Can't really comment further unless you're more specific about what you want to do.</p>
<p>If you're parsing a document, <a href="http://www.antlr.org/" rel="nofollow">ANTLR</a> might be of interest.</p>
http://stackoverflow.com/questions/1754393/how-to-check-if-there-are-only-spaces-in-string-in-php/1754405#17544050Answer by Mark for How to check if there are only spaces in string in PHP?Mark2009-11-18T08:20:56Z2009-11-18T08:20:56Z<p>You want to know if a string contains a space?</p>
<pre><code>if(strpos($string, ' ') !== false) echo $string.' contains a space';
</code></pre>
http://stackoverflow.com/questions/1754347/implementing-firephp/1754372#17543720Answer by Mark for implementing firephpMark2009-11-18T08:12:24Z2009-11-18T08:12:24Z<p>Why would you want to print to firebug rather than mixing in your debug statements with presentation?</p>
<p>It makes it more clear, and easier to read for one.</p>
http://stackoverflow.com/questions/1718693/django-use-custom-class-for-request-user2Django: use custom class for request.user?Mark2009-11-11T22:58:48Z2009-11-16T17:37:34Z
<p>I've extended Django's default user class like this:</p>
<pre><code>class CustomUser(User):
friends = models.ManyToManyField('self', symmetrical=False)
</code></pre>
<p>But now I want to use that everywhere instead of the default <code>User</code> class. In my view methods, I have access to <code>request.user</code> but that's an instance of the <code>User</code> class. What's the easiest way to make it return a <code>CustomUser</code> instead?</p>
http://stackoverflow.com/questions/1740680/website-to-come-first-on-search-engines/1740687#17406873Answer by Mark for website to come first on search enginesMark2009-11-16T07:48:07Z2009-11-16T07:48:07Z<p>Yes, it's called SEO. It takes a lot of work, and there's no magical way to make yourself #1.</p>
<p><a href="http://www.google.ca/search?q=seo" rel="nofollow">http://www.google.ca/search?q=seo</a></p>
http://stackoverflow.com/questions/1740610/php-including-2-same-php-files-in-1-page/1740617#17406171Answer by Mark for PHP: including 2 same php files in 1 pageMark2009-11-16T07:26:02Z2009-11-16T07:26:02Z<p>My guess is that <code>$catID</code> is NOT equal to the empty string.</p>
<p>And btw, bolding doesn't work inside code blocks (if that's what you were trying to do).</p>
http://stackoverflow.com/questions/1733418/what-does-mysql-operator-do/1733419#17334194Answer by Mark for What does MySQL <=> operator do?Mark2009-11-14T05:56:25Z2009-11-14T05:56:25Z<p>It's a null-safe comparison operator. And it's awesome.</p>
<p>What that means is if you're trying to query your database for some variable, like a string, that might sometimes be <em>null</em>, you want to use it. For example, if you try searching <code>SELECT * FROM table WHERE x = NULL</code> it will return nothing, but if you do <code>SELECT * FROM table WHERE x <=> NULL</code> it'll work.</p>
http://stackoverflow.com/questions/1726073/is-it-something-bad-to-use-br/1726106#17261060Answer by Mark for Is it something bad to use <BR />?Mark2009-11-12T23:21:37Z2009-11-12T23:21:37Z<p>They're fine, if used appropriately. For instance, you shouldn't use them in lieu of <code><p></code> tags or to create spacing between elements. You're probably doing something wrong if you ever have two in a row.</p>
http://stackoverflow.com/questions/766985/htaccess-redirect-main-domain1.htaccess redirect main domain?Mark2009-04-20T05:14:35Z2009-11-12T19:00:03Z
<p>How can I redirect requests to <code>mydomain.tld/somepage.ext</code> to <code>mydomain.tld/mydomain/somepage.ext</code>? I have subdomains like <code>subdomain.mydomain.tld</code> that I don't want to be affected by this. </p>
<p>I can't seem to get it to work right. I'm trying this:</p>
<pre><code>RewriteEngine on
RewriteCond %{HTTP_HOST} mysite.com
RewriteCond %{REQUEST_URI} !^/mysite
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule (.*) /mysite/$1
</code></pre>
<p>But it isn't redirecting anything at all.</p>
<p>I also want to exclude one or two folders from this rule.</p>
http://stackoverflow.com/questions/1146788/how-to-get-abc-from-abc-def/1146794#11467947Answer by Mark for How to get abc from "abc def"?Mark2009-07-18T05:31:34Z2009-11-12T05:05:19Z<pre><code>var arr = "abc def".split(" ");
document.write(arr[0]);
</code></pre>
<p>should work</p>
http://stackoverflow.com/questions/1718341/are-tables-really-so-bad1Are tables really so bad? [closed]Mark2009-11-11T21:55:40Z2009-11-11T23:08:25Z
<blockquote>
<p><strong>Possible Duplicates:</strong><br>
<a href="http://stackoverflow.com/questions/83073/why-not-use-tables-for-layout-in-html">Why not use tables for layout in HTML?</a><br>
<a href="http://stackoverflow.com/questions/30251/tables-instead-of-divs">Tables instead of DIVs</a> </p>
</blockquote>
<p>I'm not talking about for site layout, I'm too accustomed to table-less design now to even give it a second thought, but what about for things like forms? To keep all the text-fields and labels aligned? Sure you <em>can</em> do it with CSS, but it's a big hassle and requires a lot of cross-browser testing to make sure everything stays put where it's supposed to be. And a fair bit of CSS. Meanwhile I can make a table-based form in a tenth of the time and effort, it doesn't require a style sheet, and it's cross-browser. What's so terrible about that?</p>
<p><hr></p>
<p>This question wasn't supposed to be about the virtues of semantic markup. Most of us aware of that by now. It's about whether or not sometimes we should break those rules to ease development and maintenance <em>significantly</em>.</p>
http://stackoverflow.com/questions/1705618/cant-send-many-sms-using-a-loop/1705629#17056291Answer by Mark for Can't send many SMS using a loopMark2009-11-10T04:30:32Z2009-11-10T04:30:32Z<p>I don't know anything about sending SMSs from your PC, but I have two suggestions.</p>
<ol>
<li>It looks like the connection is still open. Try closing it and reopenning it before sending a new SMS?</li>
<li>If that doesn't work, it might have some lock in place to prevent you from spamming people with SMSs. Try putting some sort of <code>wait()</code> or <code>sleep()</code> command in your loop to bypass it.</li>
</ol>
http://stackoverflow.com/questions/1854237/django-edit-form-based-on-add-form/1854453#1854453Comment by Mark on Django edit form based on add form?Mark2009-12-06T07:06:09Z2009-12-06T07:06:09ZYes, it's a <code>ModelForm</code>. I needed <code>commit=False</code> for other reasons. An article is composed up of a whole bunch of stuff (including some m2m relations). I don't <i>think</i> it wanted to work with <code>instance</code>. I'll give this a try though.http://stackoverflow.com/questions/1635995/django-wsgi-refreshing-issues/1850921#1850921Comment by Mark on Django + WSGI: Refreshing Issues?Mark2009-12-05T04:56:47Z2009-12-05T04:56:47ZNice explanation! Thanks. Is this thread pooling advantageous/faster than whatever PHP is doing then?http://stackoverflow.com/questions/974232/why-does-yui-uploader-return-all-queued-files-after-file-select/1846750#1846750Comment by Mark on Why does YUI Uploader return all queued files after file select?Mark2009-12-05T01:47:28Z2009-12-05T01:47:28ZI found an alternate solution since I posted that, but I'll take your word on it that they fixed YUI. That's good to know!http://stackoverflow.com/questions/978708/jquery-append-fadein/978731#978731Comment by Mark on jQuery append fadeInMark2009-12-05T01:38:52Z2009-12-05T01:38:52Z@Rob & Ben: Hey guys, sorry I didn't see your comments earlier. I managed to dig up the code I used, I'll add it to my answer.http://stackoverflow.com/questions/1824336/mysql-sort-by-calculated-value-of-2-rowsComment by Mark on MySQL sort by calculated value of 2 rowsMark2009-12-01T06:58:15Z2009-12-01T06:58:15ZI know this isn't helpful, but if you're in charge of the DB, you should probably restructure it so that 'price' and 'retail are 2 separate columns... especially if those are the only 2 meta-keys. I think those meta-key type things should only be used for more obscure "settings" and such that you won't need to run complicated queries on.http://stackoverflow.com/questions/1823880/relatedmanager-object-has-no-attribute/1823965#1823965Comment by Mark on 'RelatedManager' object has no attribute...Mark2009-12-01T04:22:05Z2009-12-01T04:22:05ZOh! That makes so much more sense now. I guess it was obvious to <i>me</i> that a user only has one <code>UserDetail</code>, but I suppose that's not specified anywhere. Thank you.http://stackoverflow.com/questions/1806937/why-do-i-need-to-save-this-model-before-adding-it-to-another-one/1808066#1808066Comment by Mark on Why do I need to save this model before adding it to another one?Mark2009-11-28T06:03:23Z2009-11-28T06:03:23ZWhat if I don't care about the <code>created_flag</code>? Is there some python syntaxy goodness that allows me to omit that? Maybe a comma, but no 2nd val?http://stackoverflow.com/questions/1806937/why-do-i-need-to-save-this-model-before-adding-it-to-another-one/1808090#1808090Comment by Mark on Why do I need to save this model before adding it to another one?Mark2009-11-28T05:52:45Z2009-11-28T05:52:45ZYou're right, but I was looking for a solution that didn't involve transactions at all. The documentation on transactions looks pretty clear.http://stackoverflow.com/questions/1807217/if-get-variable-is-equal-to-array/1807220#1807220Comment by Mark on If [Get Variable] is equal to [Array]Mark2009-11-27T07:44:57Z2009-11-27T07:44:57Zif capital <code>If</code> legal? Looks weird. And you should just return <code>in_array(...)</code> as that evaluates to a boolean anyway.http://stackoverflow.com/questions/1806937/why-do-i-need-to-save-this-model-before-adding-it-to-another-one/1806971#1806971Comment by Mark on Why do I need to save this model before adding it to another one?Mark2009-11-27T07:29:41Z2009-11-27T07:29:41ZI should have deleted that comment about m2m. Component is <i>not</i> a m2m field. It's just a <code>ForeignKey</code>. This doesn't really answer why the Component can't be created just before the Article is. The reason I bring this up is because that's how it normally works with forms. When you do <code>modelForm.save()</code> it will create whatever other objects are necessary in the process, and saves them all (unless you have <code>commit=False</code>). Anyway, I guess <code>transactions</code> are an OK alternative.http://stackoverflow.com/questions/1806937/why-do-i-need-to-save-this-model-before-adding-it-to-another-oneComment by Mark on Why do I need to save this model before adding it to another one?Mark2009-11-27T07:18:17Z2009-11-27T07:18:17Z@michael: Oh! Didn't know I could do that. That's at least a little bit better.http://stackoverflow.com/questions/1806278/convert-fraction-to-float/1806309#1806309Comment by Mark on Convert fraction to float?Mark2009-11-27T01:14:34Z2009-11-27T01:14:34ZSome of these other solutions work too, but this one looks the most elegant. Works great! Thanks a ton.http://stackoverflow.com/questions/1806092/how-to-truncate-text-until-more-link-is-clicked/1806122#1806122Comment by Mark on How to truncate text until "more" link is clicked?Mark2009-11-26T23:43:38Z2009-11-26T23:43:38ZThat's an interesting method.... problem is, what if the last line gets cut in half? Won't look good. http://stackoverflow.com/questions/1781272/c-get-width-height-of-image-on-web-without-downloading-whole-file/1781441#1781441Comment by Mark on C# get width/height of image on web without downloading whole file?Mark2009-11-25T09:10:12Z2009-11-25T09:10:12ZI guess you deserve the check for answering the <i>question</i> most thoroughly though. However, Matthew Lock answered the <i>problem</i> in his comment :)http://stackoverflow.com/questions/1781823/c-put-thread-to-sleep-on-dequeue/1781884#1781884Comment by Mark on C# put thread to sleep on dequeue?Mark2009-11-25T09:00:21Z2009-11-25T09:00:21ZI agree with DSO. Simpler to understand, and no loops. It's working out quite well in my program :D